I apologize to everyone as this is a duplicate post.
2079619
My initial thread(started yesterday)was in 'Database General' and didn't get much response today. Where do i post questions on EXPORT/IMPORT utilities?
Anyway, here is my problem:
I want to take the export dump of itemrep schema in orcl database (in a remote machine). I have an Oracle server (10G Rel2) running in my local Windows machine. I have created a user john with necessary EXPORT/IMPORT privileges in my local db. Then i created a Directory object,ie a folder named datapump in my local hard drive and granted READ WRITE privileges to john.
So john, who is a user in my local machine's oracle db is going to run the expdp utility.
expdp john/jhendrix@
my_local_db_alias SCHEMAS=itemrep directory=datapump logfile=itemrepexp.log
The above command will fail because it will look for itemrep schema inside my local db, not the remote db where the itemprep is actually located. And you can't qualify the schemaname with its db in the SCHEMAS parameter (like SCHEMAS=itemrep@
orcl).
Can anyone provide me a solution for this?