ORA-00904: invalid column name [message #54205] |
Mon, 04 November 2002 22:20 |
Jeolieos
Messages: 5 Registered: October 2002
|
Junior Member |
|
|
Oh,my god!How can I export my db!
After drop and rebuild the JVM,ORA-06553 has gone.
But ORA-00904 comes.
Pls help me once more!
Log:
. . exporting table ... .. .. exported
. . exporting table PAGE_INFO 0 rows exported
. exporting synonyms
EXP-00008: ORACLE error 904 encountered
ORA-00904: invalid column name
EXP-00000: Export terminated unsuccessfully
Thanks!
|
|
|
|
|
Re: ORA-00904: invalid column name [message #54244 is a reply to message #54205] |
Wed, 06 November 2002 11:53 |
Grant
Messages: 578 Registered: January 2002
|
Senior Member |
|
|
There is a known issue with the removal of JVM in version 8.1.6. It doesn't completely remove it. If you are using 8.1.6 do this:
To run the script correctly, you will need to edit the RMJVM.SQL script and change line
"call rmjvm.run(true)" to "execute rmjvm.run(true)".
On Oracle8i 8.1.6 for Windows NT, the file rmjvm.sql does NOT exists! Create the file rmjvm.sql containing the following:
set serveroutput on
variable jvmrmaction varchar2(30) execute :jvmrmaction := 'FULL_REMOVAL';
@@jvmrm
execute rmjvm.run(true);
|
|
|