<?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 Mirrored On-Premise SQL Server Database not updating in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4903661#M14100</link>
    <description>&lt;P&gt;I have a mirrored on-premise sql server.&lt;/P&gt;&lt;P&gt;The set-up &amp;amp; connection is working. I can query the mirrored database without any issue, but the database is not being updated by itself.&lt;/P&gt;&lt;P&gt;When I stop the replication &amp;amp; restart it, the new data is there, but this should happen automatically. Anyone has had this before?&lt;/P&gt;&lt;P&gt;The replication status is still running:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have already recreated the mirroring database, updated the gateway, but none seem to help.&lt;/P&gt;</description>
    <pubDate>Wed, 17 Dec 2025 08:26:18 GMT</pubDate>
    <dc:creator>JVDA98</dc:creator>
    <dc:date>2025-12-17T08:26:18Z</dc:date>
    <item>
      <title>Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4903661#M14100</link>
      <description>&lt;P&gt;I have a mirrored on-premise sql server.&lt;/P&gt;&lt;P&gt;The set-up &amp;amp; connection is working. I can query the mirrored database without any issue, but the database is not being updated by itself.&lt;/P&gt;&lt;P&gt;When I stop the replication &amp;amp; restart it, the new data is there, but this should happen automatically. Anyone has had this before?&lt;/P&gt;&lt;P&gt;The replication status is still running:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have already recreated the mirroring database, updated the gateway, but none seem to help.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 08:26:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4903661#M14100</guid>
      <dc:creator>JVDA98</dc:creator>
      <dc:date>2025-12-17T08:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4904298#M14126</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="891309" data-lia-user-login="JVDA98" class="lia-mention lia-mention-user"&gt;JVDA98&lt;/a&gt;, there could be different reasons for the mirroring to be stalled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If you used the OAuth2 authentication method for the Fabric connection, you may need to reauthenticate. Then check if the connection is still online, otherwise reauthenticate.&lt;/LI&gt;&lt;LI&gt;Your change_feed could be stalled.&amp;nbsp;Stop and start the change feed on the database.&amp;nbsp;Then stop and start the mirroring process again to reinitialize all data. This worked on my mirrored database.&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;EXEC sys.sp_change_feed_disable_db;
EXEC sys.sp_change_feed_enable_db @destination_type = 2; -- 2 = Fabric database mirroring

-- Check status
SELECT
  name,
  is_change_feed_enabled,
  is_data_lake_replication_enabled
FROM sys.databases
WHERE name = DB_NAME();​&lt;/LI-CODE&gt;&lt;P&gt;You can also check the site&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/mirroring/sql-server-troubleshoot?tabs=sql201622" target="_blank" rel="noopener"&gt;Troubleshoot Fabric Mirrored Databases From SQL Server - Microsoft Fabric | Microsoft Learn.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps. If so, please give kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and mark as Accepted Solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt; to help others. If you resolved your question, let us know what worked for you.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 21:19:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4904298#M14126</guid>
      <dc:creator>nielsvdc</dc:creator>
      <dc:date>2025-12-17T21:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4904505#M14130</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="891309" data-lia-user-login="JVDA98" class="lia-mention lia-mention-user"&gt;JVDA98&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290706" data-lia-user-login="nielsvdc" class="lia-mention lia-mention-user"&gt;nielsvdc&lt;/a&gt;&amp;nbsp;&amp;nbsp;already suggested, these are methods to solve your problem.&lt;/P&gt;&lt;P&gt;Perhaps as additional information for us, what version of SQL Server are you using and is it up to date?&lt;BR /&gt;I once had a version that was not up to date and performed replication once but then stopped replicating.&lt;BR /&gt;I updated the version and then it worked.&lt;/P&gt;&lt;P&gt;It's just one approach, but maybe it will help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another phenomenon was that Fabric capacity was stopped at night to save costs and then restarted in the morning. After that, replication did not work either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If none of that helps, I would open a support ticket if I were you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Feel&lt;STRONG&gt; free to leave kudos or accept it as a solution. This will also help other community members.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 06:12:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4904505#M14130</guid>
      <dc:creator>spaceman127</dc:creator>
      <dc:date>2025-12-18T06:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4905526#M14179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290706" data-lia-user-login="nielsvdc" class="lia-mention lia-mention-user"&gt;nielsvdc&lt;/a&gt;&amp;nbsp;, thanks for the response.&lt;/P&gt;&lt;P&gt;So couple of updates;&lt;BR /&gt;- I had to manually start the CDC on the database &amp;amp; the table, look like it didn't start by default.&lt;/P&gt;&lt;P&gt;- Removed the mirrored db completely, but still the same issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I ran&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EXEC as SQLUser
