--用oracle系統權限的賬號 登陸
-- 1.創建用戶create user u_name identified by "u_password";--2.賦予權限grant dba, resource, connect to u_name; grant create session to u_name;grant create table to u_name;grant create view to u_name;grant create tablespace to u_name;grant unlimited tablespace to u_name;grant select any table to u_name;grant select any dictionary to u_name;--3.創建目錄 dictionarycreate directory directory_name as 'D:/oracleEnv/Oracle/product/11.2.0/db/backup'; --路徑可以自己指定--4.賦予目錄權限GRANT read,write ON DIRECTORY directory_name TO u_name;--5.創建表空間create tablespace table_space_namedatafile 'D:/oracleEnv/Oracle/product/11.2.0/dbhome_1/oradata/table_space_name.DBF'size 2500Mautoextend on next 500M maxsize 12000M; --6.修改表空間配置ALTER USER table_space_name DEFAULT TABLESPACE u_name;--8.查看表空間select tablespace_name , file_id,bytes from dba_data_files where tablespace_name='my_table_space_name';-- 9.導入數據-簡單版 impdp u_name/u_password@ORCL dumpfile=file_path full=y table_exists_action=replace--常用版impdp u_name/u_password@ip_address/space_name directory=my_director full=y dumpfile=my_dmp_file.DMP logfile=my_dmp_file.log table_exists_action=replace;--高級版impdp u_name/u_password@ip_address/space_name directory=my_director full=y dumpfile=my_dmp_file.DMP logfile=my_dmp_file.log[remap_schema=user_1:user_2] [remap_tablespace =table_space_1:table_space_2] [table_exists_action=replace]
總結
以上所述是小編給大家介紹的oracle表空間的創建及dmp 文件的導入,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VeVb武林網網站的支持!
新聞熱點
疑難解答