您的位置:首页 > 数据库 > Oracle

oracle怎么查看用户属于哪个表空间

2017-01-10 10:08 423 查看
用如下语句查看:
查看结果(如查询scott用户的所属表空间):





select username,default_tablespace from dba_users order by username

alter
user 用户名 default tablespace 表空间名字 ;--创建时候指定表空间

alter table schema.AC01 move tablespace AA; --分配到指定表空间
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