Hi,
I'm having some problems with temporary table in DB2, web application, dll and stored procedure.
Here is the environment:
Machine1 - BD Server
Machine2 - Web (IIS and web application).
During the execution of the web application in a C# DLL, it calls a Delphi DLL (that creates all the temporary tables) and calls a stored procedure (sp1 who calls sp2 e it goes on). Inside the sp, a Delete statement from the temporary table is executed, but when it will be done an error occurs saying that the temporary table doesn't exists.
Does anyone have any idea why it's happening? Could it be some session problem (the creation of the temporary table occurs on one session inside the web machine, and the execution of the SP occurs in another session on the BD machine) ?
Does DB2 have any "global" temporary table like MS SQL Server (represented by ##), and if it exists, it will help me??
Thank you.
[]s