<?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: CREATE TABLE error when replicating a VIEW from Oracle in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485434#M12895</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/176185"&gt;@slewis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for opening a support ticket, our support engineer will work on the issue and keep you posted in the case portal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Suresh&lt;/P&gt;</description>
    <pubDate>Sat, 05 Oct 2024 00:54:50 GMT</pubDate>
    <dc:creator>sureshkumar</dc:creator>
    <dc:date>2024-10-05T00:54:50Z</dc:date>
    <item>
      <title>CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485404#M12888</link>
      <description>&lt;P&gt;Recently a development team made a change to an existing ORACLE View that was included in a QLIK Replicate task. The result of the View change is that one of the previously existing columns now returns nothing but NULL values in the result set.&lt;/P&gt;
&lt;P&gt;I started noticing the task failing and after digging into the Log File (see attached excepts) I saw that Replicate was generating an inaccurate CREATE TABLE statement for the target table that is dropped and recreated each time the full-load task (no CDC) is run.&lt;BR /&gt;&lt;BR /&gt;The brief example is this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black" data-olk-copy-source="MessageBody"&gt;CREATE TABLE "SCHEMA_NAME"."VIEW_NAME&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;" ( &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      "A" VARCHAR(14),&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      "B" VARCHAR(8),&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      "C" NUMBER(26,3) NOT NULL,&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      "D" VARCHAR(10),&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      &lt;/SPAN&gt;&lt;SPAN data-ogsc="rgb(237, 92, 87)"&gt;"E" ,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;-- Note No Data Type&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      "F" VARCHAR(10),&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;      "G" VARCHAR(5) NOT NULL,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN data-ogsc="black"&gt;...)&lt;BR /&gt;&lt;BR /&gt;I suspect a bug in the process that interrogates the source object to determine the DDL. Since this is an Oracle View and no data types are specified, the process has to infer data types by sampling the data. Since this column has nothing but NULL values a data type cannot be determined. The Bug would be not defaulting to something safe(ish) like a string data type.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;Interestingly when in Designer mode and I double click on the VIEW name to "View Settings". The Transformation Tabs Output grid shows column "E" as a STRING(50) but that data type is not being used when the CREATE TABLE statement is sent to my Snowflake target.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="x_MsoNormal"&gt;&lt;SPAN data-ogsc="black"&gt;So I don't know if the error is on the Oracle SOURCE processing side of the equation or the Snowflake TARGET processing side. Either way, this seems like an issue that should be looked into if not already fixed in the May '24 release.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 04 Oct 2024 16:57:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485404#M12888</guid>
      <dc:creator>slewis</dc:creator>
      <dc:date>2024-10-04T16:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485406#M12889</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/176185"&gt;@slewis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for utilizing our Community forum. Unfortunately, we don't have a method of raising potential application defects to our internal support team via the forum. Could you please open a support case for this issue? It is an interesting use case.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Dana&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 17:37:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485406#M12889</guid>
      <dc:creator>Dana_Baldwin</dc:creator>
      <dc:date>2024-10-04T17:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485408#M12890</link>
      <description>&lt;P&gt;Would love to add a support case but I've spent over 30 minutes going through the site and cannot find where to do so. The closest I came was this forum where I could post a question and the Get Help/Manage Cases link that, when selected, has 7 options, none of which have anything to do with support cases by name. Ugh...&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 17:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485408#M12890</guid>
      <dc:creator>slewis</dc:creator>
      <dc:date>2024-10-04T17:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485409#M12891</link>
      <description>&lt;P&gt;I haven't had this sort of problem in the past, but we have a new site now that I'm less familiar with.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 17:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485409#M12891</guid>
      <dc:creator>slewis</dc:creator>
      <dc:date>2024-10-04T17:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485410#M12892</link>
      <description>&lt;P&gt;If anyone else can't find the link to open a support case, I FOUND IT!!!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H2&gt;&lt;A id="TwoTwo" name="TwoTwo" target="_blank"&gt;&lt;/A&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;2. Chat&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;&lt;STRONG&gt;Incidents are supported through our&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Support/ct-p/qlikSupport" target="_blank" rel="noopener"&gt;Chat&lt;/A&gt;, by clicking&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Support/ct-p/qlikSupport" target="_blank" rel="noopener"&gt;Chat Now&lt;/A&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;on any Support Page across Qlik Community.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To raise a new issue, all you need to do is chat with us. With this, we can:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Answer common questions instantly through our chatbot&lt;/LI&gt;
&lt;LI&gt;Have a live agent troubleshoot in real time&lt;/LI&gt;
&lt;LI&gt;With items that will take further investigating, we will create a case on your behalf with step-by-step intake questions.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 04 Oct 2024 17:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485410#M12892</guid>
      <dc:creator>slewis</dc:creator>
      <dc:date>2024-10-04T17:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485415#M12893</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/176185"&gt;@slewis&lt;/a&gt;&amp;nbsp;I'm sorry to hear the portal isn't working correctly for you. Please check this link, and if it does not help, please open a case with the team that handles portal access using the chat button or emailing &lt;A href="mailto:CustomerSupport@qlik.com" target="_blank"&gt;CustomerSupport@qlik.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/How-to-view-cases-in-Support-Portal/ta-p/1717144" target="_blank"&gt;How to view cases in Support Portal - Qlik Community - 1717144&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 17:55:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485415#M12893</guid>
      <dc:creator>Dana_Baldwin</dc:creator>
      <dc:date>2024-10-04T17:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485417#M12894</link>
      <description>&lt;P&gt;Support case:&amp;nbsp;&lt;A href="https://customerportal.qlik.com/case/500R500000DldfyIAB/create-table-error-when-replicating-a-view-from-oracle-to-snowflake" target="_blank" rel="noopener"&gt;00315969&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 18:04:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485417#M12894</guid>
      <dc:creator>slewis</dc:creator>
      <dc:date>2024-10-04T18:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: CREATE TABLE error when replicating a VIEW from Oracle</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485434#M12895</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/176185"&gt;@slewis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for opening a support ticket, our support engineer will work on the issue and keep you posted in the case portal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Suresh&lt;/P&gt;</description>
      <pubDate>Sat, 05 Oct 2024 00:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/CREATE-TABLE-error-when-replicating-a-VIEW-from-Oracle/m-p/2485434#M12895</guid>
      <dc:creator>sureshkumar</dc:creator>
      <dc:date>2024-10-05T00:54:50Z</dc:date>
    </item>
  </channel>
</rss>

