首页
IT
登录
6mi
u
盘
搜
搜 索
IT
Oracle查看用户所在表空间
Oracle查看用户所在表空间
xiaoxiao
2021-03-25
103
查看当前用户所在表空间
[sql] view plain copy
select
username,default_tablespace
from
user_users;
修改用户默认表空间
[sql] view plain copy
alter
user
用户名
default
tablespace 新表空间;
查看用户所拥有的角色
[sql] view plain copy
select
*
from
user_role_privs;
查询数据库中有多少张表
[sql] view plain copy
select
*
from
user_tables;
转载请注明原文地址: https://ju.6miu.com/read-21849.html
技术
最新回复
(
0
)