Oracle数据库权限管理常用的SQL语句(二)

2014-11-24 09:48:19 · 作者: · 浏览: 1
et linesize 400 //设置行的宽度为400
11、角色
create role myrole; //创建角色
grant create session to myrole; //授予会话权限给角色
grant create table to myrole; //授予创建表权限给角色
drop role myrole; //删除角色
Create table
Create any table
Alter any table
Drop any table
注意:有些系统权限无法直接赋予角色
Grant unlinited tablespace to myrole;
Alter table
Drop table
表是属于某一个用户的,而角色不属于任一用户的,是共同拥有的。
12、获取表: www.2cto.com
select table_name from user_tables; //当前用户的表
select table_name from all_tables; //所有用户的表
select table_name from dba_tables; //包括系统表
select table_name from dba_tables where owner='用户名'
user_tables:
table_name,tablespace_name,last_analyzed等
dba_tables:
ower,table_name,tablespace_name,last_analyzed等
all_tables:
ower,table_name,tablespace_name,last_analyzed等
all_objects:
ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等
13、获取表字段:
select * from user_tab_columns where Table_Name='用户表';
select * from all_tab_columns where Table_Name='用户表';
select * from dba_tab_columns where Table_Name='用户表';
user_tab_columns:
table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等
all_tab_columns :
ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等
dba_tab_columns:
ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等
14、获取表注释:
select * from user_tab_comments
user_tab_comments:table_name,table_type,comments
相应的还有dba_tab_comments,all_tab_comments,这两个比user_tab_comments多了ower列。
15、获取字段注释:
select * from user_col_comments
user_col_comments:table_name,column_name,comments
相应的还有dba_col_comments,all_col_comments,这两个比user_col_comments多了ower列。