你的意思是要用管理員使用者新建普通使用者,然後將相應的dmp資料檔案匯入到這個使用者下,是嗎?
新建指令碼語句:
-----------------SYS建立使用者
CREATE USER dandeliondshtest PROFILE "DEFAULT" IDENTIFIED BY dandeliondshtest DEFAULT
TABLESPACE "USERS" TEMPORARY
TABLESPACE "TEMP" ACCOUNT UNLOCK;
GRANT SELECT ON "SYS"."V_$SESSION" TO dandeliondshtest;
GRANT "CONNECT" TO dandeliondshtest;
GRANT "DBA" TO dandeliondshtest;
GRANT "RESOURCE" TO dandeliondshtest;
GRANT CREATE ANY sequence TO dandeliondshtest;
CREATE USER dandelionids IDENTIFIED BY dandelionids
grant create session to dandelionids;--授予zhangsan使用者建立session的許可權,即登陸許可權
grant unlimited tablespace to dandelionids;--授予zhangsan使用者使用表空間的許可權
grant create table to dandelionids;--授予建立表的許可權
匯入dmp檔案是在dos命令視窗中來執行的,impdp 使用者名稱/密碼@IP/pdborcl dumpfile=bak_dir:檔名.DMP nologfile=Y (單擊回車)
你的意思是要用管理員使用者新建普通使用者,然後將相應的dmp資料檔案匯入到這個使用者下,是嗎?
新建指令碼語句:
-----------------SYS建立使用者
CREATE USER dandeliondshtest PROFILE "DEFAULT" IDENTIFIED BY dandeliondshtest DEFAULT
TABLESPACE "USERS" TEMPORARY
TABLESPACE "TEMP" ACCOUNT UNLOCK;
GRANT SELECT ON "SYS"."V_$SESSION" TO dandeliondshtest;
GRANT "CONNECT" TO dandeliondshtest;
GRANT "DBA" TO dandeliondshtest;
GRANT "RESOURCE" TO dandeliondshtest;
GRANT CREATE ANY sequence TO dandeliondshtest;
CREATE USER dandelionids IDENTIFIED BY dandelionids
grant create session to dandelionids;--授予zhangsan使用者建立session的許可權,即登陸許可權
grant unlimited tablespace to dandelionids;--授予zhangsan使用者使用表空間的許可權
grant create table to dandelionids;--授予建立表的許可權
匯入dmp檔案是在dos命令視窗中來執行的,impdp 使用者名稱/密碼@IP/pdborcl dumpfile=bak_dir:檔名.DMP nologfile=Y (單擊回車)