溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

AWR報(bào)告生成--快照創(chuàng)建-修改-刪除

發(fā)布時(shí)間:2020-08-29 03:57:05 來源:網(wǎng)絡(luò) 閱讀:1380 作者:sunhuabin2016 欄目:數(shù)據(jù)庫

--如果需要的話DBA可以通過DBMS_WORKLOAD_REPOSITORY過程手動創(chuàng)建、刪除或修改snapshots.

--提示調(diào)用DBMS_WORKLOAD_REPOSITORY包需要擁有DBA權(quán)限。

--1.手動創(chuàng)建Snapshots 手動創(chuàng)建Snapshots通過DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT過程

--例如

exec dbms_workload_repository.create_snapshot();


-- 然后可以通過 DBA_HIST_SNAPSHOT 視圖查看剛剛創(chuàng)建的Snapshots信息。

SELECT * FROM DBA_HIST_SNAPSHOT;


-- 2手動刪除Snapshots

--刪除Snapshots是使用DBMS_WORKLOAD_REPOSITORY包的另一個(gè)過程DROP_SNAPSHOT_RANGE 該過程在執(zhí)行時(shí)可以通過指定snap_id的范圍的方式一次刪除多個(gè)Snapshot

--例如

select count(0) from dba_hist_snapshot where snap_id between 6770 and 6774;


select max(snap_id) from dba_hist_snapshot;

select dbid from v$database;

exec dbms_workload_repository.drop_snapshot_range(low_snap_id => 6770,high_snap_id => 6774,dbid => 4059638244);

--或者

begin

dbms_workload_repository.drop_snapshot_range(

low_snap_id => 6770,

high_snap_id => 6774,

dbid => 4059638244);

end;


select count(0) from dba_hist_snapshot where snap_id between 6770 and 6774;


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI