我是靠谱客的博主 冷傲长颈鹿,最近开发中收集的这篇文章主要介绍oracle导入dmp文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

create user 用户名 identified by 口令[即密码];
create user xhmaximo identified by xhmaximo; 

grant connect, resource to 用户名;
grant connect, resource,dba  to xhmaximo  ; 
grant create trigger to xhmaximo  
grant create session to xhmaximo ; 
grant create sequence to xhmaximo  ;
grant create synonym to xhmaximo  ;
grant create table to xhmaximo  ;
grant create view to xhmaximo  ;
grant create procedure to xhmaximo ; 
grant alter session to xhmaximo  ;
grant execute on ctxsys.ctx_ddl to xhmaximo ;
grant create job to xhmaximo  ;
grant dba to xhmaximo  ;
alter user xhmaximo  default role all;


create tablespace MAXDATA datafile 'E:AdministratorvirtualoradataorclMAXDATA.DBF' size 200M autoextend on next 50m maxsize 20480m ;


alter user xhmaximo  default tablespace xhmaximo  quota unlimited on xhmaximo  ;

imp xhmaximo/xhmaximo@orcl  file =E:Oraclemaximo.dmp    full = y; 
 

最后

以上就是冷傲长颈鹿为你收集整理的oracle导入dmp文件的全部内容,希望文章能够帮你解决oracle导入dmp文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部