<?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: LogFile Query Interpretation of the parameters %s, :1, :2 in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135694#M8009</link>
    <description>&lt;P&gt;Thank you so much for the feedback&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Nov 2023 07:02:19 GMT</pubDate>
    <dc:creator>john_wang</dc:creator>
    <dc:date>2023-11-08T07:02:19Z</dc:date>
    <item>
      <title>LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134676#M7961</link>
      <description>&lt;PRE&gt;Good evening &lt;BR /&gt;&lt;BR /&gt;Good evening&lt;BR /&gt;&lt;BR /&gt;Please enlighten me as to where to find the values for %s, :1, and :2 in the Qlik Replicate Log or ? for the below query.&lt;BR /&gt;Because we received the following Oracle error ORA-00942: table or view does not exist&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;select object_id, data_object_id &lt;BR /&gt;from %s &lt;BR /&gt;where &lt;BR /&gt;owner=:1 and &lt;BR /&gt;object_name = :2 and &lt;BR /&gt;data_object_id is not null and &lt;BR /&gt;object_type in ('INDEX PARTITION', 'INDEX SUBPARTITION')' for 'BAIM.CU_PHASE_JB_HIST_PK'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Based on reverse engineering &amp;amp;&amp;amp;&lt;BR /&gt;queried against the dba_tab_columns table for entities that have object_id, data_object_id, owner, and object_type columns &lt;BR /&gt;I assume :1 =&amp;gt; BAIM&lt;BR /&gt;:2 =&amp;gt; CU_PHASE_JB_HIST_PK&lt;BR /&gt;%s =&amp;gt; dba_objects, all_objects, etc&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you and take care,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Theresa&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 00:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134676#M7961</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-05T00:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134677#M7962</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to Qlik Community!&lt;/P&gt;
&lt;P&gt;I did not find a similar query in my task log files however you are right - Qlik Replicate utilizes these queries to verify if the tables/views exist. The system view name should be&amp;nbsp;&lt;FONT face="courier new,courier"&gt;ALL_OBJECTS&lt;/FONT&gt; (%s). The schema name and table/view name (parameters :1 &amp;amp; :2) can be found in the string:&lt;/P&gt;
&lt;PRE&gt;for 'BAIM.CU_PHASE_JB_HIST_PK'&lt;/PRE&gt;
&lt;P&gt;Besides that, the task log file context (eg the previous line(s)) may indicate the object identifier as well if you enable the components&amp;nbsp; (eg source_capture/source_unload/target_apply/target_load) logging to Trace or Verbose.&lt;/P&gt;
&lt;P&gt;In general Oracle error &lt;FONT face="courier new,courier"&gt;ORA-00942: table or view does not exist&lt;/FONT&gt;. meaning the account have not privilege to access the table/view, or it does not exist indeed. you may verify that by executing the query with the same account:&lt;/P&gt;
&lt;PRE&gt;select * from BAIM.CU_PHASE_JB_HIST_PK where 1=0;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Hope this helps.&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 01:38:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134677#M7962</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-11-05T01:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134678#M7963</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the quick reply; meanwhile CU_PHASE_JB_HIST_PK is a primary key but the following queries were executed prior to logging this case&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) CU_PHASE_JB_HIST_PK is a partitioned index&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;SQL&amp;gt; select index_name, partitioned from all_indexes where index_name = 'CU_PHASE_JB_HIST_PK';&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;INDEX_NAME&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;--------------------------------------------------------------------------------&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;PAR&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;---&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;CU_PHASE_JB_HIST_PK&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;YES&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;2) There is NO object_id value based on the Qlik Replicate log&lt;/P&gt;
&lt;PRE&gt;Changes to partitioned IOT 'BAIM.CU_PHASE_JB_HIST' cannot be captured as its object ids cannot be retrieved &lt;/PRE&gt;
&lt;P style="font-weight: 400;"&gt;3) There is NO data_object_id value also&amp;nbsp; RETURNED for this index&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;SQL&amp;gt; select object_name, data_object_id from all_objects where owner='BAIM' and object_name in ('CU_PHASE_JB_HIST_PK');&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;OBJECT_NAME&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;--------------------------------------------------------------------------------&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;DATA_OBJECT_ID&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;--------------&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;CU_PHASE_JB_HIST_PK&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;You have confirmed for me that %s is ALL_OBJECTS; therefore I will need to investigate on my end when it comes to the OBJECT_ID for this query.&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;Thank you and take care,&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;Theresa&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 03:51:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134678#M7963</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-05T03:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134679#M7964</link>
      <description>&lt;P&gt;Good evening&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Clarification:&amp;nbsp; I need to run the query again to make sure that there is a object_id for the&amp;nbsp;&lt;SPAN&gt;CU_PHASE_JB_HIST_PK primary key.&amp;nbsp; &amp;nbsp;data_object_id signifies the foreign key value&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I also need to educate myself how Qlik Replicate handles IOT partitioned tables and indices.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Once again you did answered my question that %s = ALL_OBJECTS/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Theresa&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 04:12:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134679#M7964</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-05T04:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134680#M7965</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you so much for your feedback. BTW, looks like there is about 12 hours' time difference between us, reply delay is expected sometimes.&lt;/P&gt;
