In MSSQL, you can declare a table variable (DECLARE @table TABLE), which is produced while the script is run and then removed from memory.
Does Oracle have a similar function? Or am I stuck with CREATE/DROPs that segment my hard drive?
|
2
|
In MSSQL, you can declare a table variable (DECLARE @table TABLE), which is produced while the script is run and then removed from memory. Does Oracle have a similar function? Or am I stuck with CREATE/DROPs that segment my hard drive?
|
||
|
|
|
|
Yes.
Ref: http://www.iselfschooling.com/syntax/OraclePLSQLSyntax.htm You might want to also take a look at Global Temporary Tables |
||
|
|
|
|
Oracle is not my forte, but table variables appear to be a subset of the Oracle Collection Variable |
||
|
|
|
|
Yes it does have a type that can hold the result set of a query (if I can guess what TABLE does). From ask Tom: your procedure may look like this:
where p_cursor is like a table type. As has been already answered there are plenty of options for storing result sets in Oracle. Generally Oracle PL/SQL is far more powerful than sqlserver scripts. |
||
|
|