oracle表空间的创建及dmp 文件的导入(推荐)
程序员文章站
2022-07-06 16:51:30
--用oracle系统权限的账号 登陆
-- 1.创建用户
create user u_name identified by "u_password";
--...
--用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.创建目录 dictionary create 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_name datafile 'd:\oracleenv\oracle\product\11.2.0\dbhome_1\oradata\table_space_name.dbf' size 2500m autoextend 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 文件的导入,希望对大家有所帮助
上一篇: 解决Oracle RMAN删除归档日志不释放问题的方法
下一篇: Oracle安装卸载图文教程详解