gotoschool
1:创建临时表空间
create temporary tablespace user_temp  
tempfile \'Q:\oracle\product\10.2.0\oradata\Test\xyrj_temp.dbf\' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
2:创建数据表空间
create tablespace user_data  
logging  
datafile \'Q:\oracle\product\10.2.0\oradata\Test\xyrj_data.dbf\' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
第3步:创建用户并指定表空间
create user username identified by password  
default tablespace user_data  
temporary tablespace user_temp;  
 
第4步:给用户授予权限
grant connect,resource,dba to username;
revoke dba from username;
ALTER USER   username QUOTA UNLIMITED ON CY2CGIS_DATA; //不需要

grant unlimited tablespace to username; //不需要
--创建视图权限
grant create  view to B; //不需要
--授予查询权限 
grant select any table to B; //不需要
--授予权限 
grant select any dictionary to B; //不需要
//将表数据的操作权限付给新用户
grant select,insert,update,delete on SLGIS.DMGC_ZC_ZK_P to SLGUEST;

分类:

技术点:

相关文章:

  • 2021-05-26
  • 2022-12-23
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
  • 2021-10-14
  • 2022-01-20
  • 2021-12-30
猜你喜欢
  • 2021-12-04
  • 2021-08-01
  • 2021-12-04
  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案