Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tOracleTableList

my requirement is load all table with same structure into one target table  i'm taking table list and input table and connection component but the issue is in the tablelist component at where clause i can't understand like tablename not like '%%'" and in input row at global variables also please explain this issue

Labels (2)
1 Reply
Anonymous
Not applicable
Author

Hello,

tOracleTableList is used to iterate all tables of the specify connection.

First of all you should really explicitly reference your columns in your query so that if your db table changes somehow, your Talend component will still pick up the same data. But that aside, your query needs to be more like this.....

 

"select * from "+((String)globalMap.get("tOracleTableList_1_CURRENT_TABLE"))

 The work flow looks like:tOracletableList--iterate--tOracleInput--main—tOracleOutput.

Best regards

Sabrina