oracle 查看用户所在的表空间

查看当前用户的缺省表空间

  SQL>select username,default_tablespace from user_users;


查看当前用户的角色

  SQL>select * from user_role_privs;

查看当前用户的系统权限和表级权限

  SQL>select * from user_sys_privs;

  SQL>select * from user_tab_privs;

查看用户下所有的表

  SQL>select * from user_tables;

你可能感兴趣的:(oracle,oracle,oracle,表空间)