<?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: How do I know whether a task is full load or CDC using the metadata JSON? in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160728#M8838</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/121014"&gt;@Dana_Baldwin&lt;/a&gt;&amp;nbsp;has some good info there. Read it, and the userguide which will explain how to use '-d' for a non-default data directory. Personnaly I prefer :&amp;nbsp;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;&lt;STRONG&gt; repctl -d &amp;lt;mydata&amp;gt;&amp;nbsp; help option=1 &amp;gt; commandlist.txt&lt;/STRONG&gt;&lt;/FONT&gt;.&amp;nbsp; The I scan the list for example with grep or on windows findstr 'status' to see what is there and finally&amp;nbsp;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;repctl -d &amp;lt;mydata&amp;gt; gettaskstatus ?&lt;/FONT&gt;&amp;nbsp;&lt;/STRONG&gt; to see details for the command you most likely want. Actually, you are likely to end up with&amp;nbsp;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;repctl -d &amp;lt;mydata&amp;gt; connect; getserverstatus &lt;/FONT&gt;&lt;/STRONG&gt;The &lt;STRONG&gt;connect&lt;/STRONG&gt; command will get you 'live' data and server status returns a handy JSON array of task/state/task_type.&lt;/P&gt;
&lt;P&gt;But just to see if a task is running, you may also want to look Operating System commands like for Linux PS -EF | grep [r]epctl&lt;/P&gt;
&lt;P&gt;For windows that could be cmd tasklist but that does not give command line info. I like Powershell better. Check out the following 'one-liner':&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$tmp = $env:COMPUTERNAME + ' ' + (Get-Date -Format "yyyy-MM-dd HH:mm:ss")
Get-WmiObject Win32_Process -filter "name like 'rep%.exe'" | Format-Table -AutoSize @{Label="Pid"; Expression={$_.ProcessId}},
 @{ label=$tmp; expression={ (($_.CommandLine -replace("^.*?reptasksrv","")) + ' '*30 ).substring(1,30) }},
# @{ label=$tmp; expression={ (($_.CommandLine).substring(1,60) )}},
 @{ Label="Elapsed(s)"; Expression={[math]::floor((New-TimeSpan $_.ConvertToDateTime($_.CreationDate)).TotalSeconds)}},
 @{ Label="CPU(s)"; Expression={[math]::floor(($_.UserModeTime + $_.KernelModeTime) / 10000000)}},
 @{ Label="Reads"; Expression={$_.ReadOperationCount}},
 @{ Label="Writes"; Expression={$_.WriteOperationCount}},
 @{ Label="VM(MB)"; Expression={[math]::floor($_.VM/1048576)}},
 @{ Label="WS(MB)"; Expression={[math]::floor($_.WS/1048576)}}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 20:05:24 GMT</pubDate>
    <dc:creator>Heinvandenheuvel</dc:creator>
    <dc:date>2024-01-11T20:05:24Z</dc:date>
    <item>
      <title>How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160244#M8827</link>
      <description>&lt;DIV&gt;Hi there,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I have the task metadata JSON generated but I cannot find a field in task_settings to indicate whether a task:&lt;/DIV&gt;
