what is the equivalent of temporary table of sql server in oracle [message #37198] |
Wed, 23 January 2002 23:58  |
ksr
Messages: 112 Registered: January 2002
|
Senior Member |
|
|
Hi,
Can anyone give me the code equivalent to this in oracle pl/sql.
The below code is from sql server and i want to re create this in oracle pl/sql.its very urgent..
-- Create temp table that will store intermediate data before updating hrc_build_tree
CREATE TABLE #tblUpChain
(
UpID INT NOT NULL IDENTITY(1, 1),
DEPTID VARCHAR (11) NULL,
PARENTID varchar (11) NULL,
UpChain VARCHAR(255) NULL
)
-- Fill hrc_build_tree with dept_security data from pstreenode - intention is to then update the upchain field in the table
INSERT #tblUpChain (DEPTID, PARENTID)
|
|
|
|