<?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: Unable to access external table created by DLT in Get Started Discussions</title>
    <link>https://community.databricks.com/t5/get-started-discussions/unable-to-access-external-table-created-by-dlt/m-p/115572#M9363</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/3304"&gt;@Tommy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your question.&lt;/P&gt;
&lt;P&gt;I would encourage you to verify once using a Pro SQL Warehouse temporarily instead of a Serverless SQL Warehouse given the compute differences between the two - Pro compute resides in your data plane, Serverless compute is Databricks-managed. If it works as expected using a Pro Warehouse, there is a good indication that there is an issue with the network path to the Databricks-managed Serverless compute. If that is concluded, you can use docs such as this to guide you further on the Serverless setup:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/admin/sql/serverless" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/azure/databricks/admin/sql/serverless&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Additionally, Workspace-level SQL Warehouse configurations can be managed by a Workspace Admin via:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Settings / Workspace admin / Compute / and then clicking "Manage" next to "SQL warehouses and serverless compute".&lt;/LI&gt;
&lt;LI&gt;This would be where you'd managed configs such as the `spark.conf.set("fs.azure.account...")`, as applicable, for all Warehouses in the workspace&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;</description>
    <pubDate>Tue, 15 Apr 2025 17:04:19 GMT</pubDate>
    <dc:creator>brockb</dc:creator>
    <dc:date>2025-04-15T17:04:19Z</dc:date>
    <item>
      <title>Unable to access external table created by DLT</title>
      <link>https://community.databricks.com/t5/get-started-discussions/unable-to-access-external-table-created-by-dlt/m-p/115328#M9362</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I originally set the Storage location in my DLT as&amp;nbsp;&lt;/SPAN&gt;abfss://{container}@{storageaccount}.dfs.core.windows.net/...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 874px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/15953i81A38A68A020A450/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But when running the DLT I got the following error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 850px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/15954i6250B756961D1130/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So I decided to leave the above Storage location blank and define the path parameter in&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/97035"&gt;@Dlt&lt;/a&gt;.table&amp;nbsp;instead:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 776px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/15955i914A94950464A241/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In doing so DLT runs fine and I can even see the location of the files in the path above, which I can also read from a notebook:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/15956i0152B633693F2067/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But when I go over to SQL Editor and use the Serverless Starter Warehouse cluster, I can't access the tables:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/15957i2A516D99CB8E83C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I know it's probably something to do with not running&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;spark.conf.set("fs.azure.account..."), but how do I get round that? It'd also be nice to not have to run those lines in all my notebook, guessing there's a way to add them to the cluster configuration or something?&lt;/P&gt;&lt;P&gt;Before suggesting to upgrade to Unity Catalog, that is indeed my plan but I want to be able to at least prove this works for Hive Metastore first.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Apr 2025 15:06:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/unable-to-access-external-table-created-by-dlt/m-p/115328#M9362</guid>
      <dc:creator>tommyhmt</dc:creator>
      <dc:date>2025-04-12T15:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to access external table created by DLT</title>
      <link>https://community.databricks.com/t5/get-started-discussions/unable-to-access-external-table-created-by-dlt/m-p/115572#M9363</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/3304"&gt;@Tommy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your question.&lt;/P&gt;
&lt;P&gt;I would encourage you to verify once using a Pro SQL Warehouse temporarily instead of a Serverless SQL Warehouse given the compute differences between the two - Pro compute resides in your data plane, Serverless compute is Databricks-managed. If it works as expected using a Pro Warehouse, there is a good indication that there is an issue with the network path to the Databricks-managed Serverless compute. If that is concluded, you can use docs such as this to guide you further on the Serverless setup:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/admin/sql/serverless" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/azure/databricks/admin/sql/serverless&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Additionally, Workspace-level SQL Warehouse configurations can be managed by a Workspace Admin via:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Settings / Workspace admin / Compute / and then clicking "Manage" next to "SQL warehouses and serverless compute".&lt;/LI&gt;
&lt;LI&gt;This would be where you'd managed configs such as the `spark.conf.set("fs.azure.account...")`, as applicable, for all Warehouses in the workspace&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 17:04:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/unable-to-access-external-table-created-by-dlt/m-p/115572#M9363</guid>
      <dc:creator>brockb</dc:creator>
      <dc:date>2025-04-15T17:04:19Z</dc:date>
    </item>
  </channel>
</rss>

