<?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>article Qlik Replicate Task logs a warning: ]W:  MS-REPLICATION is not enabled for table in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Task-logs-a-warning-W-MS-REPLICATION-is-not/ta-p/2051544</link>
    <description>&lt;P&gt;Qlik Replicate logs the following warning:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;]W: MS-REPLICATION is not enabled for table 'dbo.YourTableName'. Therefore, UPDATE changes to it will not be captured. If you want UPDATE changes to be captured, either define a Primary Key for the table (if missing) or enable Microsoft CDC instead.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;However, the table has a Primary Key and exists in an MS-Replication Publication not created by Qlik Replicate.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;From the SQL Server Management Studio (SSMS) login to the SQL database that Qlik Replicate is using for the source endpoint.&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Check the Replication/Publication that the table(Article) uses, and verify that:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;immediate_sync&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;true&lt;/FONT&gt;'&lt;BR /&gt;and&amp;nbsp;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;allow_anonymous&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;true&lt;/FONT&gt;'&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;If not true, run the below script to update the pulications.&lt;BR /&gt;&lt;BR /&gt;Note: The &lt;FONT face="courier new,courier"&gt;immediate_sync&lt;/FONT&gt; option needs to be enabled prior to being able to update the &lt;FONT face="courier new,courier"&gt;allow_anonymous&lt;/FONT&gt; setting.&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;USE DBName

DECLARE @publication AS sysname
SET @publication = N'ProdArticlesNoSubs'

USE DBName
EXEC sp_changepublication
@publication = @publication,
@property = N'immediate_sync',
@value = true
GO

USE DBName
DECLARE @publication AS sysname
SET @publication = N'ProdArticlesNoSubs'

USE DBName
EXEC sp_changepublication
@publication = @publication,
@property = N'allow_anonymous',
@value = true
GO​&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;After making the change to the publications, stopped the tasks and then resumed them.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Cause&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;When the Publication is set for&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;immediate_sync&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;false&lt;/FONT&gt;'&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;and&amp;nbsp;&lt;FONT face="courier new,courier"&gt;allow_anonymous&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;false&lt;/FONT&gt;'. T&lt;/SPAN&gt;his causes the table that being replicated not to register to the &lt;FONT face="courier new,courier"&gt;sys.table&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="Qlik Replicate" id="qlikReplicate"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp; 2021 and later&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Mar 2023 07:13:02 GMT</pubDate>
    <dc:creator>Steve_Nguyen</dc:creator>
    <dc:date>2023-03-27T07:13:02Z</dc:date>
    <item>
      <title>Qlik Replicate Task logs a warning: ]W:  MS-REPLICATION is not enabled for table</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Task-logs-a-warning-W-MS-REPLICATION-is-not/ta-p/2051544</link>
      <description>&lt;P&gt;Qlik Replicate logs the following warning:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;]W: MS-REPLICATION is not enabled for table 'dbo.YourTableName'. Therefore, UPDATE changes to it will not be captured. If you want UPDATE changes to be captured, either define a Primary Key for the table (if missing) or enable Microsoft CDC instead.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;However, the table has a Primary Key and exists in an MS-Replication Publication not created by Qlik Replicate.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;From the SQL Server Management Studio (SSMS) login to the SQL database that Qlik Replicate is using for the source endpoint.&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Check the Replication/Publication that the table(Article) uses, and verify that:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;immediate_sync&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;true&lt;/FONT&gt;'&lt;BR /&gt;and&amp;nbsp;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;allow_anonymous&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;true&lt;/FONT&gt;'&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;If not true, run the below script to update the pulications.&lt;BR /&gt;&lt;BR /&gt;Note: The &lt;FONT face="courier new,courier"&gt;immediate_sync&lt;/FONT&gt; option needs to be enabled prior to being able to update the &lt;FONT face="courier new,courier"&gt;allow_anonymous&lt;/FONT&gt; setting.&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;USE DBName

DECLARE @publication AS sysname
SET @publication = N'ProdArticlesNoSubs'

USE DBName
EXEC sp_changepublication
@publication = @publication,
@property = N'immediate_sync',
@value = true
GO

USE DBName
DECLARE @publication AS sysname
SET @publication = N'ProdArticlesNoSubs'

USE DBName
EXEC sp_changepublication
@publication = @publication,
@property = N'allow_anonymous',
@value = true
GO​&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;After making the change to the publications, stopped the tasks and then resumed them.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Cause&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;When the Publication is set for&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;immediate_sync&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;false&lt;/FONT&gt;'&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;and&amp;nbsp;&lt;FONT face="courier new,courier"&gt;allow_anonymous&lt;/FONT&gt; is set to '&lt;FONT face="courier new,courier"&gt;false&lt;/FONT&gt;'. T&lt;/SPAN&gt;his causes the table that being replicated not to register to the &lt;FONT face="courier new,courier"&gt;sys.table&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="Qlik Replicate" id="qlikReplicate"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp; 2021 and later&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 07:13:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Task-logs-a-warning-W-MS-REPLICATION-is-not/ta-p/2051544</guid>
      <dc:creator>Steve_Nguyen</dc:creator>
      <dc:date>2023-03-27T07:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate Task logs a warning: ]W:  MS-REPLICATION is not enabled for table</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Task-logs-a-warning-W-MS-REPLICATION-is-not/tac-p/2433482#M13574</link>
      <description>&lt;P&gt;What if your publication does not exist but the task is still pumping data through...&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 21:11:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Task-logs-a-warning-W-MS-REPLICATION-is-not/tac-p/2433482#M13574</guid>
      <dc:creator>SoonerWatts</dc:creator>
      <dc:date>2024-03-21T21:11:18Z</dc:date>
    </item>
  </channel>
</rss>

