<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Load Data from Sharepoint Site to Delta table in Databricks in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/120315#M46134</link>
    <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/71565"&gt;@Ajay-Pandey&lt;/a&gt;&amp;nbsp;can we connect using user ID without using client id and secrets&lt;/P&gt;</description>
    <pubDate>Tue, 27 May 2025 12:17:58 GMT</pubDate>
    <dc:creator>gaurav_singh_14</dc:creator>
    <dc:date>2025-05-27T12:17:58Z</dc:date>
    <item>
      <title>Load Data from Sharepoint Site to Delta table in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/16410#M10598</link>
      <description>&lt;P&gt;Hi New to the community so sorry if my post lacks detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a connection between databricks and a sharepoint site to read excel files into a delta table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see there is a FiveTran partner connection that we can use to get sharepoint data into databricks but I wanted to ask the community if they know of any other ways of connecting sharepoint to databricks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 12:12:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/16410#M10598</guid>
      <dc:creator>Aidonis</dc:creator>
      <dc:date>2022-12-16T12:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Load Data from Sharepoint Site to Delta table in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/16411#M10599</link>
      <description>&lt;P&gt;Hi @Aidan Heffernan​&amp;nbsp;you can use Sharepoint Rest API to connect with databricks &lt;/P&gt;&lt;P&gt;Please refer below code-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; from office365.sharepoint.client_context import ClientContext
 from office365.runtime.auth.client_credential import ClientCredential
    
 sharepoint_base_url = "https://site.sharepoint.com/sites/group/"
 READ_DIR = "/sites/Group/Shared Documents/Folder/Subfolder
    
 # setup sharepoint access
 client_credentials = ClientCredential(client_id, client_secret)
 ctx = ClientContext(sharepoint_base_url).with_credentials(client_credentials)"
    
 def download_sharepoint_file(file_url):
     temp_dir = tempfile.mkdtemp()
     download_path = os.path.join(temp_dir, os.path.basename(file_url))
     with open(download_path, "wb") as local_file:
         file = ctx.web.get_file_by_server_relative_path(file_url).download(local_file).execute_query()
     return download_path
    &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 12:34:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/16411#M10599</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2022-12-16T12:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load Data from Sharepoint Site to Delta table in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/16412#M10600</link>
      <description>&lt;P&gt;Thanks for this @Ajay Pandey​&amp;nbsp; this worked a charm &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 13:16:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/16412#M10600</guid>
      <dc:creator>Aidonis</dc:creator>
      <dc:date>2022-12-16T13:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Load Data from Sharepoint Site to Delta table in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/120315#M46134</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/71565"&gt;@Ajay-Pandey&lt;/a&gt;&amp;nbsp;can we connect using user ID without using client id and secrets&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 12:17:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/120315#M46134</guid>
      <dc:creator>gaurav_singh_14</dc:creator>
      <dc:date>2025-05-27T12:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Load Data from Sharepoint Site to Delta table in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/126676#M47732</link>
      <description>&lt;P&gt;what all access is needed to perform this at service principal level ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 10:37:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/load-data-from-sharepoint-site-to-delta-table-in-databricks/m-p/126676#M47732</guid>
      <dc:creator>Anoop_2De</dc:creator>
      <dc:date>2025-07-28T10:37:04Z</dc:date>
    </item>
  </channel>
</rss>

