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

oracle主题——用户

程序员文章站 2022-07-14 20:03:13
...

1、用户创建

create user CLOUD identified by 123456
default tablespace DATA_GLZX;

2、用户授权


grant connect,resource,dba to BURCE_LI;
grant create session to  BURCE_LI;
grant create table to  BURCE_LI;

3、用户删除

--仅删除用户
drop user USER_ORA_SQL ;
--删除用户及数据
drop user USER_ORA_SQL cascade;

4、用户查询

select * from dba_users;