I usually write my procedures in SQL Server 2000 but I need to start writing them for Oracle and DB2. One issue that concerns me is how table variables are handled by Oracle.
For example;
Would the above be possible in Oracle 8+?
I haven't installed Oracle on my machine yet, so I don't have any documentation to verify this.
Thanks in advance
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook
For example;
Code:
DECLARE @myTable(
f1 integer,
f2 varchar(256),
f3 smallint)
INSERT INTO @myTable
SELECT ... a whole bunch of records ...
SELECT * FROM @myTable
Would the above be possible in Oracle 8+?
I haven't installed Oracle on my machine yet, so I don't have any documentation to verify this.
Thanks in advance
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook