Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
marco_puccetti
Partner - Creator
Partner - Creator

Binary Load

Hello, what's the binary load statement and how is it used for?

Thanks

Marco

2 Replies
Anonymous
Not applicable

A Binary Load uses another qvw as a data source and loads the entire data model.

See QV Desktop Help for syntax and example.

swuehl
MVP
MVP

Yes, the Help should give you a start:

Binary

The binary statement is used for loading the data from another QlikView document, including section access data. It does not load the layout information or variables. Only one binary statement is allowed in the script and it can only be put as the first statement of a script. The syntax is:

binary file

where:

file ::= [ path ] filename

Examples:

Binary customer.qvw;

Binary c:\qv\customer.qvw;

The path is the path to the file, either absolute, or relative to the .qvw file containing this script line.

Back to Script Statements and Keywords