|
Well, here is my
guess...
on the EXP: ORA-01036:illegal
variable name/number error:
if you are in archivelog mode
(find out with: select
log_mode from v$database;
), make sure that this query
returns a value of TRUE:
| CODE |
SELECT value FROM
v$parameter WHERE name = 'log_archive_start';
VALUE
--------------------------------------------------------------------------------
TRUE
1 row selected |
What can happen is you
create a new database with the
purpose of importing from some
source, and the import just
hangs and hangs. That is because
the logs fill up and cannot
switch until archiving takes
place.
This is a common human error
which may explain what is
happening to you.
|