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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] How to move Salesforce boolean type fields into Teradata

I am trying to create a job that pulls data from Salesforce and inserts into a new table in Teradata. It always fails whenever I try to pull a field with a boolean type. There is no corresponding equivalent in Teradata. If I try to edit the Teradata schema to push it in as an integer or a char field it still fails. What do I need to do to convert boolean data type to a field type that can be loaded into Teradata?
Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi
You can simple convert boolean type to Integer/int type on tMap, for example:
row1.columnName==true?1:0
Shong

View solution in original post

1 Reply
Anonymous
Not applicable
Author

Hi
You can simple convert boolean type to Integer/int type on tMap, for example:
row1.columnName==true?1:0
Shong