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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

binary load?


Hi  i have loaded application through binary , and i have in that application 100 table names,

my req is i want see all 100 table names ?

how?

2 Replies
maxgro
MVP
MVP

add a listbox with

$Table

datanibbler
Champion
Champion

Hi manojqlik,

you can use the NoOfTables() function to loop through all the tables in RAM (after you have executed the BINARY LOAD), like this

LET nooftab=NoOfTables();

for i = 1 to $(nooftab)
 
let a= TableName(0);

NEXT i

Then you can append the TAbleName() in every iteration to a little Dummy_Table (that you have to initiate before you start that loop)

HTH

Best regards,

DataNibbler