Oracle 导入 dmp 文件
程序员文章站
2022-03-04 13:01:03
...
Oracle 导入 dmp 文件
赋予导入数据库权限
需要sysdba登录赋予权限
GRANT IMP_FULL_DATABASE to username;
-- 例如
GRANT IMP_FULL_DATABASE to scott;
然后导入数据库
imp username/password@ip:port/servername file=db.dmp full=y ignore=y buffer=640000;
-- 例如
imp scott/tiger@localhost:1521/orcl file=E:/xxx.dmp full=y ignore=y buffer=64000;
上一篇: javascript怎么移除属性