Type - Model: 9406 - 520
i5/OS version: 5 Release 4 Modification 0
I need to be able to create a script that will allow me to store the
results of a stored proc into a session temp table. I need to be able
to do this in a script, not a stored procedure.
Something like this:
SELECT INTO Session.TempTab le (CALL MyProc('12345') );
SELECT * FROM Session.TempTab le WHERE Column1 = 'A';
MyProc already exists and I don't have the luxury of modifying it in
any way. Is this possible?
i5/OS version: 5 Release 4 Modification 0
I need to be able to create a script that will allow me to store the
results of a stored proc into a session temp table. I need to be able
to do this in a script, not a stored procedure.
Something like this:
SELECT INTO Session.TempTab le (CALL MyProc('12345') );
SELECT * FROM Session.TempTab le WHERE Column1 = 'A';
MyProc already exists and I don't have the luxury of modifying it in
any way. Is this possible?
Comment