首页 > 数据库技术 > 详细

oracle导入数据

时间:2021-04-18 22:28:52      阅读:33      评论:0      收藏:0      [点我收藏+]

 

 

 

创建用户

create user Irving identified by 123456;

 

 

创建表空间

CREATE TABLESPACE Irving
datafile E:\oracle\oradata\orcl\Irving.DBF
size 1500M
autoextend on next 5M maxsize 3000M;

 

分配表空间

alter user Irving quota unlimited on Irving;

 

授权

grant connect,resource to Irving;
grant create any sequence to Irving;
grant create any table to Irving;
grant delete any table to Irving;
grant insert any table to Irving;
grant select any table to Irving;
grant unlimited tablespace to Irving;
grant execute any procedure to Irving;
grant update any table to Irving;
grant create any view to Irving;

 

导入数据

imp  system/123456 file=G:\checkdb_20210128.dmp tablespaces=Irving fromuser=checkdb  touser=Irving log=e:\a.txt

 

https://blog.csdn.net/lsyuan1989/article/details/50418665

https://blog.csdn.net/funnyfu0101/article/details/50219995 

 

oracle导入数据

原文:https://www.cnblogs.com/shizhengwen/p/14674070.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!