1、查询包含CLOB','BLOB','LONG'的表 select table_name from user_tab_columns where data_type in ('CLOB','BLOB','LONG') 2、查看当前用户的缺省表空间 select username,default_tablespace from user_users; 3、查看当前用户的角色 select * from user_role_privs;4、查看当前用户的系统权限和表级权限 select * from user_sys_privs; 5、查看用户下所有的表 select * from user_tables;
|
|