<?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: Copy Job Interface in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5322070#M17408</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;In my experience, this is one of the reasons why I usually prefer a more flexible ingestion approach based on Data Pipelines (Copy Activity) or Notebooks rather than Copy Jobs.&lt;/P&gt;&lt;P&gt;With a metadata-driven design, you can store the configuration for your source tables in a metadata file (for example JSON) and version it in GitHub or Azure DevOps. The ingestion pipeline itself stays generic (typically Lookup → ForEach → Copy Activity) and reads the metadata at runtime.&lt;/P&gt;&lt;P&gt;Once the framework is in place, onboarding a new table is almost as simple as adding it to a Copy Job, but you gain much more flexibility:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Enable/disable tables without losing configuration&lt;/LI&gt;&lt;LI&gt;Version and track changes through Git&lt;/LI&gt;&lt;LI&gt;Apply source-specific settings when needed&lt;/LI&gt;&lt;LI&gt;Scale to hundreds of tables more easily&lt;/LI&gt;&lt;LI&gt;Add custom logic, validation, and error handling&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Personally, I prefer storing the metadata in a version-controlled JSON file instead of a metadata table, as it keeps the entire ingestion configuration under source control.&lt;/P&gt;&lt;P&gt;For development and debugging scenarios like yours, this approach makes it very easy to temporarily exclude tables without the risk of accidentally deleting their configuration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 27 Jul 2026 06:44:09 GMT</pubDate>
    <dc:creator>matteo_palmieri</dc:creator>
    <dc:date>2026-07-27T06:44:09Z</dc:date>
    <item>
      <title>Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5318577#M17394</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm currently using a &lt;STRONG&gt;Copy Job in Microsoft Fabric&lt;/STRONG&gt; to ingest data from an &lt;STRONG&gt;on-premises Oracle database into OneLake&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I have more than 100 tables to load, and for each one I'm using a &lt;STRONG&gt;custom SQL query&lt;/STRONG&gt;. Since I'm still developing and debugging this ingestion process, some tables have already been successfully loaded, and I don't want to re-run them every time I test the remaining ones.&lt;/P&gt;&lt;P&gt;I assumed that &lt;STRONG&gt;unchecking&lt;/STRONG&gt; the queries I didn't want to execute would simply &lt;STRONG&gt;skip them during the run&lt;/STRONG&gt;. However, it appears that when I uncheck a query, Fabric actually &lt;STRONG&gt;removes/excludes that query from the Copy Job configuration&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;This behavior doesn't seem intuitive to me, especially because there is already an explicit &lt;STRONG&gt;"Exclude"&lt;/STRONG&gt; option available.&lt;/P&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is this the expected behavior of Copy Jobs in Microsoft Fabric?&lt;/LI&gt;&lt;LI&gt;Does unchecking a query permanently remove it from the job configuration?&lt;/LI&gt;&lt;LI&gt;Is there any way to recover previously created custom SQL queries that were removed in this way?&lt;/LI&gt;&lt;LI&gt;What is the recommended approach for temporarily disabling certain tables during development and debugging without losing their configurations?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any guidance or best practices would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rafalencar1997_0-1784906091905.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1356749i8B3330193F7F7A1F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rafalencar1997_0-1784906091905.png" alt="rafalencar1997_0-1784906091905.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2026 15:17:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5318577#M17394</guid>
      <dc:creator>rafalencar1997</dc:creator>
      <dc:date>2026-07-24T15:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5318617#M17395</link>
      <description>&lt;P&gt;The checkbox in the table/query selection pane is not a runtime toggle, it is a configuration selector. When you uncheck a query, Fabric treats it as “not part of the job” and removes it from the activity definition rather than just skipping execution. The “Exclude” option, on the other hand, is evaluated at runtime but still assumes the query exists in the config.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once a custom SQL query is removed this way, dont think there is a native recovery unless you have versioning in place (for ex, git integration or a saved JSON/export of the pipeline). Without that, you will need to recreate those queries manually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For dev, the practical approach is to avoid using the checkbox as a control mechanism. Instead, split workloads into smaller logical copy activities (for ex, per domain or batch of tables), parameterise the table/query list and drive execution via parameters, or use filters/flags in a metadata table to control which tables run. Another simple workaround is to duplicate the pipeline for testing and prune it there, keeping the original intact. In short, treat copy Job configuration as static and control execution dynamically rather than editing the selection each time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2026 15:39:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5318617#M17395</guid>
      <dc:creator>Vinodh247</dc:creator>
      <dc:date>2026-07-24T15:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5318745#M17396</link>
      <description>&lt;P class=""&gt;Hi,&lt;/P&gt;&lt;P class=""&gt;Yeah, this is expected behavior right now, unchecking a table doesn't pause it, it removes it from the saved config once you save. Confusing given "Exclude" already exists and sounds like it should do exactly this.&lt;/P&gt;&lt;P class=""&gt;Quick answers:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Expected behavior, not a bug.&lt;/LI&gt;&lt;LI&gt;Yes, unchecking + saving removes that table's config, not just hides it.&lt;/LI&gt;&lt;LI&gt;No recovery option currently, you'd have to rebuild the query manually.&lt;/LI&gt;&lt;LI&gt;For now, best workaround is keeping your custom SQL saved somewhere outside Fabric (Notepad, Excel, whatever) as you write it, so nothing's truly lost. Splitting into smaller Copy Jobs by batch also helps so you're not touching configs you've already validated. Worth testing if Exclude actually behaves differently before relying on unchecking.&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;Might be worth posting this as a feature idea too, a real pause/skip toggle without losing config seems like a fair ask&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jul 2026 17:29:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5318745#M17396</guid>
      <dc:creator>Prince0011</dc:creator>
      <dc:date>2026-07-25T17:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5322070#M17408</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;In my experience, this is one of the reasons why I usually prefer a more flexible ingestion approach based on Data Pipelines (Copy Activity) or Notebooks rather than Copy Jobs.&lt;/P&gt;&lt;P&gt;With a metadata-driven design, you can store the configuration for your source tables in a metadata file (for example JSON) and version it in GitHub or Azure DevOps. The ingestion pipeline itself stays generic (typically Lookup → ForEach → Copy Activity) and reads the metadata at runtime.&lt;/P&gt;&lt;P&gt;Once the framework is in place, onboarding a new table is almost as simple as adding it to a Copy Job, but you gain much more flexibility:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Enable/disable tables without losing configuration&lt;/LI&gt;&lt;LI&gt;Version and track changes through Git&lt;/LI&gt;&lt;LI&gt;Apply source-specific settings when needed&lt;/LI&gt;&lt;LI&gt;Scale to hundreds of tables more easily&lt;/LI&gt;&lt;LI&gt;Add custom logic, validation, and error handling&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Personally, I prefer storing the metadata in a version-controlled JSON file instead of a metadata table, as it keeps the entire ingestion configuration under source control.&lt;/P&gt;&lt;P&gt;For development and debugging scenarios like yours, this approach makes it very easy to temporarily exclude tables without the risk of accidentally deleting their configuration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 27 Jul 2026 06:44:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5322070#M17408</guid>
      <dc:creator>matteo_palmieri</dc:creator>
      <dc:date>2026-07-27T06:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5322715#M17411</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1323149"&gt;@rafalencar1997&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/640329"&gt;@Vinodh247&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1603209"&gt;@Prince0011&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1724085"&gt;@matteo_palmieri&lt;/a&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;for the prompt response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user's for the issue worked? &amp;nbsp;or let us know if you need any further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2026 11:47:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5322715#M17411</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-07-27T11:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5323092#M17415</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1323149"&gt;@rafalencar1997&lt;/a&gt;&amp;nbsp;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-end="2789" data-start="2459"&gt;Based on the current behavior, it appears that the table selection checkboxes are treated as part of the Copy Job definition rather than as a runtime execution option. As a result, deselecting a table and saving the job removes that table (and its custom SQL) from the configuration instead of simply skipping it during execution.&lt;/P&gt;
