Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am loading lots of tables into QV and Im naming them with
tablename:
LOAD .....
etc..
I would like to take the table names that I defined and put them all into a variable eg tablename, Is this possible?
Add a inline statement before or after loading a table
Ex: Table_List:
Load * Inline [
Table_Name
Table1
];
So that at the end of the execution you can have all the table names in a single table.
Using concat option you can set the table names into a variable. (Ex: concat( Table_Name, ';' ) )
Thanks for this is it possible to have the script TAB names as a value?