Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Binary Loading

I have a qvw file with images i would like to use in my application.  Is there a way to load the images only without other tables using  a binary load? Or is there another way around this requirement?

Thanking you in advance.

regards

1 Solution

Accepted Solutions
maxgro
MVP
MVP

binary load load all tables

if you don't want some of the tables loaded,

after binalry load use

drop tables table1, table2, .....

View solution in original post

9 Replies
maxgro
MVP
MVP

binary load load all tables

if you don't want some of the tables loaded,

after binalry load use

drop tables table1, table2, .....

Not applicable
Author

if images is just a table in one of your applications. You can STORE it as QVD file then load this new QVD in your script load statement.

STORE Images into Images.qvd (qvd);

Anonymous
Not applicable
Author

Thank you very much, however, i am getting a script error as per the attached.  Please assist further.

Regards.

Chris

maxgro
MVP
MVP

maybe you try to drop a table and that table doesn't exist

binary load .....;

drop Table TableA, TableB, NotExistentTable;

Not applicable
Author

There could be just an error in your script, a missed semicolon, or a closing braces etc.

Since it is not giving you table name to drop.

Or, After binary load you might be misspelling table names to be dropped.

They are case sensitive, table names field names should matched exactly.

Comment DROP statement and see what is happening and what are the final table names after Binary Load

Anonymous
Not applicable
Author

Many thanks, it worked, i had included invalid tables in the drop statement.

Regards.

Anonymous
Not applicable
Author

Many thanks, i had invalid tables in the drop tables statement.

Regards.

Chris

Not applicable
Author

Good job ..

I don't get credit 🙂

Anonymous
Not applicable
Author

Ok noted