标签:空间名 auto xtend extend code 参数 class byte 数据文件
初学Oracle,很多语句记不住,写在这里备忘。
1、查看某表空间的数据文件
select file_name 文件名, tablespace_name 表空间名, bytes/1024/1024 已使用大小M, maxbytes/1024/1024/1024 总大小M from dba_data_files where tablespace_name = ‘ABCTBL‘; 其中‘ABCTBL’为你要查询的表空间的名称。
2、为某表空间增加数据文件
ALTER TABLESPACE ABCTBL ADD DATAFILE SIZE 1G autoextend on next 10M;
其中‘ABCTBL’为你要增加数据文件的表空间名,具体创建表空间参数可参考这篇博文:http://blog.itpub.net/17203031/viewspace-697829/
3、
标签:空间名 auto xtend extend code 参数 class byte 数据文件
原文地址:http://www.cnblogs.com/xidabei/p/7411001.html