Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I create a Temporary Table in Oracle 8.1.7

Status
Not open for further replies.

JONBOY74

Technical User
Sep 11, 2001
36
US
Hi all

I'm trying to create a Global Temporary Table like so:

CREATE GLOBAL TEMPORARY TABLE
TEST (NAME, CHAR (10))
ON COMMIT PRESERVE ROWS;

But I get the error below, why & how to I get round it?

ORA-00406:COMPATIBLE parameter needs to be 8.1.0.0.0 or greater


Many Thanks

Jon
 

Check the compatibilty parameter..

May be oracle system is not allowing this operation since the compatibility specified is of ower version...

Try to change the compatibilty parameter It may work

bins

 
The compatible paramter is set in the initSID.ora file, which you may find in $ORACLE_HOME/dbs.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top