Oracle query
-
Hi all, How to insert values to a temptable by executing a storedprocedure... Ex :- INSERT INTO TempYearEndBal exec BLYearEndLeaveTcktBalRep; Getting error while trying to insert the values to "TempYearEndBal" by executing the SP "BLYearEndLeaveTcktBalRep"... can anybody help me to come out from this issue... Thanks in Advance...
-
Hi all, How to insert values to a temptable by executing a storedprocedure... Ex :- INSERT INTO TempYearEndBal exec BLYearEndLeaveTcktBalRep; Getting error while trying to insert the values to "TempYearEndBal" by executing the SP "BLYearEndLeaveTcktBalRep"... can anybody help me to come out from this issue... Thanks in Advance...
Not sure about Oracle but you cannot do this in SQL Server (and I would be surprised if Oracle supports this). In SQL Server I would change your temptable to a global temp table and do the insert in the BLYearEndLeaveTcktBalRep proc.
-
Not sure about Oracle but you cannot do this in SQL Server (and I would be surprised if Oracle supports this). In SQL Server I would change your temptable to a global temp table and do the insert in the BLYearEndLeaveTcktBalRep proc.