transaction 진행 중인 상태에서 undo data file이 손상되었을 때, 새로운 undo tablespace를 생성해서 해결, 문제되는 undo tablespace 삭제 시에 문제가 발생, temp file 손상 복구, 모든 data, redo, control file이 있는 디스크 손상 복구
◆ 백업본도 가지지 않고, spfile이 손상되었는데 pfile이 없을 경우 - startup 시 alert log에 초기 파라미터 정보가 다 뜨기 때문에 그거 보면서 생성하면 된다. ◆ DBA는 출근 시 no archive mode일 경우 현재 redo, checkpoint 정보를 기록해놔야 한다. select name, checkpoint_change#,status from v$datafile;select * from v$log;select segment_id, segment_name, owner, tablespace_name,statusfrom dba_rollback_segs; > transaction 진행 중인 상태에서 undo data file이 손상되었을 때, 새로운 undo tablesp..
더보기
2025.02.10 FGA(생성,삭제,활성화,비활성화), Autonomous Transaction 선언, (AUD$,FGA_LOG)를 다른 tablespace로 이관작업, Oracle net 서비스
■ Fine Grained Auditing - Oracle Enterprise Edition에서 사용하는 감사 기능 - Content를 기준으로 Data Access 모니터 - select, insert, update, delete, merge 감사 - Table이나 View에 있는 하나 이상의 열에 연결 가능 - 프로시저 실행 가능 - dbms_fga 패키지를 사용desc dbms_fga >show parameter audit_trailalter system set audit_trail = none scope=spfile; -- run 상태가 아닐 경우 실행 # FGA 생성 - 패키지 이용-- 샘플 테이블 생성create table hr.empasselect emplo..
더보기