Oracle将远程库复制到本地库

1.将远程地址某用户下的数据库导出一份dmp文件

exp username/[email protected]:1521/orcl file=C:/database.dmp

2.查询表空间的物理地址路径

select
tablespace_name, 
	file_id, file_name, 
	round(bytes/(1024*1024),0) total_space 
from 
	dba_data_files 
order by tablespace_name;

3.如果发现要导入的表空间和用户在之前存在,先删除之前的,一般来说用户和表空间名称一样

drop user user_name cascade;

drop tablespace tablespace_name including contents and datafiles cascade constraint;

4.创建数据表空间

create tablespace tablespace_name

logging  
 
datafile 'C:\oracle\product\10.2.0\oradata\orcl\tablespace_name.dbf' 
 
size 200m  
 
autoextend on  
 
next 200m maxsize 30480m  
 
extent management local;

5.创建用户并指定表空间

create user username_here identified by password_here default tablespace tablespace_here;

6.给用户授予权限

grant connect,resource,dba to username_here;

7.导入dmp到数据库

//imp 用户名密码ip端口服务名 要导入的dmp文件地址 fromuser是源dmp文件里的用户 touser是要更新的用户

imp username/password@orcl file=C:/database.dmp fromuser=fromusername touser=tousername

猜你喜欢

转载自blog.csdn.net/qq_42003702/article/details/127771740