<?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: Timezone Conversion - Oracle CET to Kafka (Avro) UTC in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878047#M1588</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/115309"&gt;@john_wang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;we use Oracle Server and Client version 19.11. The following client package was installed on the Qlik Server (Linux):&lt;/P&gt;
&lt;P&gt;oracle-instantclient19.11-basic-19.11.0.0.0-1.x86_64.rpm&lt;/P&gt;
&lt;P&gt;Sorry, what do you mean with FL?&lt;/P&gt;
&lt;P&gt;The replication/CDC works fine so far, we have no issue bringing the data to Kafka.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Andreas&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jan 2022 15:35:55 GMT</pubDate>
    <dc:creator>AndreasFenske</dc:creator>
    <dc:date>2022-01-06T15:35:55Z</dc:date>
    <item>
      <title>Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877441#M1534</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;we are facing an issue when transferring data from Oracle to Kafka with Qlik Replicate.&lt;/P&gt;
&lt;P&gt;We are using Avro logical data types. On the Oracle side the timestamp information is in CET timezone, but when we check the timestamp in Kafka, which is a long value due to Unix Epoch Time conversion by Qlik, it is in UTC. Either this is because our Kafka Cluster is running on servers which have the UTC timezone, or Qlik Replicate generally converts it to UTC.&lt;/P&gt;
&lt;P&gt;Here is an example:&lt;/P&gt;
&lt;P&gt;Oracle timestamp field value:&amp;nbsp;04/01/2022 11:21:03.087262000&amp;nbsp; (DB timezone is Zurich/CET)&lt;/P&gt;
&lt;P&gt;Kafka timestamp (long) field value:&amp;nbsp;1641295263087262&lt;/P&gt;
&lt;P&gt;When decoding the kafka long value back, we get:&lt;/P&gt;
&lt;P&gt;Tue Jan 04 2022 11:21:03 GMT+0000&amp;nbsp; or:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Tue Jan 04 2022 12:21:03 GMT+0100&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The GMT+0100 (=CET) timezone does obviosly not correspond to the original value and has 01:00 hr difference.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Is there an option, where we can tell Qlik Replicate in wich timezone the Oracle DB is in?&lt;/P&gt;
&lt;P&gt;Or any other solution how we can ingest the correct timestamp (long) value with Qlik into Kafka?&lt;/P&gt;
&lt;P&gt;Thanks for any help on this.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Andreas&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 11:20:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877441#M1534</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-05T11:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877482#M1535</link>
      <description>&lt;P&gt;for your Oracle source, for this time column, what is the oracle data type?&lt;/P&gt;
&lt;P&gt;from Replicate , click on table transformation, what does it show for this column data type ?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 12:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877482#M1535</guid>
      <dc:creator>Steve_Nguyen</dc:creator>
      <dc:date>2022-01-05T12:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877532#M1539</link>
      <description>&lt;P&gt;The source column in Oracle is defined as:&lt;/P&gt;
