<?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 TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540734#M15764</link>
    <description>&lt;P&gt;I have a SQL Server source table that has 5 columns:&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&amp;nbsp;3 non-nullable INTEGER columns&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;1 non-nullable DATETIME column that records the database insert date&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;1 nullable DATETIME column that records the update date&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;The MERGE statement looks like this (the names were changed to protect the innocent):&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MERGE INTO "dbo"."my_table_name" T&lt;BR /&gt;USING (&lt;BR /&gt;SELECT *&lt;BR /&gt;FROM "public"."attrep_changes6004D92ED521268C"&lt;BR /&gt;WHERE "table_id" = 1&lt;BR /&gt;) S&lt;BR /&gt;ON (T."ASSIGNMENTID" = IFF("table_id" = 1, TRY_CAST(S."seg1" AS NUMBER(38, 0)), NULL))&lt;BR /&gt;AND (T."PERIODID" = IFF("table_id" = 1, TRY_CAST(S."seg2" AS NUMBER(38, 0)), NULL))&lt;BR /&gt;WHEN MATCHED AND "replicate_op" = 0 AND "table_id" = 1&lt;BR /&gt;THEN DELETE&lt;BR /&gt;WHEN MATCHED AND "replicate_op" &amp;lt;&amp;gt; 0 AND "table_id" = 1&lt;BR /&gt;THEN UPDATE SET&lt;BR /&gt;T."NumericColumn1" = IFF("table_id" = 1, TRY_CAST(S."col1" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;T."NumericColumn2" = IFF("table_id" = 1, TRY_CAST(S."col2" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;T."NumericColumn2" = IFF("table_id" = 1, TRY_CAST(S."col3" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;T."DatabaseInsertDate" = IFF("table_id" = 1, TRY_CAST(S."col4" AS TIMESTAMP(3)), NULL),&lt;BR /&gt;T."DatabaseUpdateDate" = IFF("table_id" = 1, TRY_CAST(S."col5" AS TIMESTAMP(3)), NULL)&lt;BR /&gt;WHEN NOT MATCHED AND "replicate_op" &amp;lt;&amp;gt; 0 AND "table_id" = 1&lt;BR /&gt;THEN INSERT (&lt;BR /&gt;"NumericColumn1",&lt;BR /&gt;"NumericColumn2",&lt;BR /&gt;"NumericColumn3",&lt;BR /&gt;"DatabaseInsertDate",&lt;BR /&gt;"DatabaseUpdateDate"&lt;BR /&gt;)&lt;BR /&gt;VALUES (&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col1" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col2" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col3" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col4" AS TIMESTAMP(3)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col5" AS TIMESTAMP(3)), NULL)&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;I figured that the issue is caused by TRY_CAST and that the TRY_CAST is returning a NULL for my&amp;nbsp;DatabaseInsertDate.&amp;nbsp; &amp;nbsp;The FULL load works fine, but from what I can see the full load is doing a COPY INTO and not running a TRY_CAST.&amp;nbsp; I have tried adding a transformation on the Table Settings for this table to&amp;nbsp;&lt;/P&gt;
&lt;P&gt;strftime('%Y-%m-%d %H:%M:%f', $DatabaseInsertDate)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...but that has not helped.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The public.attrep_changes6004D92ED521268C table goes away as soon as the error occurs so I cannot see the data behind the issue.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help.&amp;nbsp; Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 13 Jan 2026 07:14:55 GMT</pubDate>
    <dc:creator>Lenka72</dc:creator>
    <dc:date>2026-01-13T07:14:55Z</dc:date>
    <item>
      <title>TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540734#M15764</link>
      <description>&lt;P&gt;I have a SQL Server source table that has 5 columns:&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&amp;nbsp;3 non-nullable INTEGER columns&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;1 non-nullable DATETIME column that records the database insert date&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;1 nullable DATETIME column that records the update date&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;The MERGE statement looks like this (the names were changed to protect the innocent):&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MERGE INTO "dbo"."my_table_name" T&lt;BR /&gt;USING (&lt;BR /&gt;SELECT *&lt;BR /&gt;FROM "public"."attrep_changes6004D92ED521268C"&lt;BR /&gt;WHERE "table_id" = 1&lt;BR /&gt;) S&lt;BR /&gt;ON (T."ASSIGNMENTID" = IFF("table_id" = 1, TRY_CAST(S."seg1" AS NUMBER(38, 0)), NULL))&lt;BR /&gt;AND (T."PERIODID" = IFF("table_id" = 1, TRY_CAST(S."seg2" AS NUMBER(38, 0)), NULL))&lt;BR /&gt;WHEN MATCHED AND "replicate_op" = 0 AND "table_id" = 1&lt;BR /&gt;THEN DELETE&lt;BR /&gt;WHEN MATCHED AND "replicate_op" &amp;lt;&amp;gt; 0 AND "table_id" = 1&lt;BR /&gt;THEN UPDATE SET&lt;BR /&gt;T."NumericColumn1" = IFF("table_id" = 1, TRY_CAST(S."col1" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;T."NumericColumn2" = IFF("table_id" = 1, TRY_CAST(S."col2" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;T."NumericColumn2" = IFF("table_id" = 1, TRY_CAST(S."col3" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;T."DatabaseInsertDate" = IFF("table_id" = 1, TRY_CAST(S."col4" AS TIMESTAMP(3)), NULL),&lt;BR /&gt;T."DatabaseUpdateDate" = IFF("table_id" = 1, TRY_CAST(S."col5" AS TIMESTAMP(3)), NULL)&lt;BR /&gt;WHEN NOT MATCHED AND "replicate_op" &amp;lt;&amp;gt; 0 AND "table_id" = 1&lt;BR /&gt;THEN INSERT (&lt;BR /&gt;"NumericColumn1",&lt;BR /&gt;"NumericColumn2",&lt;BR /&gt;"NumericColumn3",&lt;BR /&gt;"DatabaseInsertDate",&lt;BR /&gt;"DatabaseUpdateDate"&lt;BR /&gt;)&lt;BR /&gt;VALUES (&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col1" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col2" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col3" AS NUMBER(38, 0)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col4" AS TIMESTAMP(3)), NULL),&lt;BR /&gt;IFF("table_id" = 1, TRY_CAST(S."col5" AS TIMESTAMP(3)), NULL)&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;I figured that the issue is caused by TRY_CAST and that the TRY_CAST is returning a NULL for my&amp;nbsp;DatabaseInsertDate.&amp;nbsp; &amp;nbsp;The FULL load works fine, but from what I can see the full load is doing a COPY INTO and not running a TRY_CAST.&amp;nbsp; I have tried adding a transformation on the Table Settings for this table to&amp;nbsp;&lt;/P&gt;
&lt;P&gt;strftime('%Y-%m-%d %H:%M:%f', $DatabaseInsertDate)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...but that has not helped.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The public.attrep_changes6004D92ED521268C table goes away as soon as the error occurs so I cannot see the data behind the issue.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help.&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 07:14:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540734#M15764</guid>
      <dc:creator>Lenka72</dc:creator>
      <dc:date>2026-01-13T07:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540744#M15765</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/333775"&gt;@Lenka72&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;TRY_CAST&lt;/STRONG&gt; function is used to ensure data type compatibility when merging data from the net change table (in this case, attrep_changes6004D92ED521268C) into the final target table.&lt;/P&gt;
&lt;P&gt;However, &lt;STRONG&gt;TRY_CAST&lt;/STRONG&gt; itself does not generate NULL values—it only returns NULL when the input value is already NULL.&lt;/P&gt;
&lt;P&gt;To investigate why some column values are NULL, please do the following:&lt;/P&gt;
&lt;P&gt;1. Set &lt;STRONG&gt;SOURCE_CAPTURE&lt;/STRONG&gt; and &lt;STRONG&gt;TARGET_APPLY&lt;/STRONG&gt; logging levels to &lt;STRONG&gt;Verbose&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;2. Enable &lt;STRONG&gt;keepCSVFiles&lt;/STRONG&gt; and &lt;STRONG&gt;keepErrorFiles&lt;/STRONG&gt; by setting them to &lt;STRONG&gt;True&lt;/STRONG&gt; in the target endpoint.&lt;/P&gt;
&lt;P&gt;3. Reproduce the issue, then:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; • Review the intermediate &lt;STRONG&gt;CSV&lt;/STRONG&gt; files&lt;BR /&gt;&amp;nbsp; &amp;nbsp; • Examine the &lt;STRONG&gt;verbose task log files&lt;/STRONG&gt; (&lt;A href="https://community.qlik.com/t5/Knowledge/How-to-decrypt-Qlik-Replicate-verbose-task-log-files/ta-p/1862114" target="_blank" rel="noopener"&gt;decrypt them if required&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;This should help identify where and why the NULL values are introduced.&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;BR /&gt;John.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 08:48:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540744#M15765</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2026-01-13T08:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540806#M15767</link>
      <description>&lt;P&gt;Thanks for your quick response,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the TRY_CAST and why I thought it was the culprit, is because TRY_CAST in Snowflake (as well as SQL Server) tries to case a string expression to the specified data type and if it is unable to cast it to that data type results in a NULL.&amp;nbsp; It seemed reasonable to assume since I know that the source data in the source table did not have null values (More information on that can be found here:&amp;nbsp;&lt;A href="https://docs.snowflake.com/en/sql-reference/functions/try_cast" target="_blank" rel="noopener"&gt;TRY_CAST | Snowflake Documentation&lt;/A&gt;).&lt;/P&gt;
&lt;P&gt;We did follow your recommendations and enable verbose logging for&amp;nbsp;&lt;STRONG&gt;SOURCE_CAPTURE&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;TARGET_APPLY&lt;/STRONG&gt;&amp;nbsp;and&amp;nbsp;&lt;STRONG&gt;keepCSVFiles&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;keepErrorFiles&lt;/STRONG&gt; on the target endpoint.&amp;nbsp; Looking at the files we found that it was not sure turning the&amp;nbsp;&lt;SPAN&gt;DatabaseInsertDate to NULL, but all the columns were showing up as NULL even though the source had data in all the non-nullable columns.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;After some testing and trying different options we found that&lt;STRONG&gt; removing the column store index from the source table in SQL server allowed the incremental changes to flow through&lt;/STRONG&gt; without any issues.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks again.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 00:04:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540806#M15767</guid>
      <dc:creator>Lenka72</dc:creator>
      <dc:date>2026-01-14T00:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540808#M15768</link>
      <description>&lt;P&gt;Glad to hear that! Thank you for your outstanding support!&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/333775"&gt;@Lenka72&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, This is known limitation of SQL Server itself:&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/sql/t-sql/statements/create-columnstore-index-transact-sql?view=sql-server-ver15#:~:text=Replication%20with%20clustered%20columnstore%20indexes.%20Nonclustered%20columnstore%20indexes%20are%20supported.%20For%20more%20information%2C%20see%20sp_addarticle." target="_blank" rel="noopener"&gt;Replication with clustered columnstore indexes is NOT Supported&lt;/A&gt;. Nonclustered columnstore indexes are supported.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;John.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 01:36:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540808#M15768</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2026-01-14T01:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540915#M15779</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;, &lt;SPAN&gt;These tables causing issues have Nonclustered Columnstore Indexes (NCCI) and&amp;nbsp;In general, we do not have or use Clustered Columnstore Indexes on any of the tables.&lt;BR /&gt;cc:&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/333775"&gt;@Lenka72&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 04:54:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540915#M15779</guid>
      <dc:creator>Rak</dc:creator>
      <dc:date>2026-01-15T04:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540918#M15780</link>
      <description>&lt;P&gt;Thanks for the update&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/166470"&gt;@Rak&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/333775"&gt;@Lenka72&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;Do you mind to share a NCCI sample table definition? I'd like to confirm the behavior in my labs.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 06:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540918#M15780</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2026-01-15T06:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540970#M15782</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/115309"&gt;@john_wang&lt;/a&gt;&amp;nbsp;the table structure is simple (again the named have been changed to protect the innocent):&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CREATE TABLE [dbo].[MyLinkTable]
(
[NumericColumn1] [int] NOT NULL,
[NumericColumn2] [int] NOT NULL,
[NumericColumn3] [int] NOT NULL,
[DatabaseInsertDate] [datetime] NULL,
[DatabaseUpdateDate] [datetime] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AssignmentLink_Period] ADD CONSTRAINT [PK_AssignmentLink_Period] PRIMARY KEY CLUSTERED ([NumericColumn2], [NumericColumn1]) WITH (FILLFACTOR=90) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IDX_AssignmentLink_Period_All] ON [dbo].[AssignmentLink_Period] ([NumericColumn2], [NumericColumn3], [NumericColumn1]) WITH (FILLFACTOR=90) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IDX_AssignmentLink_Period_AssId_NumericColumn1_NumericColumn3] ON [dbo].[AssignmentLink_Period] ([NumericColumn2], [NumericColumn1]) INCLUDE ([NumericColumn3]) WITH (FILLFACTOR=90) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_AssignmentLink_Period_NumericColumn3] ON [dbo].[AssignmentLink_Period] ([NumericColumn3]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_AssignmentLink_Period_NumericColumn1_NumericColumn3] ON [dbo].[AssignmentLink_Period] ([NumericColumn1], [NumericColumn3]) INCLUDE ([NumericColumn2]) WITH (FILLFACTOR=90) ON [PRIMARY]
GO
CREATE NONCLUSTERED COLUMNSTORE INDEX [CSIX_AssignmentLink_Period__Composite1] ON [dbo].[AssignmentLink_Period] ([NumericColumn2], [NumericColumn3], [NumericColumn1]) ON [PRIMARY]
GO&lt;/LI-CODE&gt;
&lt;P&gt;As you can see here the table is very simple but is frequently updated and will have a lot of data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have also tested recreating the column store index and after recreating it seems to still be working, and we were able to see the incremental updates and inserts flow through and properly get applied on the target.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have now been advised to update our Microsoft ODBC Drivers to 18.3.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&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;&lt;STRONG&gt;P.S.&lt;/STRONG&gt; I will try to keep this conversation up to date on our findings as we continue testing in case other members of the community might find this information helpful.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 19:19:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540970#M15782</guid>
      <dc:creator>Lenka72</dc:creator>
      <dc:date>2026-01-15T19:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: TRY_CAST resulting in a NULL value and causing the NULL result in a non-nullable column error</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540982#M15784</link>
      <description>&lt;P&gt;Thank you for your outstanding support!&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/333775"&gt;@Lenka72&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, the table works fine in my labs of a SQL Server to Snowflake task whatever some columns values are NULL or not NULL, the task runs smoothly. For example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="john_wang_0-1768539284685.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186251i9C278D514BB54112/image-size/large?v=v2&amp;amp;px=999" role="button" title="john_wang_0-1768539284685.png" alt="john_wang_0-1768539284685.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 05:24:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/TRY-CAST-resulting-in-a-NULL-value-and-causing-the-NULL-result/m-p/2540982#M15784</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2026-01-16T05:24:29Z</dc:date>
    </item>
  </channel>
</rss>

