Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to load database tables dynamically using metadata ?

I would like to load database tables into qlikview dependent on the metadata of that database.

I want to load the metadata into an internal qlikview table and than loop through the internal qlikview table with the metadata.

How can I achieve this. This must be done during the reload.

I have written some pseudo code below

//Load Metadata

LOAD TableNames

FROM MetadataTable

WHERE ...

;

1 Reply
Not applicable
Author

<Continuation of former post>

// Loop through Tablenames

FOR EACH vTableName in MetadataTable. TableNames

LOAD * FROM $(vTableName);

Next vTableName

;