DBA Hub

📋Steps in this guide1/1

Checkpoint time of datafiles

-- REFERENCE - ORAFAQ

oracle configurationintermediate
by OracleDba
12 views
1

Checkpoint time of datafiles

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
13
-- REFERENCE - ORAFAQ
set feed off
set pagesize 10000
set linesize 500
break on grantee skip 1
column datum new_value datum noprint
column file_nr format 999999 heading 'File#'
column checkpoint_time format A20 heading 'Checkpoint|Time'
column file_name format A59 heading 'Filename'
select FILE# file_nr,
to_char(CHECKPOINT_TIME,'DD.MM.YYYY:HH24:MI:SS') checkpoint_time,
name file_name
from v$datafile_header;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!