oracle查看用户;查看用户表空间;设置用户表空间;创建、修改、删除表空间

一. 查看用户信息
     1.show user     备注:sqlplus 中输入命令时不需要分号,当输入的是sql语句时需要加分号
     2.通过"数据字典"---dba_users、user_users(数据库提供的表,也是由很多的字段组成)查看用户的其他字段信息
     3.查看数据字典中用户的字段信息:desc dba_users
     4.通过数据字典查看有多少个用户:select username from dba_users;
     5.查看用户的默认表空间、临时表空间等等
    select default_tablespace from dba_users where username='SYS';
二. 查看用户的表空间:
    1.dba_tablespaces(系统管理员级别查看的数据字典)、user_tablespaces(普通用户查看的数据字典) 
    2.查看表空间的字段 desc dba_tablespaces   
    3.查看有几个表空间  select tablespace_name from dba_tablespaces; 备注:查询的结果为6个
三. 设置用户的默认或临时表空间
    alter user username default|tempporart tablespace tablespace_name; 备注:普通用户没有设置表空间的权限        
四. 创建、修改、删除表空间
    1.创建表空间create [temporary] tablespace tablespace_name tempfile|datafile 'xx.dbf' size xx;
    备注:如果创建的是临时表空间,需要加上temporary关键字;    
    2.查看表空间的具体路径:(通过dba_data_files 和 dba_temp_files这个数据字典)
    desc dba_data_files
    select file_name from dba_data_files where tablespace_name='';(条件是表空间的名字,需要大写)
    3.修改表空间
    a)修改表空间的状态(设置联机或脱机的状态(表空间是脱机时不可用,默认是联机的))
    alter tablespace tablespace_name online|offline;
    如何知道表空间所处的状态?(通过这个dba_tablespaces数据字典)
    desc dba_tablespaces
    select status from dba_tablespaces where tablespace_name='';(条件是表空间的名字,需要大写)
    设置只读或可读写的状态(只有在联机状态才可以更改,默认的联机状态就是读写状态)
    alter tablespace tablespace_name read only | read write;
    b).修改数据文件
    1.增加数据文件
    alter tablespace tablespace_name add datafile 'xx.dbf' size xx;
    select file_name from dba_data_files where tablespace_name='';(条件是表空间的名字,需要大写)
    备注:通过这条select语句就查询到当前表空间中的数据文件
    删除数据文件(不能删除表空间当中第一个数据文件,如果要删除就需要删除整个表空间)
    alter tablespace tablespace_name drop datafile 'xx.dbf';
    4.删除表空间
    drop tablespace tablespace_name[including contents];
    备注:如果只是删除表空间不删除该表空间下的数据文件,则不加including contents;

有关Oracle的schema、表空间、数据文件的区别等概念参考下面这篇博客:
http://blog.csdn.net/zjdwhd/article/details/53467115
创建表空间、创建用户、给用户授权可以参考下面的博客:
http://blog.csdn.net/zjdwhd/article/details/53638313

你可能感兴趣的:(oracle)