&lt;P&gt;From the information you provided, seems the table type is IOT:&lt;/P&gt;
&lt;PRE&gt;Changes to partitioned IOT 'BAIM.CU_PHASE_JB_HIST' cannot be captured as its object ids&lt;BR /&gt; cannot be retrieved &lt;/PRE&gt;
&lt;P&gt;please take note there are some &lt;A title="limitations " href="https://help.qlik.com/en-US/replicate/May2023/Content/Global_Common/Content/SharedReplicateHDD/Oracle/OracleDB_source_limitations.htm#:~:text=Index%2Dorganized%20tables,are%20not%20supported." target="_blank" rel="noopener"&gt;limitations of the index relative tables&lt;/A&gt;:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&amp;nbsp;Function-based indexes are not supported&lt;/LI&gt;
&lt;LI&gt;Index-organized tables with an overflow segment are not supported in Change Processing (CDC) tasks&lt;/LI&gt;
&lt;LI&gt;Changes to Index-organized tables with key compression are not supported&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Please confirm if the table is in above limitation scope.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 04:38:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134680#M7965</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-11-05T04:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134686#M7966</link>
      <description>&lt;P&gt;Good morning Mr. Wang,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THANK YOU!! for the reminder with "Limitations and considerations when using an Oracle source" when it comes to an Index-Organized tables with an overflow segment.&lt;/P&gt;
&lt;P&gt;Do you have a suggestion how to bypass it?&lt;/P&gt;
&lt;P&gt;Unless we have to manually export from SOURCE and then import into TARGET.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take care,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Theresa Nguyen&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 08:18:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134686#M7966</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-05T08:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134690#M7967</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your verification.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The limitation applies to CDC stage. We may use a "Full Load ONLY" task (both of the "Apply Changes" &amp;amp; "Store Changes" are turned off in Task Change Processing setting) to replicate these types of tables. And also, we can run the Full Load ONLY task in a period loop eg running it once per day etc. I'm attaching a task setting sample:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="john_wang_0-1699173378344.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/119353i935DF08E1E6D7FE3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="john_wang_0-1699173378344.png" alt="john_wang_0-1699173378344.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Feel free to let me know if you need any additional assistance.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 08:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2134690#M7967</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-11-05T08:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135522#M7994</link>
      <description>&lt;P&gt;Good morning Mr. Wang,&lt;/P&gt;
