作者:皮天荷冰兰8_47 | 来源:互联网 | 2014-07-13 17:52
1、查询表空间使用情况SELECTa.tablespace_name"表空间名",total"表空间大小(MB)",free"表空间剩余大小(MB)",(total-free)"表空间使用大小(MB)",ROUND((...
1、查询表空间使用情况
SELECT a.tablespace_name "表空间名",
total "表空间大小(MB)",
free "表空间剩余大小(MB)",
(total - free) "表空间使用大小(MB)",
ROUND((total - free) / total, 4) * 100 "使用率 %"
FROM (SELECT tablespace_name, SUM(bytes)/1024/1024 free
FROM DBA_FREE_SPACE www.2cto.com
GROUP BY tablespace_name) a,
(SELECT tablespace_name, SUM(bytes)/1024/1024 total
FROM DBA_DATA_FILES
GROUP BY tablespace_name) b
WHERE a.tablespace_name = b.tablespace_name and a.tablespace_name = 'SDC' --使用的过程根据实际修改SDC
2、为表空间外加一个文件:
alter tablespace users add datafile 'c:\
Oracle\ora81\oradata\sid\user002.dbf' size 100M;
alter tablespace SDC add datafile '\data\oracle\SDC_KZ.dbf' size 10240M; www.2cto.com
3、修改用户及用户下的全部表的表空间
select 'alter table '||table_name||' move tablespace test' from user_tables;
摘自 wdh226的专栏