淘先锋技术网

首页 1 2 3 4 5 6 7

--创建用户名为dimon 密码为123456的用户

create user dimon identified by 123456;

--删除用户dimon

drop user dimon;

--如果用户拥有对象,则不能直接删除,否则将返回一个错误值。

--指定关键字cascade,可删除用户所有的对象,然后再删除用户。下面的例子用来删除用户与其对象:

drop user dimon cascade;

--三种标准的角色(role):connect(连接角色)、resource(资源角色)和dba(数据库管理员角色)

--给用户dimon赋予connect和resource角色的权限

grant connect,resource to dimon;

grant select on v_$session to dimon;

grant select on v_$sesstat to dimon;

grant select on v_$statname to dimon;

--撤销用户dimon的connect和resource权限

revoke connect, resource from dimon;

--创建自定义角色hgg

create role hgg;

--给角色赋select权限

grant select on class to hgg;

--删除角色

drop role hgg;

--删除一个表中全部数据时,一定要使用truncate,

--因为用drop table,delete * from 表名时,tablespace表空间该表的占用空间并未释放,

--反复几次drop,delete操作后,该tablespace上百兆的空间就被耗光了。

--如果要删除该表,可先truncate,再drop。

truncate table table_name;

--查询所有用户的表和视图

select * from all_tab_comments;

--查询当前用户的表和视图

select * from user_tab_comments;

--查询所有用户表的列名以及注释

select * from all_col_comments;

--查询当前用户表的列名以及注释

select * from user_col_comments; --查看指定用户所有的表名,(注:用户名称必须大写) select TABLE_NAME from all_tables where owner = 'DIMON'; --生成UUID select sys_guid() from dual;