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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Binary load from Qlik Sense to Qlik View

Hello everybody,

I've only ever worked in Qlik Sense 'till now, but I now have the chance to learn how to use Qlikview. In Qlik Sense I've done a couple of binary loads from a qlikview app.

My question is- can you do a binary load from a qlik sense app to qlikview? If so, how do I write the code for it? I've tried doing it, but I'm sure I'm doing something wrong since It doesn't work. Anybody care to help? 😃

Sincerely,

Betty

1 Reply
asgardd2
Creator III
Creator III

Hello!

    I think this is not possible with binary load(printscreen in attachment). You can store all tables to qvd files and after load them to QliKView.

Example script to store all tables in qvd:

  let numTables = NoOfTables();
for i=1 to $(numTables)
  let tt = TableName($(i));
  store table [$(tt)] into $(tt).qvd;
next