Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
Don't drop temp
So
Temp:
BUNDLE INFO
LOAD
ImageName,
ImageLocation
FROM ...
Final:
LOAD *
RESIDENT Temp;