数据库
首页 > 数据库> > oracle

oracle

作者:互联网

 

 

 

oracle

exp 用户名/密码@itrm file=/root/itrm.dmp full=y


1.创建表空间
create tablespace TBS_ITIL_DATA logging datafile '/opt/oradata/oracle//itrm.dbf' size 1024m autoextend on next 100m maxsize unlimited extent management local;
/home/app/oradata/ESPTESTDB/esptestpdb1

2.创建用户
create user itrm identified by itrm default tablespace TBS_ITIL_DATA;

3.授权
grant connect,dba to itrm;


grant sysdba to cmistestsit;
grant imp_full_database to cmistestsit;
grant all privileges to cmistestsit;

--授予用户查看表结构权限
grant select on DBA_TAB_COLUMNS to ncmistest;
alter user YCMSDATA account unlock;grant dba to YCMSDATA ;

 

标签:grant,dba,YCMSDATA,cmistestsit,itrm,oracle
来源: https://www.cnblogs.com/changfeng1959/p/16525884.html