<?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 how to enable column level lineage in databricks in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165923#M55499</link>
    <description>&lt;P&gt;I have bronze layer data which is directly referred in silver. there are one or two columns from bronze layer which are used to build silver column.&lt;/P&gt;&lt;P&gt;is there any way I can have column-level lineage shown in databricks like table lineage&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/80957"&gt;@DATA&lt;/a&gt;&amp;nbsp;@lineage&lt;/P&gt;</description>
    <pubDate>Tue, 18 Aug 2026 16:38:53 GMT</pubDate>
    <dc:creator>prathamesh1982</dc:creator>
    <dc:date>2026-08-18T16:38:53Z</dc:date>
    <item>
      <title>how to enable column level lineage in databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165923#M55499</link>
      <description>&lt;P&gt;I have bronze layer data which is directly referred in silver. there are one or two columns from bronze layer which are used to build silver column.&lt;/P&gt;&lt;P&gt;is there any way I can have column-level lineage shown in databricks like table lineage&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/80957"&gt;@DATA&lt;/a&gt;&amp;nbsp;@lineage&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2026 16:38:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165923#M55499</guid>
      <dc:creator>prathamesh1982</dc:creator>
      <dc:date>2026-08-18T16:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to enable column level lineage in databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165926#M55500</link>
      <description>&lt;P&gt;Hi Prathamesh,&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Column level lineage is tracked automatically in Databricks if the tables are governed by &lt;STRONG&gt;Unity Catalog&lt;/STRONG&gt;. You do not need to configure explicit column tracking or alter the pipeline code, once your bronze-to-silver transformations run on Unity Catalog enabled compute, the lineage graph captures column-level dependencies out of the box.&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;You can open &lt;STRONG&gt;Catalog Explorer&lt;/STRONG&gt;, navigate to the Silver table, and switch to the &lt;STRONG&gt;Lineage&lt;/STRONG&gt; tab. Selecting an individual column from the table schema will filter the lineage graph to show the exact upstream Bronze column's feeding into it, the execution context and any downstream Gold layer dependencies consuming that column.&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;You can first confirm whether the setup meets the prerequisites for lineage capture&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;&lt;DIV&gt;&lt;STRONG&gt;Unity Catalog Governance:&lt;/STRONG&gt; Both your Bronze and Silver tables must exist in a Unity Catalog as lineage is not captured for tables in the legacy hive_metastore.&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV&gt;&lt;STRONG&gt;Compute Access Mode:&lt;/STRONG&gt; Your transformations must run on UC-compliant compute (eg Serverless/Pro SQL Warehouse, a cluster configured with Shared access mode or a Single User cluster with Unity Catalog enabled).&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV&gt;&lt;STRONG&gt;Ingestion:&lt;/STRONG&gt; Lineage capture is handled natively across interactive notebooks, automated workflows, SQL queries without manual setup.&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;You can also use system tables to find it via SQL&lt;/P&gt;&lt;/DIV&gt;&lt;LI-CODE lang="python"&gt;-- Find which bronze columns feed into silver columns
SELECT
    source_table_full_name,
    source_column_name,
    target_table_full_name,
    target_column_name,
    event_time
FROM system.access.column_lineage
WHERE source_table_full_name = 'workspace.default.table'
ORDER BY target_table_full_name, target_column_name, event_time DESC;

-- See what columns in silver use a specific bronze column
SELECT DISTINCT
    target_table_full_name,
    target_column_name
FROM system.access.column_lineage
WHERE source_table_full_name = 'workspace.default.table'
  AND source_column_name = 'r_id'  -- Change column name
ORDER BY target_table_full_name, target_column_name;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 18 Aug 2026 17:02:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165926#M55500</guid>
      <dc:creator>balajij8</dc:creator>
      <dc:date>2026-08-18T17:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to enable column level lineage in databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165965#M55507</link>
      <description>&lt;P dir="ltr"&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/248295"&gt;@prathamesh1982&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P dir="ltr"&gt;Good news: there's nothing to enable. &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/210897"&gt;@balajij8&lt;/a&gt;&amp;nbsp; has it right, Unity Catalog captures column-level lineage automatically. I'll add some prerequisites and gotchas to check if the lineage doesn't appear.&lt;/P&gt;
