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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Temporary tables with tMSSQLRow

Hi, 

What's the best way to create, update and delete temporary MSSql tables in Talend? 

I'm trying to use the tMSSqlRow component, but my result set is always blank. My queries do not throw any errors when running and takes approximately the same time to complete as it does directly in the database.  The tCreateTable component does not have the temporary table option for the MSSql database type.

I am using Talend v6.2

Thanks

Labels (2)
1 Reply
Anonymous
Not applicable
Author

Hello,

The tCreateTable has the function of creating a temp table in MS Sql Server .Becuase If table name starts with or # the table is assumed as a temp table.(MSSQL: CREATE TABLE ##AAA)

If you want to use a temp table, there must be t<DB>Connection component used in your workflow. The temp table would be destroied after connection closed.
Best regards

Sabrina