欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ORACLE IMP导入

程序员文章站 2023-12-31 22:49:16
ORACLE IMP导入oracle命令行登录sqlplus / as sysdba创建表空间create tablespace 表空间名 datafile '数据文件存放路径' size 200M AUTOEXTEND ON NEXT 5 M MAXSIZE UNLIMITED;例: CREATE TABLESPACE test DATAFILE 'F:\dev\oracle\test.DATA' size 200 M AUTOEXTEND ON NEXT 5 M MAXSIZE...

ORACLE IMP导入

  1. oracle命令行登录
sqlplus / as sysdba
  1. 创建表空间
create tablespace 表空间名 datafile '数据文件存放路径' size 200M AUTOEXTEND ON NEXT 5 M MAXSIZE UNLIMITED;

例:

 CREATE TABLESPACE test DATAFILE  'F:\dev\oracle\test.DATA' size 200 M AUTOEXTEND ON NEXT 5 M MAXSIZE UNLIMITED;
  1. 创建用户
 create user 用户名 identified by 密码;

例:

create user test identified by root default tablespace test;
  1. 用户授权
grant connect ,resource,dba to 用户名 ;
  1. 退出sqlplus(windws Control+C),在命令行界面使用imp导入dmp
    imp 用户/密码 file=文件路径 full=y ignore=y;
    例: imp test/root file=F:\dev\oracle\test.dmp full=y ignore=y;
  2. IMP命令说明1
  3. 区分一个dmp文件是exp还是expdp导出的2

  1. IMP命令说明 ↩︎

  2. 区分exp与expdp导出 ↩︎

本文地址:https://blog.csdn.net/qq_39122985/article/details/108575494

相关标签: oracle 数据库

上一篇:

下一篇: