Hi
I'm Creating one # table(#temp) through source code, then insert some values into the #table and later i'm using the same # table in a procedure to retrieve the values and then drop the same #table in procedure .
But i'm not able to retrieve the values from #table in procedure. and it is retireving an error sometimes or empty values
From my observation, Since the #table is creating through powerbuilder source code using SQLCA, it is not synchronizing the with the same #table used in procedure and moreover my appliation is user by multiple users so in multiple sessions the same #table may not sync with the table used in procedure.
Moreover, my requirement is clearly to use # table only...
So if there is any way to use the same # table in source code and in the procedure ... Needs to work in multiple sessions... i.e. for one session, the # table is deciated to the corresponding user who is using the # table from source code to procedure...
Please look over it and let me know your suggestions.