数据字典相关连接:
Oracle数据字典:常用字典
Oracle数据字典:user_视图
ALL_ 视图返回有关用户可访问的所有对象的信息,而无需考虑其所有者。例如,对 ALL_TABLES 的查询不仅返回用户拥有的所有关系表的列表,还返回其所有者明确授权给用户访问的所有关系表的列表。
以下查询可返回有关用户有权访问的所有对象的信息。
SQL> SELECT object_name, object_type FROM all_objects;
SQL> SELECT owner,table_name, tablespace_name from all_tables where table_name like 'B%';
SQL> SELECT * from all_users where user_id >4 and user_id <50;
SQL> SELECT constraint_name , owner , table_name from all_constraints where table_name like 'B%';
SQL> SELECT owner , procedure_name from all_procedures where owner like 'Q%';