最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
oracle用imp导入dmp文件的教程
时间:2022-06-29 09:25:16 编辑:袖梨 来源:一聚教程网
oracle命令行登录
sqlplus 用户名/密码
创建用户
create user 用户 identified by 密码 ;
创建表空间
create tablespace 表空间名 datafile 'D:oracle11oradata库名XXX.pdf' size 200M autoextend on next 50m maxsize 1000m ;
用户授权
grant connect ,resource to 用户名 ;
用创建的用户名和密码登录oracle数据库
conn 用户名/密码
最该权限授权
用最高权限账号登录
grant dba to 用户名
imp导入dmp
- 该命令需要在cmd的dos命令窗口直接执行,而不是sqlplus.exe
- full=y 是导入文件中全部内容
- ignore=y相当于,如果没有的表,创建并倒入数据,如果已经有的表,忽略创建的,但不忽略倒入
imp 用户/密码 file=文件路径 full=y ignore=y;
相关文章
- linux一窜数字后面的逗号怎么去掉? 09-26
- linux重置密码提示与用户名相似该怎么解决? 09-26
- linux系统怎么挂载光驱? 09-26
- 分享20个 Unix/Linux 命令技巧 09-26
- Linux集群内SSH免密码访问的快速配置方法 09-26
- deepin怎么禁止自动锁屏? 09-26