<?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: Fabric DW from SQL server in Data Warehouse</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4727139#M3209</link>
    <description>&lt;P&gt;Migrating to Fabric DW from SQL Server is a significant step, and understanding the key differences, especially in terms of T-SQL and architecture, is critical. Many people face questions about compatibility and best practices for migration.&lt;/P&gt;&lt;P&gt;For anyone wanting to brush up on SQL Server Data Warehouse fundamentals or looking for practical tips on building one, &lt;A href="https://blog.skyvia.com/sql-server-data-warehouse-the-easy-and-practical-guide/" target="_self"&gt;this&lt;/A&gt; article will be very useful&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jun 2025 12:02:34 GMT</pubDate>
    <dc:creator>KonradZawel</dc:creator>
    <dc:date>2025-06-10T12:02:34Z</dc:date>
    <item>
      <title>Fabric DW from SQL server</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4334872#M2264</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to some general advice direction please.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a Data Warehouse running on SQL server.&amp;nbsp; I have been tasked with ‘moving’ our current solution to the cloud and I assumed Fabric Data Warehousing was the way forward.&amp;nbsp; We have dimensions and facts currently using SSIS for ETL into Staging and Data Warehouse facts (Change tracked tables).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would not say we want to copy the existing solution like-for-like into the cloud we did an Azure SQL server test many years ago but at the time was cost prohibitive.&amp;nbsp; We do allot of reporting in SSRS and are looking to leverage Power BI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A few people have mentioned Fabric SQL databases but like I said I don’t necessarily want to recreate what we have, and I assumed Fabric Data Warehousing was the way forward.&amp;nbsp; I need to understand the options for Identity and surrogate keys (previous post).&amp;nbsp; As anyone else moved from onsite SQL server to Fabric Data Warehouse solution – are there any key points I need to be aware of.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the ramble feeling little overwhelmed.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 10:31:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4334872#M2264</guid>
      <dc:creator>Si_7777</dc:creator>
      <dc:date>2024-12-18T10:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric DW from SQL server</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4335139#M2265</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="687546" data-lia-user-login="Si_7777" class="lia-mention lia-mention-user"&gt;Si_7777&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;First of all, I can understand the overwhelming nature of moving to Fabric. There's a lot of options and tradeoffs to them, meaning there's a lot to sift through. You're asking good questions, which is a great place to start. I'll see if I can help you sort through it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for moving a data warehouse workload to Fabric, the first (and preferred) option you'd want to consider is a Fabric warehouse. It's design is intended for SQL analytical workloads, focusing on processing large amounts of data with a distributed architecture. For dimensional models, I think it's a great option and supports a lot of the tools needed for it, such as tables, views, functions, and stored procedures.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even being a great option, there are some things to be aware of that will be different. Here are some of the things I've run into:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;As you noted, identity columns are not currently supported in Fabric warehouses, so you will have to create your own solution for making surrogate keys. Microsoft wrote an article with their recommended workaround for this case here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/generate-unique-identifiers" target="_blank"&gt;Generate unique identifiers in a warehouse table - Microsoft Fabric | Microsoft Learn&lt;/A&gt;. It takes a little more coding to get the same effect, but once you get it up and running, it's not that bad to work with.&lt;/LI&gt;&lt;LI&gt;If you like using default constraints on columns, Fabric warehouses do not currently support these. You'll have to enforce your defaults within your code or pipelines. You can read more about them here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/table-constraints" target="_blank"&gt;Primary, foreign, and unique keys - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;ALTER TABLE statements have certain limitations, you can read about them here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/sql/t-sql/statements/alter-table-transact-sql?view=fabric&amp;amp;preserve-view=true" target="_blank"&gt;ALTER TABLE (Transact-SQL) - SQL Server | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Beyond those above, there are additional limitations for Fabric Warehouse tables here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/tables#limitations" target="_blank"&gt;Tables in data warehousing - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Here's another article that talks about certain T-SQL things you can/cannot do:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/tsql-surface-area" target="_blank"&gt;T-SQL surface area - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This may be a sizeable list of things to work around, but depending on the structure of your existing processes, there are a number of workarounds to get you where you want to go.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding your note on the Fabric SQL databases and whether to migrate to that. In your situation, I would look at Fabric warehouse first before Fabric SQL databases. While a migration to Fabric SQL would be more straightforward because it's an Azure SQL DB engine, the intention of this environment is for OLTP workloads, which most times is not the best fit for a data warehousing scenario.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully this helps you determine your path forward. Once you've got your answer, be sure to accept it so others in the community can learn from what's shared.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best of luck on planning a possible migration!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 13:32:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4335139#M2265</guid>
      <dc:creator>DataBard</dc:creator>
      <dc:date>2024-12-18T13:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric DW from SQL server</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4335152#M2267</link>
      <description>&lt;P&gt;Thank you so much for taking the time to answer me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It does help for me to decide Fabric DW is the correct way forward despite the steep learning curve.&amp;nbsp; Thank you again. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 13:40:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4335152#M2267</guid>
      <dc:creator>Si_7777</dc:creator>
      <dc:date>2024-12-18T13:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric DW from SQL server</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4335238#M2269</link>
      <description>&lt;P&gt;Glad it helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is your answer, please 'Accept' the answer so others know that the question has been answered!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 14:21:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4335238#M2269</guid>
      <dc:creator>DataBard</dc:creator>
      <dc:date>2024-12-18T14:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric DW from SQL server</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4613543#M2728</link>
      <description>&lt;P&gt;In SQL, there are several tasks we typically perform, such as analyzing execution plans, creating or updating indexes, identifying and terminating blocking queries, and monitoring resource usage. However, I'm wondering how these tasks are handled within Microsoft Fabric.&lt;/P&gt;&lt;P&gt;Specifically:&lt;/P&gt;&lt;P&gt;How do you check the execution plan and optimize queries without using indexes?&lt;BR /&gt;How can you identify which queries are blocking others or consuming excessive resources?&lt;BR /&gt;How do you manage session resources, such as killing sessions that use too much?&lt;BR /&gt;Is there a way to monitor schema or table capacity usage in Fabric?&lt;BR /&gt;Is there an alternative to materialized views for pre-computing and storing query results for performance optimization in Fabric?&lt;BR /&gt;How can I replicate the functionality of synonyms in Fabric, or how should I handle object references across different databases or schemas?&lt;BR /&gt;What are the recommended alternatives to temporary tables for session-based or short-lived data storage in Fabric?&lt;BR /&gt;How can I monitor schema or table-level capacity usage in Fabric to track resource consumption?&lt;BR /&gt;Actually looking for Daiyly activities of DBA&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 20:18:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4613543#M2728</guid>
      <dc:creator>SQL_Data_101</dc:creator>
      <dc:date>2025-03-17T20:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric DW from SQL server</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4727139#M3209</link>
      <description>&lt;P&gt;Migrating to Fabric DW from SQL Server is a significant step, and understanding the key differences, especially in terms of T-SQL and architecture, is critical. Many people face questions about compatibility and best practices for migration.&lt;/P&gt;&lt;P&gt;For anyone wanting to brush up on SQL Server Data Warehouse fundamentals or looking for practical tips on building one, &lt;A href="https://blog.skyvia.com/sql-server-data-warehouse-the-easy-and-practical-guide/" target="_self"&gt;this&lt;/A&gt; article will be very useful&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 12:02:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-DW-from-SQL-server/m-p/4727139#M3209</guid>
      <dc:creator>KonradZawel</dc:creator>
      <dc:date>2025-06-10T12:02:34Z</dc:date>
    </item>
  </channel>
</rss>

