--Reducing the Oracle E-Business Suite Data Footprint(Doc ID 752322.1)
set lines 160 pages 50000
col table_name for a25
col column_name for a20
col segment_name for a30
col segment_type f0r a10
col tablespace_name for a15
SELECT *
FROM (
SELECT A.TABLE_NAME,
A.COLUMN_NAME,
B.SEGMENT_NAME,
B.SEGMENT_TYPE,
B.TABLESPACE_NAME,
B.BYTES/1024/1024/1024 as SIZE_GB,
B.BLOCKS,
B.EXTENTS
FROM DBA_LOBS A, DBA_SEGMENTS B
WHERE A.SEGMENT_NAME = B.SEGMENT_NAME
ORDER BY B.BYTES DESC
)
WHERE ROWNUM <= 10;
--select * from dba_segments where tablespace_name='APPS_TS_TX_DATA' order by bytes desc;
--select owner,segment_name,bytes/1024/1024/1024 from dba_segments where tablespace_name='APPS_TS_TX_DATA' order by bytes desc;
Oracle EBS 大表数据清理方法总结
未经允许不得转载:徐万新之路 » Oracle EBS 大表数据清理方法总结
相关推荐
- sqlplus导出表到excel
- Oracle数据库I/O基准性能测试
- concurrent.sql
- EBS 12.1.3并发管理器数量监控及调整
- Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1)
- Oracle VM Virtual Appliances for Oracle E-Business Suite
- Oracle E-Business Suite Upgrades and Platform Migration
- 11.2.0.4 & 12.1.0.2 OUI Cloning fails with java.lang.UnsupportedClassVersionError : "Bad version number in .class file occurred" and "Unsupported major.minor version 51.0 occurred" respectively (Doc ID 2904675.1)
最新评论
这个牛
放下欲望,男人从来不醉,充分且必要
勇气、责任、自信、创新,为天下先!
软件即数据,软件即服务,软件即管理,软件就是对人类各种社会活动的仿真和记录。软件很重要,但软件不可能凌驾于业务之上,尤其不可能高人一等。