<?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 Numeric values from VSAM lose comma in BigQuery via Qlik Replicate in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2549997#M16352</link>
    <description>&lt;DIV&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I’m facing an issue with decimal values coming from VSAM via ARC Studio and replicated to BigQuery.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;ARC field type: &lt;CODE&gt;NUMSTRING_U&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Source value: &lt;CODE&gt;123,12&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Target (BigQuery via Qlik Replicate): &lt;CODE&gt;123&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;So the decimal part is lost during replication.&lt;/P&gt;
&lt;P&gt;Has anyone experienced this behavior?&lt;BR /&gt;Is there a recommended way to handle comma-based decimal values (e.g. replace with dot or change data type) before replication?&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Wed, 27 May 2026 09:57:17 GMT</pubDate>
    <dc:creator>Domenico_Arcamone</dc:creator>
    <dc:date>2026-05-27T09:57:17Z</dc:date>
    <item>
      <title>Numeric values from VSAM lose comma in BigQuery via Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2549997#M16352</link>
      <description>&lt;DIV&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I’m facing an issue with decimal values coming from VSAM via ARC Studio and replicated to BigQuery.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;ARC field type: &lt;CODE&gt;NUMSTRING_U&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Source value: &lt;CODE&gt;123,12&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Target (BigQuery via Qlik Replicate): &lt;CODE&gt;123&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;So the decimal part is lost during replication.&lt;/P&gt;
&lt;P&gt;Has anyone experienced this behavior?&lt;BR /&gt;Is there a recommended way to handle comma-based decimal values (e.g. replace with dot or change data type) before replication?&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 May 2026 09:57:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2549997#M16352</guid>
      <dc:creator>Domenico_Arcamone</dc:creator>
      <dc:date>2026-05-27T09:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal values from VSAM (NUMSTRING_U) lose comma in BigQuery via Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2550007#M16353</link>
      <description>&lt;P&gt;Hello Domenico_Arcamone,&lt;BR /&gt;&lt;BR /&gt;Thank you for reaching out to the &lt;STRONG&gt;Qlik community&lt;/STRONG&gt;,&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is expected behaviour. Your value 123,12 is treated as a &lt;STRONG&gt;string / localized number&lt;/STRONG&gt;. &lt;A href="https://stackoverflow.com/questions/64474443/how-to-read-and-output-numeric-values-properly-in-bigquery" target="_blank"&gt;&lt;STRONG&gt;BigQuery&lt;/STRONG&gt;&lt;/A&gt;&lt;STRONG&gt; expects a dot (.) as decimal separator&lt;/STRONG&gt; and interprets a comma as thousands separator → so 123,12 becomes 123. Also, &lt;A href="https://customerportal.qlik.com/article/Qlik-Replicate-and-GBQ-target-endpoint-Data-type-NUMERIC-p-s-Precision-and-Scale" target="_blank"&gt;Qlik Replicate&lt;/A&gt; may map such fields as &lt;STRONG&gt;STRING&lt;/STRONG&gt; (e.g. NUMSTRING_U), losing decimal semantics unless explicitly cast.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The best fix for this:-&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;Best: replace before replication:-&lt;BR /&gt;REPLACE(col, ',', '.')&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
 &lt;LI&gt;Or cast in BigQueryCAST:-&lt;BR /&gt;(REPLACE(col, ',', '.') AS NUMERIC)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Recommendation:&lt;/STRONG&gt; Convert to proper numeric (DECIMAL) &lt;STRONG&gt;before replication&lt;/STRONG&gt; to avoid data loss.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 12:18:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2550007#M16353</guid>
      <dc:creator>Rahul_Kale</dc:creator>
      <dc:date>2026-05-27T12:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric values from VSAM lose comma in BigQuery via Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2550016#M16355</link>
      <description>&lt;DIV&gt;
&lt;P&gt;Hi Rahul,&lt;/P&gt;
&lt;P&gt;thanks for your reply, very clear.&lt;/P&gt;
&lt;P&gt;Just to add: I also tried converting the field to a decimal type directly in ARC Studio, but in that case the value with comma (e.g. &lt;CODE&gt;123,12&lt;/CODE&gt;) is not correctly handled and the decimal part is still not preserved.&lt;/P&gt;
&lt;P&gt;So I was wondering if there is any alternative way to handle this directly in ARC (e.g. field definition, formatting, or transformation), instead of applying the conversion in Replicate or BigQuery.&lt;/P&gt;
&lt;P&gt;Thanks again for your support!&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 May 2026 13:18:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Numeric-values-from-VSAM-lose-comma-in-BigQuery-via-Qlik/m-p/2550016#M16355</guid>
      <dc:creator>Domenico_Arcamone</dc:creator>
      <dc:date>2026-05-27T13:18:13Z</dc:date>
    </item>
  </channel>
</rss>

