The syntax of the bat-file for the creating database from the dump-file
684278May 22 2009 — edited May 22 2009Hi, guys.
Sorry for my English, I'm from Russia.
I have bat-file with the following content:
sqlplusw system/mypassword@orcl @anh.sql
imp anh/anh@orcl anh.dmp
It's necessary for me to import schema in the anh.dmp.
Is this bat-file has the right syntax?
The file anh.sql has the following content:
create user anh identified by anh;
grant connect, resource to anh;
grant create view to anh;
exit
And tell me please where is necessary to locate anh.dmp without direction of path to it?
Thanks,Viktor