&lt;P dir="ltr"&gt;If your bronze and silver tables are registered in Unity Catalog and the bronze-to-silver transformation runs on UC-compliant compute, the lineage graph picks up column-level dependencies on its own. No pipeline changes, no configuration. Once the job or notebook runs, open Catalog Explorer, go to your silver table, click the Lineage tab, and select the target silver column. The graph filters down to show exactly which bronze columns feed it, plus anything downstream that consumes it. Since you mentioned only one or two bronze columns build the silver column, that's precisely the view you want.&lt;/P&gt;
&lt;P dir="ltr"&gt;If lineage isn't showing up, take a gander at these prerequisites:&lt;/P&gt;
&lt;UL dir="ltr"&gt;
&lt;LI&gt;Both tables must live in Unity Catalog. Lineage isn't captured for tables in the legacy &lt;CODE&gt;hive_metastore&lt;/CODE&gt;.&lt;/LI&gt;
&lt;LI&gt;Your compute must be UC-compliant: a SQL warehouse, or a cluster in standard (shared) or dedicated (single user) access mode with Unity Catalog enabled.&lt;/LI&gt;
&lt;LI&gt;The transformation must use a supported interface, such as Spark DataFrame operations or SQL. RDD-based processing, some user-defined functions, and checkpointing can prevent lineage from being captured.&lt;/LI&gt;
&lt;LI&gt;Column lineage isn't captured if you reference the source or target by path, for example &lt;CODE&gt;SELECT * FROM delta.&lt;/CODE&gt;s3://bucket/path``. Read and write through the registered table names instead.&lt;/LI&gt;
&lt;LI&gt;Columns populated from explicit literal values (an &lt;CODE&gt;INSERT&lt;/CODE&gt; with hardcoded values) won't show column lineage, since there's no source column to trace.&lt;/LI&gt;
&lt;LI&gt;If you're building these tables with Lakeflow Spark Declarative Pipelines, column lineage requires DBR 13.3 LTS or above.&lt;/LI&gt;
&lt;LI&gt;To view lineage, you need at least &lt;CODE&gt;BROWSE&lt;/CODE&gt; on the parent catalog.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P dir="ltr"&gt;You can also pull this programmatically from the lineage system tables, as @balajij8 showed. Filtering on the target table is handy for your case:&lt;/P&gt;
&lt;DIV tabindex="0" role="group" aria-label="sql code"&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;sql&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class="language-sql"&gt;&lt;SPAN&gt;SELECT&lt;/SPAN&gt;
  source_table_full_name,
  source_column_name,
  target_table_full_name,
  target_column_name,
  event_time
&lt;SPAN&gt;FROM&lt;/SPAN&gt; system.access.column_lineage
&lt;SPAN&gt;WHERE&lt;/SPAN&gt; target_table_full_name = &lt;SPAN&gt;'catalog.schema.silver_table'&lt;/SPAN&gt;
&lt;SPAN&gt;ORDER BY&lt;/SPAN&gt; event_time &lt;SPAN&gt;DESC&lt;/SPAN&gt;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P dir="ltr"&gt;Two caveats there. The system tables only contain events where lineage could be inferred, so not every expression or workload is guaranteed to show up. And they keep a rolling one-year window. For history beyond that, use Catalog Explorer or the lineage API, which retain lineage captured after September 1, 2024 indefinitely.&lt;/P&gt;
&lt;P dir="ltr"&gt;One last option: if your bronze data lives outside Unity Catalog or the transformation runs outside Databricks, you can use external lineage (currently in Public Preview) to add those relationships to the graph. Just know that external lineage isn't written to &lt;CODE&gt;system.access.column_lineage&lt;/CODE&gt;.&lt;/P&gt;
&lt;P dir="ltr"&gt;References:&lt;/P&gt;
&lt;UL dir="ltr"&gt;
&lt;LI&gt;Lineage in Unity Catalog: &lt;A href="https://docs.databricks.com/aws/en/data-governance/unity-catalog/data-lineage" target="_blank"&gt;https://docs.databricks.com/aws/en/data-governance/unity-catalog/data-lineage&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Lineage system tables reference: &lt;A href="https://docs.databricks.com/aws/en/admin/system-tables/lineage" target="_blank"&gt;https://docs.databricks.com/aws/en/admin/system-tables/lineage&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;External lineage: &lt;A href="https://docs.databricks.com/aws/en/data-governance/unity-catalog/external-lineage" target="_blank"&gt;https://docs.databricks.com/aws/en/data-governance/unity-catalog/external-lineage&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P dir="ltr"&gt;Regards,&lt;BR /&gt;Louis&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 09:11:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-enable-column-level-lineage-in-databricks/m-p/165965#M55507</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2026-08-19T09:11:05Z</dc:date>
    </item>
  </channel>
</rss>

