Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

[resolved] Identity Column

Hi all,
How to load the data into red shift tables with identity column.
I am getting below error.
Exception in component tRedshiftOutput_1
org.postgresql.util.PSQLException: ERROR: cannot set an identity column to a value
Thanks,
Raja.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Identity columns are typically columns which should not be written by the insert statement instead the value will be taken from an implicit sequence by the database it self.
You should remove this column from the schema and let the database fill this column. 

View solution in original post

2 Replies
Anonymous
Not applicable

Identity columns are typically columns which should not be written by the insert statement instead the value will be taken from an implicit sequence by the database it self.
You should remove this column from the schema and let the database fill this column. 
Naresh3
Contributor
Contributor

Thanks.. Jlolling