欢迎来到代码驿站!

Oracle

当前位置:首页 > 数据库 > Oracle

oracle表空间的创建及dmp 文件的导入(推荐)

时间:2021-05-06 09:41:41|栏目:Oracle|点击:

--用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常见错误代码的分析与解决(一)

栏    目:Oracle

下一篇:oracle数据库定时任务dbms_job的用法详解

本文标题:oracle表空间的创建及dmp 文件的导入(推荐)

本文地址:http://www.codeinn.net/misctech/115929.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有