- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
4#
发表于 2012-3-12 10:57:54
ODM DATA:
[oracle@vrh8 ~]$ oerr ora 24010
24010, 00000, "QUEUE %s does not exist"
// *Cause: The specified queue does not exist.
// *Action: Specify a valid queue. Query USER_QUEUES for all the valid
// queues.
//
[oracle@vrh8 ~]$ oerr SMG 3000
03000, 00000, "Tablespace [%s] is [%s] full"
10.2.0.5.0 Linux x64 2 nodes RAC
action plan , 跑一下以下SQL语句 贴出结果:- select OWNER, NAME, QUEUE_TABLE from dba_queues where NAME like '%ALERT%';
- REM tablespace report
- set linesize 200
- select a.tablespace_name,
- round(a.bytes_alloc / 1024 / 1024) megs_alloc,
- round(nvl(b.bytes_free, 0) / 1024 / 1024) megs_free,
- round((a.bytes_alloc - nvl(b.bytes_free, 0)) / 1024 / 1024) megs_used,
- round((nvl(b.bytes_free, 0) / a.bytes_alloc) * 100) Pct_Free,
- 100 - round((nvl(b.bytes_free, 0) / a.bytes_alloc) * 100) Pct_used,
- round(maxbytes / 1048576) Max
- from (select f.tablespace_name,
- sum(f.bytes) bytes_alloc,
- sum(decode(f.autoextensible, 'YES', f.maxbytes, 'NO', f.bytes)) maxbytes
- from dba_data_files f
- group by tablespace_name) a,
- (select f.tablespace_name, sum(f.bytes) bytes_free
- from dba_free_space f
- group by tablespace_name) b
- where a.tablespace_name = b.tablespace_name(+)
- union all
- select h.tablespace_name,
- round(sum(h.bytes_free + h.bytes_used) / 1048576) megs_alloc,
- round(sum((h.bytes_free + h.bytes_used) - nvl(p.bytes_used, 0)) /
- 1048576) megs_free,
- round(sum(nvl(p.bytes_used, 0)) / 1048576) megs_used,
- round((sum((h.bytes_free + h.bytes_used) - nvl(p.bytes_used, 0)) /
- sum(h.bytes_used + h.bytes_free)) * 100) Pct_Free,
- 100 -
- round((sum((h.bytes_free + h.bytes_used) - nvl(p.bytes_used, 0)) /
- sum(h.bytes_used + h.bytes_free)) * 100) pct_used,
- round(sum(f.maxbytes) / 1048576) max
- from sys.v_$TEMP_SPACE_HEADER h,
- sys.v_$Temp_extent_pool p,
- dba_temp_files f
- where p.file_id(+) = h.file_id
- and p.tablespace_name(+) = h.tablespace_name
- and f.file_id = h.file_id
- and f.tablespace_name = h.tablespace_name
- group by h.tablespace_name
- ORDER BY 1
- /
复制代码 |
|