Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible to load resident from a resident ?
I have a qvw (let's call it ReportBase) consisting of several tables and qvd's.
I use this qvw to connect to and update several qvw applications that users access.
I have already resident load in the ReportBase for the tables I read in as qvd. In one of the end-user applications I now need to load some of the data in one of the tables loaded as resident but not all. Is it possible to load resident from a resident (I get table not found no matter what I do) ?
Yes, sure.
MyTable:
load A, B, A+B as C resident table1;
MyTable2 :
Noconcatenate load A,B,C resident MyTable;
drop table Mytable;
Yes, sure.
MyTable:
load A, B, A+B as C resident table1;
MyTable2 :
Noconcatenate load A,B,C resident MyTable;
drop table Mytable;
Got it ! Thanks you ever so much.
i think you can reload a resident whitout problems....did you try that?