1.9i version command(9i version contains a user taoTest,which 11g version not contain):
exp system/* file=d:\exp_full.dmp full=y;
2.11g version command(create taoTest user which same as 9i version):
create user taoTest identified by taoTest;
grant sysdba to taoTest;
3.11g version command:
imp system/* file=d:\exp_full.dmp full=y;
Following above three commands, there is an error
“taoTest user not exist”
How to solve this problem?