&lt;P&gt;We performed another "Full Load ONLY"; yet still encounter the same error.&amp;nbsp; &amp;nbsp;Please advise sir; meanwhile I am doing my research also.&amp;nbsp; THANK YOU!&lt;/P&gt;
&lt;P&gt;The exact messages coming out of the log file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;00004892: 2023-11-03T15:43:07 [METADATA_MANAGE ]E:  ORA-00942: table or view does not exist  [1020416]  (oracle_endpoint_table.c:2707)&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;00004892: 2023-11-03T15:43:07 [METADATA_MANAGE ]E:  Failed to execute statement 'select object_id, data_object_id from %s where owner=:1 and object_name = :2 and data_object_id is not null and object_type in ('INDEX PARTITION', 'INDEX SUBPARTITION')' for 'BAIM.CU_PHASE_JB_HIST_PK' [1020416]  (oracle_endpoint_table.c:2708)&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;00004892: 2023-11-03T15:43:07 [METADATA_MANAGE ]W:  Changes to partitioned IOT 'BAIM.CU_PHASE_JB_HIST' cannot be captured as its object ids cannot be retrieved  (oracle_endpoint_table.c:2817)&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;00004892: 2023-11-03T15:43:07 [METADATA_MANAGE ]E:  Failed to get the capture list from the endpoint [1020416]  (metadatamanager.c:4389)&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;00004892: 2023-11-03T15:43:07 [TABLES_MANAGER  ]E:  Cannot get captured tables list [1020416]  (tasktablesmanager.c:1040)&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;00004892: 2023-11-03T15:43:07 [TASK_MANAGER    ]E:  Build tables list failed  &lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Nov 2023 17:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135522#M7994</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-07T17:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135630#M8002</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It turned out that the interested that I inquired at the very beginning of this thread was querying against the 'dba_objects' view; instead the 'all_objects' one.&amp;nbsp; This showed up on our Oracle trace file&amp;nbsp;&lt;/P&gt;
&lt;P&gt;select object_id, data_object_id from dba_objects where owner=:1 and object_name = :2 and data_object_id is not null and object_type in ('INDEX PARTITION', 'INDEX SUBPARTITION')&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We will perform a Full Load Replicate again; once the DBA team execute the GRANT SELECT ON dba_objects TO &amp;lt;username&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you, Mr. Wang&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 02:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135630#M8002</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-08T02:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135694#M8009</link>
      <description>&lt;P&gt;Thank you so much for the feedback&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 07:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2135694#M8009</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-11-08T07:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2138620#M8146</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;Please enlighten me when does Qlik Replicate queries the dba_objects vs all_objects view to obtain the&amp;nbsp;&lt;SPAN&gt;object_id and data_object_id for an entity.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Note: We are using Oracle 19c&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Theresa Nguyen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 03:49:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2138620#M8146</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-17T03:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2138841#M8156</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Looks to me there is confusion in the &lt;A title="_OBJECTS" href="http://SELECT%20on ALL_OBJECTS SELECT on DBA_OBJECTS - Required if the Oracle version is earlier than 11.2.0.3." target="_blank" rel="noopener"&gt;User Guide&lt;/A&gt;&amp;nbsp;General permissions section:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;SELECT on ALL_OBJECTS&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;SELECT on DBA_OBJECTS&lt;/FONT&gt; - Required if the Oracle version is earlier than 11.2.0.3.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Obviously it's inaccurate. Please open the support ticket, the support team will help to get confirmation for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 13:44:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2138841#M8156</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-11-17T13:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2140091#M8205</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would be nice if you could please clarify for me that&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Changes to Index-organized tables with key compression are not supported in both Full-Load as well as CDC&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you and take care,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Theresa Nguyen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 05:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2140091#M8205</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-22T05:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2140097#M8206</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume "Changes to index-organized tables with key compression are not supported in CDC" ? while it's with Full-Load?&lt;/P&gt;
&lt;P&gt;Otherwise please provide instruction(s) on how to skip on replicating certain index.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you and take care,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Theresa&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 06:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2140097#M8206</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-11-22T06:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2140122#M8208</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I just realized I missed your comments, my apologies.&lt;/P&gt;
&lt;P&gt;&lt;A title="Index-organized tables" href="https://help.qlik.com/en-US/replicate/May2023/Content/Global_Common/Content/SharedReplicateHDD/Oracle/OracleDB_source_limitations.htm#:~:text=Changes%20to%20Index%2Dorganized%20tables%20with%20key%20compression%20are%20not%20supported" target="_blank" rel="noopener"&gt;Changes to Index-organized tables with key compression are not supported&lt;/A&gt; is a limitation applies to CDC stage only. The Full Load works fine. So far for these types of tables, utilizing a Full Load ONLY task is a work around.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;John.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 07:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2140122#M8208</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-11-22T07:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143128#M8323</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;I have two questions&lt;/P&gt;
&lt;P&gt;1) If Qlik Replicate supports ADVANCED COMPRESSION on a partition/sub-partition table with Oracle for the SOURCE ?&lt;/P&gt;
&lt;P&gt;2) What does this mean because I have partition/sub-partition table in SOURCE&lt;/P&gt;
&lt;P&gt;Replicate changes resulting from partition/sub-partition operations, you need to reload the tables in question. When adding a new empty partition, operations on the newly added partition will be replicated to the target as normal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 05:06:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143128#M8323</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-12-01T05:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143130#M8324</link>
      <description>&lt;P&gt;Good evening,&lt;/P&gt;
