<?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 does qlikreplicate support oracle global temp tables? in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481901#M12744</link>
    <description>&lt;P&gt;does qlikreplicate support oracle global temp tables?&lt;/P&gt;</description>
    <pubDate>Mon, 16 Sep 2024 21:20:10 GMT</pubDate>
    <dc:creator>suhail01101984</dc:creator>
    <dc:date>2024-09-16T21:20:10Z</dc:date>
    <item>
      <title>does qlikreplicate support oracle global temp tables?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481901#M12744</link>
      <description>&lt;P&gt;does qlikreplicate support oracle global temp tables?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 21:20:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481901#M12744</guid>
      <dc:creator>suhail01101984</dc:creator>
      <dc:date>2024-09-16T21:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: does qlikreplicate support oracle global temp tables?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481920#M12745</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/313277"&gt;@suhail01101984&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Welcome to Qlik Community forum and thanks for reaching out here!&lt;/P&gt;
&lt;P&gt;It seems you're referring to Global Temporary Tables (GTTs) in Oracle as the source endpoint.&lt;/P&gt;
&lt;P&gt;The short answer is &lt;STRONG&gt;no -&amp;nbsp;&lt;/STRONG&gt;Qlik Replicate cannot access data in Oracle GTTs. This is because the data in these tables is &lt;STRONG&gt;session-private&lt;/STRONG&gt;, meaning data inserted by one session is only accessible within that session. As a result, Qlik Replicate is unable to access or replicate the data during either Full Load or Change Data Capture (CDC) processes.&lt;/P&gt;
&lt;P&gt;Additionally, temporary tables are generally intended for short-term use, such as buffering result sets that are constructed through multiple DML operations. Since their purpose is temporary and session-specific, replicating them to another database offers no practical value.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;John.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 01:27:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481920#M12745</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-09-17T01:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: does qlikreplicate support oracle global temp tables?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481921#M12746</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/115309"&gt;@john_wang&lt;/a&gt;&amp;nbsp;, thanks for replying. we have a use case where we would like to replicate to oracle target and the target table needs to be a GTT. is that possible?&lt;/P&gt;
&lt;P&gt;when we tried to replicate to a target GTT, the job fails coz it can't find the table. it's probably because it's running this sql:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;select object_id from ALL_OBJECTS where owner = :1 and object_name = :2 and (object_type = 'TABLE' or object_type = 'VIEW') &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;and temporary = 'N'&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; and object_name not like 'BIN$%' and object_name not like 'DR$%';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;the "and temporary='N' " in the sql is causing qlikreplicate to not recognize the GTT that we created.&lt;/P&gt;
&lt;P&gt;is there any internal parameter that will allow qlik replicate to issue the sql without this&amp;nbsp;"and temporary='N' " ?&lt;/P&gt;
&lt;P&gt;we would like to override the sql it runs and it should like this instead:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;select object_id from ALL_OBJECTS where owner = :1 and object_name = :2 and (object_type = 'TABLE' or object_type = 'VIEW') and object_name not like 'BIN$%' and object_name not like 'DR$%';&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 02:41:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481921#M12746</guid>
      <dc:creator>suhailmemon</dc:creator>
      <dc:date>2024-09-17T02:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: does qlikreplicate support oracle global temp tables?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481923#M12747</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158500"&gt;@suhailmemon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for the update.&lt;/P&gt;
&lt;P&gt;I'm afraid NO. Because even if Qlik Replicate creates the GTT and replicates the source data to these target GTT however the data is invisible for your other Apps.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 02:44:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481923#M12747</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-09-17T02:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: does qlikreplicate support oracle global temp tables?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481924#M12748</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158500"&gt;@suhailmemon&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Qlik Replicate does not a create global temporary table on the target side.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Desmond&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 02:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/does-qlikreplicate-support-oracle-global-temp-tables/m-p/2481924#M12748</guid>
      <dc:creator>DesmondWOO</dc:creator>
      <dc:date>2024-09-17T02:45:44Z</dc:date>
    </item>
  </channel>
</rss>