&lt;DIV&gt;1) Full Load or CDC&lt;/DIV&gt;
&lt;DIV&gt;2) Is enabled or not(Should I look at scheduler instead?)&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Is there any documentation to explain the JSON output? most of the fields are self-explanatory but not always&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Appreciate for any help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Below is what are in task_settings using an existing CDC task:&lt;/DIV&gt;
&lt;DIV&gt;"task_settings": {&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "source_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "target_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "queue_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "message_shape": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "key_shape": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "ftm_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "sorter_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "local_transactions_storage": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "common_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "change_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "handle_ddl": false,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "header_columns_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "audit_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "apply_changes_enabled": false,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "dr_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "statistics_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "bidi_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "task_uuid": "123-abc",&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "status_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "suspended_tables_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "history_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "exception_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "recovery_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "data_batching_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "data_batching_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "log_stream_settings_depricated": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "ddl_history_table_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "customized_charset_settings": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "validation": {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "sub_char": 0&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Jan 2024 20:49:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160244#M8827</guid>
      <dc:creator>S_Lo_DE</dc:creator>
      <dc:date>2024-01-10T20:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160258#M8828</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/261287"&gt;@S_Lo_DE&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm afraid we don't have any documentation on the task JSON file. I can say that most of the default settings are not explicitly written to the JSON file when it's exported. Full load &amp;amp; apply changes are enabled by default, so they are not written to the JSON.&lt;/P&gt;
&lt;P&gt;If you disable both of them and then enable store changes (at least one of these 3 must be enabled), you'll see this under the common_settings section:&lt;/P&gt;
&lt;P&gt;"full_load_enabled": false,&lt;/P&gt;
&lt;P&gt;"apply_changes_enabled": false,&lt;/P&gt;
&lt;P&gt;"save_changes_enabled": true,&lt;/P&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;
&lt;P&gt;Dana&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 22:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160258#M8828</guid>
      <dc:creator>Dana_Baldwin</dc:creator>
      <dc:date>2024-01-10T22:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160273#M8829</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/261287"&gt;@S_Lo_DE&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have configured your task on default settings, that is Full load + CDC then the JASON will not contain the details you are looking for, if you have made some changes to it, that is Full load only or full load + store change or CDC only and like wise, you will have those details mentioned under&amp;nbsp;&lt;SPAN&gt;the "common_settings section".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Yadunandan&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 01:06:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160273#M8829</guid>
      <dc:creator>Yadunandan</dc:creator>
      <dc:date>2024-01-11T01:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160719#M8835</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/121014"&gt;@Dana_Baldwin&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/154259"&gt;@Yadunandan&lt;/a&gt;&amp;nbsp;, that is really helpful and seem there is the only way i can work out the task type &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can I please ask if there is a way I can know whether a CDC task is currently running or not in the JSON file?&amp;nbsp; For a full load task, it's easy to just look at scheduler.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 18:42:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160719#M8835</guid>
      <dc:creator>S_Lo_DE</dc:creator>
      <dc:date>2024-01-11T18:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160720#M8836</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/261287"&gt;@S_Lo_DE&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The current task status is not written to the task JSON file as it is only the task definition. There are ways to tell if a task is running in CDC mode without viewing the user interface for each task.&lt;/P&gt;
&lt;P&gt;Our Enterprise Manager product can show the status of multiple tasks on one screen. It also has API call functionality that can return a task's status. I'm not sure if you use this product but here's a link to the documentation:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/enterprise-manager/November2023/Content/EnterpriseManager/Main/Introduction/Home.htm" target="_blank"&gt;Start | Qlik Enterprise Manager Help&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There are repctl commands that can be used (precursors to the API calls) but they are not documented.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use this command to get the general instructions on how to use repctl:&lt;/P&gt;
&lt;P&gt;C:\Program Files\Attunity\Replicate\bin&amp;gt;repctl help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get the list of commands:&lt;/P&gt;
&lt;P&gt;C:\Program Files\Attunity\Replicate\bin&amp;gt;repctl&amp;nbsp; help ?&lt;/P&gt;
&lt;P&gt;command help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request arguments:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; option:optional enum, valid values:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01 - HELP_COMMAND_LIST&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 02 - HELP_OBJECT_LIST&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 03 - HELP_ALL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; command:optional string&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; error:optional int32&lt;/P&gt;
&lt;P&gt;[help command] Succeeded&lt;/P&gt;
&lt;P&gt;I would suggest using option #3 and redirecting to a file to get the complete list,&lt;/P&gt;
&lt;P&gt;Like this:&lt;/P&gt;
&lt;P&gt;C:\Program Files\Attunity\Replicate\bin&amp;gt;repctl help option=03 &amp;gt; C:\Temp\export.txt&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;Dana&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 18:59:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160720#M8836</guid>
      <dc:creator>Dana_Baldwin</dc:creator>
      <dc:date>2024-01-11T18:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160728#M8838</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/121014"&gt;@Dana_Baldwin&lt;/a&gt;&amp;nbsp;has some good info there. Read it, and the userguide which will explain how to use '-d' for a non-default data directory. Personnaly I prefer :&amp;nbsp;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;&lt;STRONG&gt; repctl -d &amp;lt;mydata&amp;gt;&amp;nbsp; help option=1 &amp;gt; commandlist.txt&lt;/STRONG&gt;&lt;/FONT&gt;.&amp;nbsp; The I scan the list for example with grep or on windows findstr 'status' to see what is there and finally&amp;nbsp;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;repctl -d &amp;lt;mydata&amp;gt; gettaskstatus ?&lt;/FONT&gt;&amp;nbsp;&lt;/STRONG&gt; to see details for the command you most likely want. Actually, you are likely to end up with&amp;nbsp;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#FF00FF"&gt;repctl -d &amp;lt;mydata&amp;gt; connect; getserverstatus &lt;/FONT&gt;&lt;/STRONG&gt;The &lt;STRONG&gt;connect&lt;/STRONG&gt; command will get you 'live' data and server status returns a handy JSON array of task/state/task_type.&lt;/P&gt;
&lt;P&gt;But just to see if a task is running, you may also want to look Operating System commands like for Linux PS -EF | grep [r]epctl&lt;/P&gt;
&lt;P&gt;For windows that could be cmd tasklist but that does not give command line info. I like Powershell better. Check out the following 'one-liner':&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$tmp = $env:COMPUTERNAME + ' ' + (Get-Date -Format "yyyy-MM-dd HH:mm:ss")
Get-WmiObject Win32_Process -filter "name like 'rep%.exe'" | Format-Table -AutoSize @{Label="Pid"; Expression={$_.ProcessId}},
 @{ label=$tmp; expression={ (($_.CommandLine -replace("^.*?reptasksrv","")) + ' '*30 ).substring(1,30) }},
# @{ label=$tmp; expression={ (($_.CommandLine).substring(1,60) )}},
 @{ Label="Elapsed(s)"; Expression={[math]::floor((New-TimeSpan $_.ConvertToDateTime($_.CreationDate)).TotalSeconds)}},
 @{ Label="CPU(s)"; Expression={[math]::floor(($_.UserModeTime + $_.KernelModeTime) / 10000000)}},
 @{ Label="Reads"; Expression={$_.ReadOperationCount}},
 @{ Label="Writes"; Expression={$_.WriteOperationCount}},
 @{ Label="VM(MB)"; Expression={[math]::floor($_.VM/1048576)}},
 @{ Label="WS(MB)"; Expression={[math]::floor($_.WS/1048576)}}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 20:05:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2160728#M8838</guid>
      <dc:creator>Heinvandenheuvel</dc:creator>
      <dc:date>2024-01-11T20:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2162995#M8930</link>
      <description>&lt;P&gt;Thanks heaps&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/121014"&gt;@Dana_Baldwin&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/154259"&gt;@Yadunandan&lt;/a&gt; and &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110970"&gt;@Heinvandenheuvel&lt;/a&gt;&amp;nbsp;, it helps a lot &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I will see if I can use the enterprise manager api to get live data. My situation/environment is a bit tricky and I'm afraid that I(non-admin) won't be able to run/set up a job to run those commands to server&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 18:22:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2162995#M8930</guid>
      <dc:creator>S_Lo_DE</dc:creator>
      <dc:date>2024-01-18T18:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know whether a task is full load or CDC using the metadata JSON?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2163088#M8941</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hello team,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If our response has been helpful, please consider clicking "Accept as Solution". This will assist other users in easily finding the answer.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Sushil Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 01:27:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-do-I-know-whether-a-task-is-full-load-or-CDC-using-the/m-p/2163088#M8941</guid>
      <dc:creator>SushilKumar</dc:creator>
      <dc:date>2024-01-19T01:27:49Z</dc:date>
    </item>
  </channel>
</rss>