&lt;P&gt;TIMESTAMP(9), Length: 11, Scale: 9, Nullable: No&lt;/P&gt;
&lt;P&gt;In Qlik Replicate in the table transformations it is defined as&amp;nbsp;DATETIME(9).&lt;/P&gt;
&lt;P&gt;In Kafka, it is defined as logical Avro data type:&lt;/P&gt;
&lt;P&gt;{&lt;BR /&gt;"default": null,&lt;BR /&gt;"name": "CREATED",&lt;BR /&gt;"type": [&lt;BR /&gt;"null",&lt;BR /&gt;{&lt;BR /&gt;"logicalType": "timestamp-micros",&lt;BR /&gt;"type": "long"&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;},&lt;/P&gt;
&lt;P&gt;From my understanding, in Oracle there is no direct timezone information connected to a specific timestamp field. However the database has a timezone.&lt;/P&gt;
&lt;P&gt;For example this query:&lt;/P&gt;
&lt;P&gt;SELECT DBTIMEZONE FROM DUAL;&lt;/P&gt;
&lt;P&gt;Brings: +01:00&lt;/P&gt;
&lt;P&gt;The Servers behind the Kafka Clusters are running UTC.&lt;/P&gt;
&lt;P&gt;So we have in total this setup:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Oracle - Zurich timezone (CET)&lt;/LI&gt;
&lt;LI&gt;Qlik Replicate Linux Servers - Zurich timezone (CET)&lt;/LI&gt;
&lt;LI&gt;Kafka Cluster - UTC&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 14:49:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877532#M1539</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-05T14:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877596#M1551</link>
      <description>&lt;P&gt;not sure what your Kafka endpoint setting , but have you check this :&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="fontstyle0"&gt;If you selected Avro, optionally select the Use logical data types for specific data types check box&lt;BR /&gt;to map some of the number-based Qlik Replicate data types to Avro logical data types. When this&lt;BR /&gt;option is not selected (the default), all Qlik Replicate data types will be mapped to Avro primitive data&lt;BR /&gt;types.&lt;BR /&gt;For more information on Qlik Replicate to Avro data type mapping, see &lt;/SPAN&gt;&lt;SPAN class="fontstyle0"&gt;Mapping from Qlik Replicate&lt;BR /&gt;Data Types to Avro&lt;/SPAN&gt; &lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/replicate/November2021/Content/Replicate/Main/Kafka/kafka_setting_general_properties.htm#ar_kafka_1150155758_1642055" target="_blank"&gt;https://help.qlik.com/en-US/replicate/November2021/Content/Replicate/Main/Kafka/kafka_setting_general_properties.htm#ar_kafka_1150155758_1642055&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 16:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877596#M1551</guid>
      <dc:creator>Steve_Nguyen</dc:creator>
      <dc:date>2022-01-05T16:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877729#M1564</link>
      <description>&lt;P&gt;The option "&lt;SPAN&gt;Use logical data types for specific data types" is selected. When the option is not selected all fields are String fields and also timestamp fields are not converted to Unix Epoch times in that case. Probably then all timestamp values are 1:1 written as string, but I would have to prove that. However we would like to have these logical Avro data types where timestamps are converted to Unix Epoch times (long values).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 22:18:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877729#M1564</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-05T22:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877790#M1565</link>
      <description>&lt;P&gt;The problem is that when the timestamp value is retrieved from the source there is no timezone actively associated with it.&lt;/P&gt;
&lt;P&gt;One could perhaps argue that is this is sloppy DB designer work. They should have used&amp;nbsp;TIMESTAMP WITH TIME ZONE and all would be well (probably - I did not verify), so let them solve it for Kafka.&lt;/P&gt;
&lt;P&gt;Within Replicate you could define a transformation on the column for example: datetime ($CREATED || '+01:00')&lt;/P&gt;
&lt;P&gt;Google for 'sqlite datetime function' --- &amp;gt; &lt;A href="https://www.sqlite.org/lang_datefunc.html" target="_blank"&gt;https://www.sqlite.org/lang_datefunc.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can test this easily in the designer with :&amp;nbsp;&amp;nbsp;datetime (datetime('now','localtime') || '+01:00') ... parse ... test.&lt;/P&gt;
&lt;P&gt;The likely problem with that is the hard-coded timezone offset - possibly summertime depended.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use source_lookup with a long time to live for DBTIMEZONE as long as the DB provides the timezone by number, not by name&lt;/P&gt;
&lt;P&gt;datetime ($CREATED || source_lookup(10000,'SYS','DUAL','DBTIMEZONE','1+1=2'))&lt;/P&gt;
&lt;P&gt;If the source db has a timezone by name, then you would have to 'map' that in the task with an IF-THEN-ELSE transformation or you could provide a private lookup table in the source DB, or just add a timezone column to the target and let them figure it out!&lt;/P&gt;
&lt;P&gt;Another thought might be (to avoid going back to the source DB) is to use and IF-THEN-ELSE to map (part of) the Replicate provided variable&amp;nbsp;$AR_V_SOURCE_NAME to a timezone but that's not very robust as source-db-endpoint-names change when going from dev to qa to prod. Still....&lt;/P&gt;
&lt;P&gt;You may also want to look at using a transformation to switch to epoch directly: (julianday($CREATED) - 2440587.5)*86400.0&lt;/P&gt;
&lt;P&gt;You'd have to add/subtract the right number of second to get the timezone in place but you'd be under full control.&lt;/P&gt;
&lt;P&gt;hth,&lt;/P&gt;
&lt;P&gt;Hein.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 04:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877790#M1565</guid>
      <dc:creator>Heinvandenheuvel</dc:creator>
      <dc:date>2022-01-06T04:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877859#M1572</link>
      <description>&lt;P&gt;Thank you for your detailed answer.&lt;/P&gt;
&lt;P&gt;Yes, potentially&amp;nbsp;&lt;SPAN&gt;TIMESTAMP WITH TIME ZONE&amp;nbsp;might solve the problem, however in most companies (I know) this is not used. So mostly we have pure TIMESTAMP fields and then the DB timezone.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Probably I could solve the issue somehow with transformations on field level like the examples you have provided, but in our case we have around 230 tables which would be quite cumbersome to change all timestamp fields for all tables in that way. From my perspective it should work already by default by considering the DB timezone when processing / casting timestamp fields into Unix Epoch Time. Unfortunately I didn't see any option in the endpoint connections for Oracle to configure the DB timezone.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As reference I found this entry in the community:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Replicate/Convert-timezone/td-p/1874853" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Replicate/Convert-timezone/td-p/1874853&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There is a screenshot of the MySQL Database Endpoint Configuration and there you can set the DB timezone.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So actually when taking a timestamp from any source database and converting into a Unix Epoch Time, the timezone should be considered.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Currently for the replication "Oracle -&amp;gt; Kafka" with logical (Avro) data types Qlik Replicate is &lt;U&gt;always&lt;/U&gt; converting the source timestamp value 1:1 into UTC Unix Epoch Time, regardless of the source DB timezone.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you confirm that?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Would it be a feature request to change that behavior and consider the DB source timezone when converting to Unix Epoch time?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 08:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877859#M1572</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-06T08:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877939#M1576</link>
      <description>&lt;P&gt;Another idea: could it be related to the created connection?&lt;/P&gt;
&lt;P&gt;In the session with the database a timezone information is provided by the client so that the client can receive timestamps in the desired timezone. Our Qlik Server has CET as local time, so when Qlik Replicate creates a connection to the Oracle Database, maybe CET is configured in the connection session.&lt;/P&gt;
&lt;P&gt;Could we somehow (e.g. Qlik internal parameter) overwrite this timezone information in the session when Qlik Replicate creates a connection to the database?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 12:06:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877939#M1576</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-06T12:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877959#M1577</link>
      <description>&lt;P&gt;1.&amp;nbsp;&lt;SPAN&gt;Could we somehow (e.g. Qlik internal parameter) overwrite this timezone information:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ans: if Oracle ODBC connection have such parameter then we can use in Replicate, but i did a quick search and do not see search timezone connection string for Oracle ODBC..&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2. Would it be a feature request to change that behavior and consider the DB source timezone when converting to Unix Epoch time?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ans : this would be a feature request.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/t5/Ideation/ct-p/qlik-product-insight" target="_blank"&gt;https://community.qlik.com/t5/Ideation/ct-p/qlik-product-insight&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 12:56:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1877959#M1577</guid>
      <dc:creator>Steve_Nguyen</dc:creator>
      <dc:date>2022-01-06T12:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878003#M1583</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158367"&gt;@AndreasFenske&lt;/a&gt;&amp;nbsp;, copy&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110970"&gt;@Heinvandenheuvel&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/117387"&gt;@Steve_Nguyen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;May I know what's the Oracle server and client version?&lt;/P&gt;&lt;P&gt;If I'm correct, you are running &lt;STRONG&gt;Oracle&amp;nbsp;client&amp;nbsp;12.1.0&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;BTW, the problem occurs on FL only. the CDC works fine. is that correct?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 14:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878003#M1583</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2022-01-06T14:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878047#M1588</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/115309"&gt;@john_wang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;we use Oracle Server and Client version 19.11. The following client package was installed on the Qlik Server (Linux):&lt;/P&gt;
&lt;P&gt;oracle-instantclient19.11-basic-19.11.0.0.0-1.x86_64.rpm&lt;/P&gt;
&lt;P&gt;Sorry, what do you mean with FL?&lt;/P&gt;
&lt;P&gt;The replication/CDC works fine so far, we have no issue bringing the data to Kafka.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Andreas&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 15:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878047#M1588</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-06T15:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878058#M1589</link>
      <description>&lt;P&gt;Oh sorry, the DBA replied that the DB version is&amp;nbsp;Oracle Database &lt;STRONG&gt;19.8.1.0.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The Oracle client version is correct as mentioned above &lt;STRONG&gt;19.11&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 15:50:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878058#M1589</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-01-06T15:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878434#M1599</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158367"&gt;@AndreasFenske&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you for your update.&lt;/P&gt;&lt;P&gt;In the past we ever experienced Oracle c/s versions&amp;nbsp;incompatible issue which cause session timezone was not set correct, the client version is &lt;STRONG&gt;Oracle&amp;nbsp;client&amp;nbsp;12.1.0&lt;/STRONG&gt;. Obviously this is not your scenario.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 12:41:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1878434#M1599</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2022-01-07T12:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone Conversion - Oracle CET to Kafka (Avro) UTC</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1897628#M1930</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158367"&gt;@AndreasFenske&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;We are working with internal team on this topic. Will keep you posted.&lt;/P&gt;&lt;P&gt;Before we get an enhancement or fix, there are 2 WA:&lt;/P&gt;&lt;P&gt;1- turn off option "&lt;SPAN&gt;Use logical data types for specific data types&lt;/SPAN&gt;" in endpoint setting, or&lt;/P&gt;&lt;P&gt;2- keep it turn on but manually change the data type from&amp;nbsp;DATETIME(n) to STRING(30) in table transform. In this scenario you will get a STRING which represents the datetime in local time.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 12:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Timezone-Conversion-Oracle-CET-to-Kafka-Avro-UTC/m-p/1897628#M1930</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2022-02-25T12:09:53Z</dc:date>
    </item>
  </channel>
</rss>

