Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] tOracleOutput with Where clause

Hi,
I have a problem with the tOracleOutput Element, before the data should be update or insert in the database, I only want to update data of the outputdatabase which fulfils a where clause.
Right now I just solve this probleme by joining the new and old data which fulfils the where clause and than update the outputdatabase. The problem is the performance is really weak, have you any Ideas how I can accomplish this better?
Job Design:
tOracleInput ->
tMap -> tOracleOutput
tOracleInput ->
Thanks for your help.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Yes you can use tOracleRow to do that.
You have to specify your update statement (with your needed where clause) as a prepared statement and in the advanced section you can bind your flow columns to the prepared statement parameters.

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Yes you can use tOracleRow to do that.
You have to specify your update statement (with your needed where clause) as a prepared statement and in the advanced section you can bind your flow columns to the prepared statement parameters.
Anonymous
Not applicable
Author

Yeah, thank you it works!