会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
左子菁
导航
博客园
首页
新随笔
联系
订阅
管理
公告
Oracle查看用户所在表空间
查看当前用户所在表空间
[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;
posted on
2014-09-10 15:47
左子菁
阅读(
278
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部