<?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 Move managed DLT table from one schema to another schema in Databricks in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/39458#M26988</link>
    <description>&lt;P&gt;I have a DLT table in schema A which is being loaded by DLT pipeline.&lt;/P&gt;&lt;P&gt;I want to move the table from schema A to schema B, and repoint my existing DLT pipeline to table in schema B. also I need to avoid full reload in DLT pipeline on table in Schema B.&lt;/P&gt;&lt;P&gt;Anybody had similar situation?&lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2023 16:28:09 GMT</pubDate>
    <dc:creator>a_t_h_i</dc:creator>
    <dc:date>2023-08-09T16:28:09Z</dc:date>
    <item>
      <title>Move managed DLT table from one schema to another schema in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/39458#M26988</link>
      <description>&lt;P&gt;I have a DLT table in schema A which is being loaded by DLT pipeline.&lt;/P&gt;&lt;P&gt;I want to move the table from schema A to schema B, and repoint my existing DLT pipeline to table in schema B. also I need to avoid full reload in DLT pipeline on table in Schema B.&lt;/P&gt;&lt;P&gt;Anybody had similar situation?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 16:28:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/39458#M26988</guid>
      <dc:creator>a_t_h_i</dc:creator>
      <dc:date>2023-08-09T16:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Move managed DLT table from one schema to another schema in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/39570#M27018</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/86182"&gt;@a_t_h_i&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This feature is being actively worked upon by our Engineers. The plan is to change the schema name in the DLT pipeline settings and DLT will move the managed DLT table to the other schema.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 05:05:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/39570#M27018</guid>
      <dc:creator>Tharun-Kumar</dc:creator>
      <dc:date>2023-08-11T05:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Move managed DLT table from one schema to another schema in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/95130#M39043</link>
      <description>&lt;P&gt;Any updates on this since we are having this requirement&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 08:12:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/95130#M39043</guid>
      <dc:creator>ThuanVanNguyen</dc:creator>
      <dc:date>2024-10-21T08:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Move managed DLT table from one schema to another schema in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/128954#M48386</link>
      <description>&lt;P&gt;Any progress on this ?&amp;nbsp;&lt;BR /&gt;Did you find a solution ?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 09:35:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/128954#M48386</guid>
      <dc:creator>ChrisLawford_n1</dc:creator>
      <dc:date>2025-08-20T09:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Move managed DLT table from one schema to another schema in Databricks</title>
      <link>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/128978#M48398</link>
      <description>&lt;P&gt;Have you tried the below&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Pause or Stop the DLT Pipeline&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Prevent new writes while moving the table.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;2.Move the Table in Metastore&amp;nbsp;&lt;/P&gt;&lt;P&gt;DLT uses Delta tables under the hood, so you can move the table in the metastore without copying data:&lt;/P&gt;&lt;P&gt;ALTER TABLE schemaA.tableX&lt;BR /&gt;SET LOCATION 'abfss://container@storage/path/...tableX';&lt;BR /&gt;ALTER TABLE schemaA.tableX&lt;BR /&gt;RENAME TO schemaB.tableX;&lt;/P&gt;&lt;P&gt;SET LOCATION points to the existing Delta storage location for the new schema.&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;Update the DLT Pipeline&lt;/P&gt;&lt;P&gt;Edit the DLT pipeline code (or the pipeline notebook) to point to the new fully qualified table name&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/97035"&gt;@Dlt&lt;/a&gt;.table(&lt;BR /&gt;name="schemaB.tableX", # updated schema&lt;BR /&gt;comment="Moved from schemaA"&lt;BR /&gt;)&lt;BR /&gt;def tableX():&lt;BR /&gt;return dlt.read("schemaB.tableX")&lt;/P&gt;&lt;P&gt;4.&amp;nbsp;Resume the DLT Pipeline&lt;/P&gt;&lt;P&gt;Start the pipeline&lt;/P&gt;&lt;P&gt;5. Verify&lt;/P&gt;&lt;P&gt;SELECT COUNT(*) FROM schemaB.tableX;&lt;/P&gt;&lt;P&gt;Let me know here if the above is effective&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 12:38:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/move-managed-dlt-table-from-one-schema-to-another-schema-in/m-p/128978#M48398</guid>
      <dc:creator>ManojkMohan</dc:creator>
      <dc:date>2025-08-20T12:38:51Z</dc:date>
    </item>
  </channel>
</rss>

