Alteryx Designer Desktop Knowledge Base

Definitive answers from Designer Desktop experts.

TDCE-34: First column has NULL value when appending data in an Amazon Redshift table that contains a column with attribute IDENTITY(seed, step)

ntobon
Alteryx
Alteryx
Created

Issue

 

When you try to insert a record to an Amazon Redshift table which has a column with attribute IDENTITY(seed, step), the record is inserted fine, but the value of the first column is NULL instead of the value being passed into the Output Data tool. 

 

Environment Details

 
  • Alteryx Designer
    • All Versions.
  • Amazon Redshift
  •  Drivers 
    • Amazon Redshift (x64) version 1.04.45., 1.04.27. 
    • SIMBA Amazon Redshift ODBC Driver version 1.04.41.1000, 1.04.56.1000

In below example, the value passed for first column 'payer' is CVS. When you run the workflow, the record is inserted fine. The Output Data tool shows the correct value for first column ‘payer:

image.pngimage.png


However, if you query the table you will notice that the first column has value [Null] instead of the value passed (CVS in this example). The other columns have the correct values.

image.pngimage.png

Cause

 

Defect: TDCE-34
Status: Open.



Resolution

 

Defect TDCE-34 is target for resolution in future release.

 






 

Additional Resources

  • IDENTITY(seed, step): Clause that specifies that the column is an IDENTITY column. An IDENTITY column contains unique autogenerated values. The data type for an IDENTITY column must be either INT or BIGINT. When you add rows using an INSERT or INSERT INTO [tablename] VALUES() statement, these values start with the value specified as seed and increment by the number specified as step.