<?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 Column Tags Not Accessible in Genie (Azure Databricks) in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/column-tags-not-accessible-in-genie-azure-databricks/m-p/152246#M53792</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;We’ve applied column-level tags to a table in Azure Databricks and attached the table in our Genie workspace. However, when querying via Genie, the column tag information is not being returned correctly (missing/incomplete results), despite trying multiple prompt variations. We’ve&amp;nbsp;verified that tags are correctly applied at the source.&lt;/P&gt;&lt;P&gt;In the above screenshot, when we query for column tags, Genie is instead returning the column count correctly, but not the tag information.Is there any limitation, configuration, or permission required for Genie to access column-level tags?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sreya_sahithi_2-1774591739004.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25376iB223EC2D09A93EA9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sreya_sahithi_2-1774591739004.png" alt="sreya_sahithi_2-1774591739004.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Mar 2026 06:26:55 GMT</pubDate>
    <dc:creator>sreya_sahithi</dc:creator>
    <dc:date>2026-03-27T06:26:55Z</dc:date>
    <item>
      <title>Column Tags Not Accessible in Genie (Azure Databricks)</title>
      <link>https://community.databricks.com/t5/data-engineering/column-tags-not-accessible-in-genie-azure-databricks/m-p/152246#M53792</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;We’ve applied column-level tags to a table in Azure Databricks and attached the table in our Genie workspace. However, when querying via Genie, the column tag information is not being returned correctly (missing/incomplete results), despite trying multiple prompt variations. We’ve&amp;nbsp;verified that tags are correctly applied at the source.&lt;/P&gt;&lt;P&gt;In the above screenshot, when we query for column tags, Genie is instead returning the column count correctly, but not the tag information.Is there any limitation, configuration, or permission required for Genie to access column-level tags?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sreya_sahithi_2-1774591739004.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25376iB223EC2D09A93EA9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sreya_sahithi_2-1774591739004.png" alt="sreya_sahithi_2-1774591739004.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2026 06:26:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/column-tags-not-accessible-in-genie-azure-databricks/m-p/152246#M53792</guid>
      <dc:creator>sreya_sahithi</dc:creator>
      <dc:date>2026-03-27T06:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Column Tags Not Accessible in Genie (Azure Databricks)</title>
      <link>https://community.databricks.com/t5/data-engineering/column-tags-not-accessible-in-genie-azure-databricks/m-p/152266#M53798</link>
      <description>&lt;P class=""&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/223465"&gt;@sreya_sahithi&lt;/a&gt;,&lt;/P&gt;&lt;P class=""&gt;This is an important distinction about how Genie works: &lt;STRONG&gt;Genie queries the actual data rows in the tables attached to its space — it does not natively query Unity Catalog metadata such as column-level tags&lt;/STRONG&gt;. Column tags live in INFORMATION_SCHEMA.COLUMN_TAGS (a system metadata view), not in the table's data, so Genie won't surface them through natural language prompts against the table itself.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Why column count works but tags don't&lt;/STRONG&gt;: Genie can infer the number of columns from the table schema it is given, but it has no direct path to tag metadata unless that metadata is exposed as queryable data.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Solutions:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Option 1 – Query INFORMATION_SCHEMA directly in a SQL notebook/warehouse&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;SELECT&lt;/SPAN&gt; column_name&lt;SPAN class=""&gt;,&lt;/SPAN&gt; tag_name&lt;SPAN class=""&gt;,&lt;/SPAN&gt; tag_value&lt;BR /&gt;&lt;SPAN class=""&gt;FROM&lt;/SPAN&gt; &lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt;your_catalog&lt;SPAN class=""&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;information_schema&lt;SPAN class=""&gt;.&lt;/SPAN&gt;column_tags&lt;BR /&gt;&lt;SPAN class=""&gt;WHERE&lt;/SPAN&gt; table_schema &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;'&amp;lt;your_schema&amp;gt;'&lt;/SPAN&gt;  &lt;SPAN class=""&gt;AND&lt;/SPAN&gt; table_name &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;'&amp;lt;your_table&amp;gt;'&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Option 2 – Create a view that exposes tag metadata as data, then add it to your Genie space&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;CREATE&lt;/SPAN&gt; &lt;SPAN class=""&gt;OR&lt;/SPAN&gt; &lt;SPAN class=""&gt;REPLACE&lt;/SPAN&gt; &lt;SPAN class=""&gt;VIEW&lt;/SPAN&gt; &lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt;catalog&lt;SPAN class=""&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;schema&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;v_column_tags&lt;BR /&gt;&lt;SPAN class=""&gt;AS&lt;/SPAN&gt; &lt;SPAN class=""&gt;SELECT&lt;/SPAN&gt; table_catalog&lt;SPAN class=""&gt;,&lt;/SPAN&gt; table_schema&lt;SPAN class=""&gt;,&lt;/SPAN&gt; table_name&lt;SPAN class=""&gt;,&lt;/SPAN&gt; column_name&lt;SPAN class=""&gt;,&lt;/SPAN&gt; tag_name&lt;SPAN class=""&gt;,&lt;/SPAN&gt; tag_value&lt;BR /&gt;&lt;SPAN class=""&gt;FROM&lt;/SPAN&gt; &lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt;catalog&lt;SPAN class=""&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;information_schema&lt;SPAN class=""&gt;.&lt;/SPAN&gt;column_tags&lt;SPAN class=""&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;Then attach v_column_tags as an additional table in your Genie space. After that, you can ask Genie: &lt;EM&gt;"Show me all column tags for table X"&lt;/EM&gt; and it will query the view correctly.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Option 3 – Use the Catalog Explorer UI&lt;/STRONG&gt; For a quick inspection without SQL, navigate to &lt;STRONG&gt;Catalog → your table → Columns tab&lt;/STRONG&gt; in the Databricks UI. Column tags are displayed there without any query needed.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Note on tag inheritance&lt;/STRONG&gt;: Tags applied at the catalog or schema level do &lt;EM&gt;not&lt;/EM&gt; automatically propagate to column-level tags, so always verify tags were applied directly at the column level using ALTER TABLE ... ALTER COLUMN ... SET TAGS.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;References:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;A class="" href="https://docs.databricks.com/aws/en/database-objects/tags" target="_blank" rel="noopener"&gt;Apply tags to Unity Catalog securable objects&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A class="" href="https://docs.databricks.com/en/sql/language-manual/information-schema/column_tags.html" target="_blank" rel="noopener"&gt;COLUMN_TAGS – INFORMATION_SCHEMA&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 27 Mar 2026 09:12:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/column-tags-not-accessible-in-genie-azure-databricks/m-p/152266#M53798</guid>
      <dc:creator>Ale_Armillotta</dc:creator>
      <dc:date>2026-03-27T09:12:12Z</dc:date>
    </item>
  </channel>
</rss>