&lt;P class="" data-end="2789" data-start="2459"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-end="3170" data-start="2794"&gt;For ingestion scenarios involving 100+ tables, I'd recommend considering a metadata-driven Data Pipeline (Lookup → ForEach → Copy Activity) instead of a single Copy Job. This allows you to enable or disable tables through metadata, version the configuration in Git, and add logging, retries, validation, and environment-specific behavior without modifying the pipeline itself.&lt;/P&gt;
&lt;P data-end="3170" data-start="2794"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-end="3432" data-start="3175"&gt;If you're using Git integration with your Fabric workspace, it's also worth checking whether a previous version of the artifact can be restored. Otherwise, there doesn't appear to be a native recovery mechanism once a custom SQL definition has been removed.&lt;/P&gt;
&lt;P data-end="3432" data-start="3175"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-end="3628" data-start="3437"&gt;I also think this would make a good product enhancement—a "Skip for this run" or "Disable" option that preserves the configuration during development and testing would be much more intuitive.&lt;/P&gt;
&lt;P data-end="3628" data-start="3437"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-end="3628" data-start="3437"&gt;If this post helps, then please appreciate giving a &lt;STRONG&gt;Kudos or accepting as a &lt;STRONG&gt;Solution to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2026 14:12:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5323092#M17415</guid>
      <dc:creator>ssrithar</dc:creator>
      <dc:date>2026-07-27T14:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job Interface</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5330686#M17456</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1323149" target="_blank"&gt;@rafalencar1997&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user's for the issue worked? &amp;nbsp;or let us know if you need any further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2026 14:35:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Interface/m-p/5330686#M17456</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-07-30T14:35:02Z</dc:date>
    </item>
  </channel>
</rss>

