Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
rbabu1607618001
Contributor
Contributor

Talend Informix TDBRow Not Working

Hi Guys,

We are trying to connect to informix database and load the data to our warehouse.

  • In meta data we create Informix Connection
    • Got the table Schema
      • Used table schema as tbinputinformix and moved the date to tboutput [Destination sql server]

Above scenario works fine without issues.

Now we did implemented same approach using TDBRow(Informix), and passed the select statement in it, now it failed

The out we got on checking with tlogrow was

Columnanme

NULL

Works fine with TDBINPUT

(Informix)

, but fails with TDBROW(Informix)

Any thoughts?

Regards,

Ram

Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Hello,

tXXXRow component is usually used to any type of sql statement excepts select statement, we use txxxInput component to execute a select statement, if you use use tXXXRow to execute a select statement, it returns a record set, and you are required to use a tParseRecordSet component after tXXXRow to parse the record sets.

Best regards

Sabrina

View solution in original post

2 Replies
Anonymous
Not applicable

Hello,

tXXXRow component is usually used to any type of sql statement excepts select statement, we use txxxInput component to execute a select statement, if you use use tXXXRow to execute a select statement, it returns a record set, and you are required to use a tParseRecordSet component after tXXXRow to parse the record sets.

Best regards

Sabrina

Amanda2569
Contributor
Contributor

Thanks for the step by step tutorial. Works like a charm!

official website