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

explain binary load and inline load in Qlikview???

Hi Friends,

Can any explain the binary load and inline load.

Thanks&Regards

Ramesh

1 Solution

Accepted Solutions
israrkhan
Specialist II
Specialist II

Binary Load:

The binary statement is used for loading the data from another QlikView document, It does not load the layout information.  it can only be put as the first statement of a script. The syntax is:

Examples:

Binary c:\qv\customer.qvw;

Inline:

inline is used if data should be typed within the script, and not loaded from a file.

like below:

Load * INLINE [

CUSTOMER, SALE, COUNTRY

A , 2000, US

B, 2500, UK

C, 3000, CH

];

Inline load are just hardcoded values in the script..

hope it helps.....

View solution in original post

3 Replies
israrkhan
Specialist II
Specialist II

Binary Load:

The binary statement is used for loading the data from another QlikView document, It does not load the layout information.  it can only be put as the first statement of a script. The syntax is:

Examples:

Binary c:\qv\customer.qvw;

Inline:

inline is used if data should be typed within the script, and not loaded from a file.

like below:

Load * INLINE [

CUSTOMER, SALE, COUNTRY

A , 2000, US

B, 2500, UK

C, 3000, CH

];

Inline load are just hardcoded values in the script..

hope it helps.....

Not applicable
Author

Hi Israrkhan,

Thank you.

israrkhan
Specialist II
Specialist II

if got the answer, than mark as correct answer to close the thread..