<?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: Setting Database Recover Model as SIMPLE - SQL Server Replication in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877551#M1543</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/144170"&gt;@SwathiPulagam&lt;/a&gt;&amp;nbsp; for providing answers.&amp;nbsp; It was very helpful.&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jan 2022 15:08:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-01-05T15:08:12Z</dc:date>
    <item>
      <title>Setting Database Recover Model as SIMPLE - SQL Server Replication</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877521#M1537</link>
      <description>&lt;P&gt;While replicating data from SQL Server, DBA has concerns over making recovery model as Full Logging due to space issue.&lt;/P&gt;
&lt;P&gt;Could you please assist me with the following questions?&lt;/P&gt;
&lt;P&gt;1. Will there be an issue if the Recovery model is left as SIMPLE? If so, what exactly are they?&lt;/P&gt;
&lt;P&gt;2. Are there any options we may pursue while keeping the Recovery Model SIMPLE?&lt;/P&gt;
&lt;P&gt;3. How much space is typically filled by SIMPLE vs Full Logging vs Bulk Logged methods?&lt;/P&gt;
&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Qlik Replicate" id="qlikReplicate"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 14:30:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877521#M1537</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-05T14:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Database Recover Model as SIMPLE - SQL Server Replication</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877534#M1540</link>
      <description>&lt;P&gt;Simple recovery does not deliver data consistency.&amp;nbsp; Applying&amp;nbsp; change data capture relies on being able to read the source Tlog for changes.&amp;nbsp; Simple recovery truncates the Tlog once a transaction is committed.&amp;nbsp; Bulk logged uses less space in the Tlog, but the primary advantage is&amp;nbsp; for maintenance tasks (i.e., index rebuilds, etc.).&amp;nbsp; Not sure how much experience your DBA has, but worrying about tlog space is kind of ridiculous.&amp;nbsp; If the business requirements require accurate replication, then it's a non-starter.&amp;nbsp; Of course, all of this assumes transactional tasks, if all you're running is snapshot tasks, then it's fine.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 14:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877534#M1540</guid>
      <dc:creator>PGN</dc:creator>
      <dc:date>2022-01-05T14:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Database Recover Model as SIMPLE - SQL Server Replication</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877540#M1541</link>
      <description>&lt;P&gt;Thanks for getting back with more details.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 14:58:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877540#M1541</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-05T14:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Database Recover Model as SIMPLE - SQL Server Replication</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877547#M1542</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/118219"&gt;@Jet&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Please find the answers below.&lt;/P&gt;&lt;P&gt;1. Will there be an issue if the Recovery model is left as SIMPLE? If so, what exactly are they?&lt;/P&gt;&lt;P&gt;A) Yes, there will be an issue if you use the SIMPLE recovery model and there is a high possibility that you will miss the data while replicating.&lt;/P&gt;&lt;P&gt;2. Are there any options we may pursue while keeping the Recovery Model SIMPLE?&lt;/P&gt;&lt;P&gt;A) You can try using MS-CDC but it is highly recommended to use a FULL or Bulk-logged recovery model.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/replicate/May2021/Content/Replicate/Main/SQL%20Server/sqlserver_dbSettings.htm" target="_blank"&gt;https://help.qlik.com/en-US/replicate/May2021/Content/Replicate/Main/SQL%20Server/sqlserver_dbSettings.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;3. How much space is typically filled by SIMPLE vs Full Logging vs Bulk Logged methods?&lt;/P&gt;&lt;P&gt;A) It depends on no. of transactions generated vs committed. You can opt for the Full recovery model and create frequent log backups so it will always maintain a small ldf file. In replicate read transactions from log backups.&lt;/P&gt;&lt;P&gt;Let me know if you have any questions.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Swathi&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 15:05:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877547#M1542</guid>
      <dc:creator>SwathiPulagam</dc:creator>
      <dc:date>2022-01-05T15:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Database Recover Model as SIMPLE - SQL Server Replication</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877551#M1543</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/144170"&gt;@SwathiPulagam&lt;/a&gt;&amp;nbsp; for providing answers.&amp;nbsp; It was very helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 15:08:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Setting-Database-Recover-Model-as-SIMPLE-SQL-Server-Replication/m-p/1877551#M1543</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-05T15:08:12Z</dc:date>
    </item>
  </channel>
</rss>