SELECT TOP 10 * 
FROM CHANGETABLE(CHANGES [dbo].[Landtanks_Volume_Status], NULL) C
order by Time  desc;
REVERT;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;This shows me the changed rows, so they are detected by the user, but they are not synced to the mirrored database.&lt;/P&gt;&lt;P&gt;It might have something to do with the Fabric Agent (who is up-and-running), I restarted it to make sure ; as for a very small table, we got this warning at creation time:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I've looked for some solutions online, but they are not really straight forward &amp;amp; would surprise me if it would be so hard to accomplish this..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 08:12:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4905526#M14179</guid>
      <dc:creator>JVDA98</dc:creator>
      <dc:date>2025-12-19T08:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4905533#M14180</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644531" data-lia-user-login="spaceman127" class="lia-mention lia-mention-user"&gt;spaceman127&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290706" data-lia-user-login="nielsvdc" class="lia-mention lia-mention-user"&gt;nielsvdc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And as an extra: I wasn't able to run the above queries, because the sp / columns did not exist.&lt;/P&gt;&lt;P&gt;The SQL Server edition is: Microsoft SQL Server 2017 (RTM) - 14.0.1000.169 (X64)&lt;/P&gt;&lt;P&gt;The gateway is on another server, but has acces to the SQL Server as we can read data.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 08:20:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4905533#M14180</guid>
      <dc:creator>JVDA98</dc:creator>
      <dc:date>2025-12-19T08:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4905584#M14181</link>
      <description>&lt;P&gt;We had the same problem with an Azure SQL Database and&amp;nbsp;&lt;SPAN&gt;SQL Server 2019 Database. You mentioned you updated the version and then it worked. But what also happened is services were restarted and then started running correctly again.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Stopping and starting a Fabric capacity while mirroring is in progress might cause issues. Pauzing the mirroring first before stopping the capacity might prevent this issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this helps. If so, please give kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and mark as Accepted Solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt; to help others.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 09:18:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4905584#M14181</guid>
      <dc:creator>nielsvdc</dc:creator>
      <dc:date>2025-12-19T09:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4906786#M14214</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="891309" data-lia-user-login="JVDA98" class="lia-mention lia-mention-user"&gt;JVDA98&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290706" data-lia-user-login="nielsvdc" class="lia-mention lia-mention-user"&gt;nielsvdc&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644531" data-lia-user-login="spaceman127" class="lia-mention lia-mention-user"&gt;spaceman127&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;for the prompt response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided and resolve the issue..?Please let us know if you need any further assistance.We are happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 07:15:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4906786#M14214</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-12-22T07:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4908306#M14265</link>
      <description>&lt;P&gt;The issue is currently with the product team for Microsoft Fabric, so no updates yet.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 15:37:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4908306#M14265</guid>
      <dc:creator>JVDA98</dc:creator>
      <dc:date>2025-12-24T15:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Mirrored On-Premise SQL Server Database not updating</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4908880#M14283</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="891309" data-lia-user-login="JVDA98" class="lia-mention lia-mention-user"&gt;JVDA98&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for the update.&lt;BR /&gt;Since this is currently under investigation by the Microsoft Fabric product team, we hope a resolution will be available shortly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please feel free to share any updates here when available, as it may help others facing a similar behavior.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2025 12:16:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Mirrored-On-Premise-SQL-Server-Database-not-updating/m-p/4908880#M14283</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2025-12-26T12:16:53Z</dc:date>
    </item>
  </channel>
</rss>

