프린트 하기

내맘대로긍정이 알려주는

Oracle 23ai 신기능
무료 세미나 발표자료

다운로드 trending_flat

 

OS환경 : Oracle Linux 7.2(64bit)

 

DB 환경 : Oracle Database 18.1.0.0

 

쿼리 : rman 백업 진행율 확인 쿼리

rman 백업 진행율 확인 쿼리

 

 

테스트로 확인

세션1

rman으로 full 백업 진행

1
2
3
4
5
6
7
8
9
10
11
$ rman target /
RMAN> backup database;
 
Starting backup at 06-JUL-18
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=63 device type=DISK
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00002 name=/oracle/app/oracle/oradata/ORAC/sysaux01.dbf
.
.

 

 

세션2

아래 쿼리로 진행율 확인

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
SQL> select sid, serial#, context, sofar, totalwork,
round(sofar/totalwork*100,2"%_complete"
from v$session_longops
where opname like 'RMAN%'
and opname not like '%aggregate%'
and totalwork <> 0
and sofar <> totalwork
/
 
       SID    SERIAL#     CONTEXT      SOFAR  TOTALWORK %_complete
---------- ---------- ---------- ---------- ---------- ----------
    63    60952           1     261118    301440        86.62
 
1 row selected.
 
SQL> /
 
       SID    SERIAL#     CONTEXT      SOFAR  TOTALWORK %_complete
---------- ---------- ---------- ---------- ---------- ----------
    63    60952           1     264190    301440        87.64
 
1 row selected.
 
SQL> /
 
       SID    SERIAL#     CONTEXT      SOFAR  TOTALWORK %_complete
---------- ---------- ---------- ---------- ---------- ----------
    63    60952           1     286974    301440         95.2
 
1 row selected.
 
SQL> /
 
       SID    SERIAL#     CONTEXT      SOFAR  TOTALWORK %_complete
---------- ---------- ---------- ---------- ---------- ----------
    63    60952           1     292862    301440        97.15
 
1 row selected.
 
SQL> /
 
      SID    SERIAL#     CONTEXT      SOFAR  TOTALWORK %_complete
---------- ---------- ---------- ---------- ---------- ----------
    63    60952           1     301438    301440          100
 
SQL> /
 
no rows selected

 

 

 

 

참조 :