For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
Hello!
is it possible to create a local temporary table with the structure of another table?
Without specifying each column,
Not like that:
CREATE TABLE #tempSessionC ( Column1 INT NOT NULL , Column2 NVARCHAR(4000) );
But something like
CREATE TABLE #tempSessionC otherTable%type
Thanks in advance for your help
frenchcancan