&lt;P&gt;I believe I found the answer to my second question&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Data changes resulting from partition/sub-partition operations (ADD, DROP, EXCHANGE and TRUNCATE) will not be&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="mc-variable Replicate.replicate variable"&gt;replicate&lt;/SPAN&gt;&lt;SPAN&gt;d and may cause the following errors:&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;For ADD operations, updates and deletes on the added data may return a "0 rows affected" warning.&lt;/LI&gt;
&lt;LI&gt;For DROP and TRUNCATE operations, new inserts may result in "duplicates" errors.&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;For EXCHANGE operations, both a "0 rows affected" warning and "duplicates" errors may be encountered.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 05:30:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143130#M8324</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-12-01T05:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143170#M8326</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/235816"&gt;@lqthinguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you so much for the feedback! it's valuable information!&lt;/P&gt;
&lt;P&gt;Regarding the &lt;A title="Supported compression methods" href="https://help.qlik.com/en-US/replicate/November2023/Content/Global_Common/Content/SharedReplicateHDD/Oracle/Supported_Compression_Methods.htm#ar_oracleds_385117211_1693156:~:text=as%20a%20source-,Supported%20compression%20methods,Yes%20(Any%20compression%20method%20supported%20by%20Oracle%20LogMiner),-Did%20this%20page" target="_blank" rel="noopener"&gt;Supported compression methods&lt;/A&gt;, in Qlik Replicate User Guide the supported Compression Methods are:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="john_wang_0-1701416986965.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/120866i537C8CE435AFBCEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="john_wang_0-1701416986965.png" alt="john_wang_0-1701416986965.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;From what I read in Oracle related docs,&amp;nbsp;&lt;A title="Advanced Row Compression is synonymous&amp;nbsp;with OLTP Compression" href="http://Advanced%20Row Compression  Oracle Database 11g Release 1 introduced OLTP Table Compression, now called Advanced Row Compression with Oracle Database 12c and above. " target="_blank" rel="noopener"&gt;Advanced Row Compression is &lt;SPAN&gt;synonymous&amp;nbsp;&lt;/SPAN&gt;with OLTP Compression&lt;/A&gt;&amp;nbsp;from Oracle 12C and above. Not sure if you are facing any issue around the Advanced Compressed Table(s)?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 08:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143170#M8326</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-12-01T08:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143544#M8352</link>
      <description>&lt;P&gt;Good evening&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am facing issue around the Advanced Compressed Tables; on the other hand they are also partitioned tables too.&amp;nbsp; &amp;nbsp;Does that mean with partitioned/sub-partitioned tables you have to perform FULL LOAD because CDC doesn't work ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Theresa Nguyen&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 02:16:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143544#M8352</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-12-02T02:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: LogFile Query Interpretation of the parameters %s, :1, :2</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143545#M8353</link>
      <description>&lt;P&gt;Good evening Mr. Wang,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a clip of the log file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Going to prepare the statement 'select NVL(compression,' '), compress_for, NVL((select NVL(encrypted, ' ') from dba_tablespaces where dba_tablespaces.tablespace_name = all_tab_partitions.tablespace_name), ' ') from all_tab_partitions where table_owner=:1 and table_name = :2 (oracle_endpoint_table.c:2589)&lt;BR /&gt;00009592: 2023-11-30T21:41:26:186137 [METADATA_MANAGE ]T: Going to prepare statement 'select object_id, data_object_id from all_objects where owner=:1 and object_name = :2 and data_object_id is not null and object_type in ('TABLE PARTITION', 'TABLE SUBPARTITION')' (oracle_endpoint_table.c:2694)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:514221 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110131219' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:514221 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110151135' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:616326 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110181110' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:616326 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110190935' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:716366 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110201010' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:716498 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110201930' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:801909 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110210922' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:801909 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110212042' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:898920 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202110220640' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:898920 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210120912' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:994368 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210121925' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:47:994368 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210130843' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:91067 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210131810' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:91067 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210141148' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:188160 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210141915' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:188160 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202210171128' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:285327 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202310101127' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:285327 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202310101839' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:430548 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202310111209' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00009592: 2023-11-30T21:41:48:430548 [METADATA_MANAGE ]I: Table 'COST.AUTH_ST_202310111929' is compressed for ADVANCED (oracle_endpoint_lists.c:1065)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Stream stream_0. Source locks buffer 0 (stream.c:2071)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Source buffer in use 0 (stream.c:3266)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Target buffer in use 0 (stream.c:3267)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Data buffer 0. Ready 0, Records 0, used 0 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Data buffer 1. Ready 0, Records 0, used 0 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Enqueue notify record 'TASK_COMMAND' to stream stream_0 (stream.c:1531)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Stream stream_0. Source flushes buffer 0. Records in buffer 1 (stream.c:1705)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Source buffer in use 0 (stream.c:3266)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:109886 [STREAM ]V: Target buffer in use 0 (stream.c:3267)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Data buffer 0. Ready 1, Records 1, used 176 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Data buffer 1. Ready 0, Records 0, used 0 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Stream stream_0. Source locks buffer 0 (stream.c:2071)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Source buffer in use 0 (stream.c:3266)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Target buffer in use 0 (stream.c:3267)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Data buffer 0. Ready 0, Records 1, used 176 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Data buffer 1. Ready 0, Records 0, used 0 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Enqueue notify record 'TASK_COMMAND' to stream stream_0 (stream.c:1531)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Stream stream_0. Source flushes buffer 0. Records in buffer 2 (stream.c:1705)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Source buffer in use 0 (stream.c:3266)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Target buffer in use 0 (stream.c:3267)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Data buffer 0. Ready 1, Records 2, used 344 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [STREAM ]V: Data buffer 1. Ready 0, Records 0, used 0 (stream.c:3277)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [INFRASTRUCTURE ]T: requested to load class &amp;lt;AR_ENDPOINT_SERVERS_MGR&amp;gt; from &amp;lt;arepcustom&amp;gt; (at_loader.c:388)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [INFRASTRUCTURE ]V: load_dll: -&amp;gt; (at_loader.c:146)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [INFRASTRUCTURE ]T: intend to load dll &amp;lt;arepcustom&amp;gt; (at_loader.c:153)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [INFRASTRUCTURE ]V: load_dll: -&amp;gt; (at_loader.c:110)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [INFRASTRUCTURE ]T: full dll path is &amp;lt;C:\Program Files\Attunity\Replicate\bin\arepcustom.dll&amp;gt; (at_loader.c:255)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [IO ]V: combine_path: rootPath=&amp;lt;null&amp;gt;, addPath=&amp;lt;null&amp;gt; (at_dir.c:1014)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [IO ]V: combine_path: result before canonize=&amp;lt;C:\Program Files\Attunity\Replicate\bin\arepcustom.dll&amp;gt; (at_dir.c:1025)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:110887 [IO ]V: combine_path: result=&amp;lt;C:\Program Files\Attunity\Replicate\bin\arepcustom.dll&amp;gt; (at_dir.c:1031)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: checking if dll init method exists &amp;lt;at_ldr_on_load&amp;gt; (at_loader.c:75)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: no init method for the loaded dll (at_loader.c:96)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]V: load_dll: &amp;lt;- (at_loader.c:209)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: going to call loaded method for class &amp;lt;AR_ENDPOINT_SERVERS_MGR&amp;gt; (at_loader.c:348)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: load method for class &amp;lt;AR_ENDPOINT_SERVERS_MGR&amp;gt; was called successfully (at_loader.c:352)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: class type is &amp;lt;AR_ENDPOINT_SERVERS_MGR class&amp;gt; (at_loader.c:418)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: class version is 1.1 (at_loader.c:280)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: load info class version is 1.1 (at_loader.c:281)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: calling class init method (at_loader.c:309)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: requested to load class &amp;lt;ar_custom_endpoint_client&amp;gt; from &amp;lt;arepcustom&amp;gt; (at_loader.c:388)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]V: load_dll: -&amp;gt; (at_loader.c:146)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: intend to load dll &amp;lt;arepcustom&amp;gt; (at_loader.c:153)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]V: load_dll: -&amp;gt; (at_loader.c:110)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: full dll path is &amp;lt;C:\Program Files\Attunity\Replicate\bin\arepcustom.dll&amp;gt; (at_loader.c:255)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: rootPath=&amp;lt;null&amp;gt;, addPath=&amp;lt;null&amp;gt; (at_dir.c:1014)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: result before canonize=&amp;lt;C:\Program Files\Attunity\Replicate\bin\arepcustom.dll&amp;gt; (at_dir.c:1025)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: result=&amp;lt;C:\Program Files\Attunity\Replicate\bin\arepcustom.dll&amp;gt; (at_dir.c:1031)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: checking if dll init method exists &amp;lt;at_ldr_on_load&amp;gt; (at_loader.c:75)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: no init method for the loaded dll (at_loader.c:96)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]V: load_dll: &amp;lt;- (at_loader.c:209)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: going to call loaded method for class &amp;lt;ar_custom_endpoint_client&amp;gt; (at_loader.c:348)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: load method for class &amp;lt;ar_custom_endpoint_client&amp;gt; was called successfully (at_loader.c:352)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: class type is &amp;lt;ar_custom_endpoint_client class&amp;gt; (at_loader.c:418)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: class version is 1.1 (at_loader.c:280)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: load info class version is 1.1 (at_loader.c:281)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: calling class init method (at_loader.c:309)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: class init method was called (at_loader.c:314)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: rootPath=&amp;lt;C:\Program Files\Attunity\Replicate\&amp;gt;, addPath=&amp;lt;C:\Program Files\Attunity\Replicate\&amp;gt; (at_dir.c:1014)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: result=&amp;lt;C:\Program Files\Attunity\Replicate\endpoint_srv&amp;gt; (at_dir.c:1031)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: rootPath=&amp;lt;C:\Program Files\Attunity\Replicate\endpoint_srv&amp;gt;, addPath=&amp;lt;C:\Program Files\Attunity\Replicate\endpoint_srv&amp;gt; (at_dir.c:1014)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [IO ]V: combine_path: result=&amp;lt;C:\Program Files\Attunity\Replicate\endpoint_srv\bin&amp;gt; (at_dir.c:1031)&lt;BR /&gt;00004308: 2023-11-30T21:43:59:114065 [INFRASTRUCTURE ]T: class init method was called (at_loader.c:314)&lt;BR /&gt;00009592: 2023-11-30T22:12:19:313711 [METADATA_MANAGE ]T: Going to prepare the statement 'select INDEX_NAME, NVL(prefix_length, 0) from ALL_INDEXES where table_owner = :1 and table_name = :2 and INDEX_TYPE like 'IOT%%'' for 'COST.JNLU_REF' (oracle_endpoint_table.c:2466)&lt;BR /&gt;00009592: 2023-11-30T22:12:19:403535 [METADATA_MANAGE ]T: Going to prepare the statement 'select object_id, NVL(data_object_id, 0) from ALL_OBJECTS where owner=:1 and object_name = :2 and object_type = 'INDEX'' for 'COST.JNLU_REF_PK' (oracle_endpoint_table.c:2516)&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 02:23:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/LogFile-Query-Interpretation-of-the-parameters-s-1-2/m-p/2143545#M8353</guid>
      <dc:creator>lqthinguyen</dc:creator>
      <dc:date>2023-12-02T02:23:56Z</dc:date>
    </item>
  </channel>
</rss>

