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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to get table from binary load qvw data

hi experts,

i have qvw with binary load i want add some values to the already existed column in binary load? can any one help me on that..

thanks in advance....

regards

siva

2 Replies
settu_periasamy
Master III
Master III

Hi siva,

You can try to use 'Resident' and add your column or concatenate your data..

e.g

Binaray Test.Qvw;

NewTable:

Load Field1,

        Fied2,

        Field 3 as NewField

Resident OldTable;

Drop Table OldTable;

HirisH_V7
Master
Master

Hi ,

Binary [test (1).qvw];

RENAME Table Customer to Partner;

DROP Table Vendor;

DROP Field ID2;

&

You can get the Whole tables Data From Front End,

Create a table Box -> Add All the Fields or Your Required Fields -> You can Export that Data.

HTH,

Hirish

HirisH