1. health check 항목 확인
SELECT name FROM v$hm_check
2. health check 수행
BEGIN
DBMS_HM.run_check ('Dictionary Integrity Check', 'report_dictionary_integrity');
END; /
3. health check 결과 확인
SET LONG 100000
SET LONGCHUNKSIZE 1000
SET PAGESIZE 1000
SET LINESIZE 512
SELECT DBMS_HM.get_run_report ('report_dictionary_integrity') FROM DUAL;
'RDB > Oracle' 카테고리의 다른 글
oracle global 통계 파라미터 설정 (0) | 2019.09.20 |
---|---|
oracle gimr data 수집 (0) | 2019.09.04 |
오라클 결과물을 html로 출력 (0) | 2019.09.04 |
oracle database ntp (0) | 2019.08.08 |
oracle rac patch (0) | 2019.07.25 |