select logtime,count(*),
round(sum(blocks * block_size) / 1024 / 1024) mbsize
from (select trunc(first_time, 'hh') as logtime, a.blocks, a.block_size
from v$archived_log a
where a.dest_id = 1
and a.first_time > trunc(sysdate))
group by logtime
order by logtime desc;
查最近一周每天的歸檔日誌生成量
sql** 收藏**
select logtime,
count(*),
round(sum(blocks * block_size) / 1024 / 1024) mbsize
from (select trunc(first_time, 'dd') as logtime, a.blocks, a.block_size
from v$archived_log a
where a.dest_id = 1
and a.first_time > trunc(sysdate - 7))
group by logtime
order by logtime desc;
如果你需要知道rac下各個節點的歸檔日誌情況,我將上面指令碼略作修改,增加thread#列。
查當天每小時的各個例項的歸檔日誌生成量
sql** 收藏**
select thread#,
logtime,
count(*),
round(sum(blocks * block_size) / 1024 / 1024) mbsize
from (select a.thread#,
trunc(first_time, 'hh') as logtime,
a.blocks,
a.block_size
from v$archived_log a
where a.dest_id = 1
and a.first_time > trunc(sysdate))
group by thread#, logtime
order by thread#, logtime desc;
查最近一周每天的各個例項的歸檔日誌生成量
sql** 收藏**
select thread#,
logtime,
count(*),
round(sum(blocks * block_size) / 1024 / 1024) mbsize
from (select thread#,
trunc(first_time, 'dd') as logtime,
a.blocks,
a.block_size
from v$archived_log a
where a.dest_id = 1
and a.first_time > trunc(sysdate - 7))
group by thread#, logtime
order by thread#, logtime desc;
查詢瀚高資料庫產生的歸檔量
目錄 文件用途 詳細資訊 文件用途 查詢瀚高資料庫產生的歸檔量 詳細資訊 使用如下語句可查詢瀚高資料庫產生的歸檔數量。with tmp file as select t1.file,t1.file ls,pg stat file t1.file modification as last update...
查歸檔日誌檔案每小時生成量
在o racle資料庫中,通過v archived log資料字典檢視查詢該資料庫的歸檔日誌檔案的生成情況。如果你以為在rac下需要查的gv archvied log檢視,這其實是乙個錯誤的想法。無論在單例項資料庫,還是多例項的rac資料庫,都是查這個檢視來獲取資訊。查當天每小時的歸檔日誌生成量 s...
歸檔以及反歸檔
歸檔和反歸檔 複雜的物件我們並不能通過writetofile型別的方法寫入到檔案中。這裡的複雜物件指的是在foundation框架內部存在的資料類,這個負載物件至少包含有乙個例項物件 如果想要進行歸檔和反歸檔操作,則必須遵守 協議 我們在歸檔和解檔操作時,每乙個需要乙個鍵.並且歸檔時是什麼鍵,那麼解...