EXPERT RESPONSE
I am not sure why your SYS and SYSTEM accounts had their password changed. The import utility should not have done this. But to fix it, simply sign on to the database server as an Administrator (Windows) or a member of the DBA group (UNIX/Linux). Then type the following:
sqlplus /nolog
connect / as sysdba
You will now be able to change your SYS and SYSTEM passwords using the ALTER USER command:
ALTER USER sys IDENTIFIED BY foobar;
|