Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
Can anyone explain why this error is being occurred, loaded data is as follows:
ABC:
Load a as AA,b as BB resident Table1;
inner join
Load a as AA resident Table2;
Store ABC INTO ABC.qvd;
Do anyone have a solution to find the RC.
I not sure what exactly you want to achieve but I think the below code should guide you in the right direction:
ABC:
Load * Inline [
a,b
AA,BB
];
Load * Inline [
a
AA
];
Store ABC INTO C:\temp\ABC.qvd;
Hi Trdandamudi,
Thanks for the quick reply but the fields 'a' is already loaded in a table above to the code, i again need to rename that field and i need to join with other column which that columns is also pre loaded in a different table above to the code.
Thanks,
Nikhil.
Remove all temporary tables using a cleanup script. There could be temporary tables created by Qlik in memory which are not getting dropped correctly. You can create a simple subroutine to find all tables and drop ,except for the main tables you want. Call the clean up subroutine towards the end of your script .