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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
agigliotti
Partner - Champion
Partner - Champion

bundle load and drop table issue

Hello,

I'm facing the problem with bundle load table that is being deleted after any drop table statement.

ex.

TAB_1:

Bundle LOAD * INLINE [

    Image Name, Image Location

    Up, images/FrecciaSu.png

    Down, images/FrecciaGiu.png

];

...

...

...

DROP Table B;

After the drop table also the TAB_1 table named as "$orphan_Image Name" is deleted.

I think this is not the expected behavior.

I tried with both version 11.20 and 12.0

Someone can explain me ?

Many thanks in advance.

Best Regards

Andrea

11 Replies
Not applicable

To add, my tests confirm the same thing.

Another workaround is to do a resident after the bundle info load. This also preserves the images but at least now in the load order you want

Temp:

BUNDLE INFO

LOAD

     ImageName,

     ImageLocation

FROM ...

Final:

LOAD *

RESIDENT Temp;

DROP TABLE Temp;

This is a bug and will log it if this has not been done already

Not applicable

Don't drop temp

So

Temp:

BUNDLE INFO

LOAD

     ImageName,

     ImageLocation

FROM ...

Final:

LOAD *

RESIDENT Temp;