프린트 하기

내맘대로긍정이 알려주는

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

다운로드 trending_flat

OS환경 : Oracle Linux 6.8 (64bit)


DB 환경 : Oracle Database 11.2.0.4


에러 : ORA-07217: sltln: environment variable cannot be evaluated.

rman 백업 도중 발생한 문제

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
RMAN> 
run {
CROSSCHECK ARCHIVELOG ALL;
DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;
BACKUP AS BACKUPSET database PLUS ARCHIVELOG;
CROSSCHECK BACKUP;
CROSSCHECK ARCHIVELOG ALL;
DELETE NOPROMPT BACKUPSET COMPLETED BEFORE 'SYSDATE-30';
DELETE NOPROMPT OBSOLETE;
DELETE NOPROMPT ARCHIVELOG UNTIL TIME 'SYSDATE-31';
}
 
released channel: ORA_DISK_1
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=16 device type=DISK
.
.
.
input archived log thread=1 sequence=56 RECID=43 STAMP=1040101550
channel ORA_DISK_1: starting piece 1 at 11-MAY-20
RMAN-00571===========================================================
RMAN-00569=============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571===========================================================
RMAN-03002: failure of backup plus archivelog command at 05/11/2020 05:05:50
ORA-07217: sltln: environment variable cannot be evaluated.



해결 방법 : configuration 설정값 확인

configuration 설정값 확인

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
RMAN> show all;
 
RMAN configuration parameters for database with db_unique_name ORCL11 are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '$BKDIR/db_ctl_%F';
CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '$BKDIR/%d_%U_FULL_database_%T.bk';
CONFIGURE MAXSETSIZE TO UNLIMITED;
CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/oracle/app/oracle/product/11.2.0/db_1/dbs/snapcf_ORCL11.f'; # default

CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO과 CHANNEL DEVICE TYPE DISK FORMAT이

$BKDIR로 되어있음



정상적인 경로로 변경

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
RMAN> CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/oracle/app/oracle/rman/%d_%U_FULL_database_%T.bk';
 
old RMAN configuration parameters:
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '$BKDIR/%d_%U_FULL_database_%T.bk';
new RMAN configuration parameters:
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '/oracle/app/oracle/rman/%d_%U_FULL_database_%T.bk';
new RMAN configuration parameters are successfully stored
released channel: ORA_DISK_1
 
RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/oracle/app/oracle/rman/db_ctl_%F';
 
old RMAN configuration parameters:
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '$BKDIR/db_ctl_%F';
new RMAN configuration parameters:
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/oracle/app/oracle/rman/db_ctl_%F';
new RMAN configuration parameters are successfully stored



백업 스크립트 재실행

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
RMAN>
run {
CROSSCHECK ARCHIVELOG ALL;
DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;
BACKUP AS BACKUPSET database PLUS ARCHIVELOG;
CROSSCHECK BACKUP;
CROSSCHECK ARCHIVELOG ALL;
DELETE NOPROMPT BACKUPSET COMPLETED BEFORE 'SYSDATE-30';
DELETE NOPROMPT OBSOLETE;
DELETE NOPROMPT ARCHIVELOG UNTIL TIME 'SYSDATE-31';
}
 
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=16 device type=DISK
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1341033546484.arc RECID=21 STAMP=1037492256
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1351033546484.arc RECID=22 STAMP=1037665098
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1361033546484.arc RECID=23 STAMP=1037837940
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1371033546484.arc RECID=24 STAMP=1038010788
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1381033546484.arc RECID=25 STAMP=1038175242
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1391033546484.arc RECID=26 STAMP=1038348013
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1401033546484.arc RECID=27 STAMP=1038520813
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1411033546484.arc RECID=28 STAMP=1038675649
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1421033546484.arc RECID=29 STAMP=1038808810
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1431033546484.arc RECID=30 STAMP=1038961472
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1441033546484.arc RECID=31 STAMP=1039220726
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1451033546484.arc RECID=32 STAMP=1039393581
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1461033546484.arc RECID=33 STAMP=1039566432
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1471033546484.arc RECID=34 STAMP=1039739284
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1481033546484.arc RECID=35 STAMP=1039912135
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1491033546484.arc RECID=36 STAMP=1040076589
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1501033546484.arc RECID=37 STAMP=1040095701
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1511033546484.arc RECID=38 STAMP=1040095708
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1521033546484.arc RECID=39 STAMP=1040095766
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1531033546484.arc RECID=40 STAMP=1040095878
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1541033546484.arc RECID=41 STAMP=1040101429
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1551033546484.arc RECID=42 STAMP=1040101490
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1561033546484.arc RECID=43 STAMP=1040101550
Crosschecked 23 objects
 
 
released channel: ORA_DISK_1
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=16 device type=DISK
specification does not match any archived log in the repository
 
 
Starting backup at 11-MAY-20
current log archived
using channel ORA_DISK_1
channel ORA_DISK_1: starting archived log backup set
channel ORA_DISK_1: specifying archived log(s) in backup set
input archived log thread=1 sequence=34 RECID=21 STAMP=1037492256
input archived log thread=1 sequence=35 RECID=22 STAMP=1037665098
input archived log thread=1 sequence=36 RECID=23 STAMP=1037837940
input archived log thread=1 sequence=37 RECID=24 STAMP=1038010788
input archived log thread=1 sequence=38 RECID=25 STAMP=1038175242
input archived log thread=1 sequence=39 RECID=26 STAMP=1038348013
input archived log thread=1 sequence=40 RECID=27 STAMP=1038520813
input archived log thread=1 sequence=41 RECID=28 STAMP=1038675649
input archived log thread=1 sequence=42 RECID=29 STAMP=1038808810
input archived log thread=1 sequence=43 RECID=30 STAMP=1038961472
input archived log thread=1 sequence=44 RECID=31 STAMP=1039220726
input archived log thread=1 sequence=45 RECID=32 STAMP=1039393581
input archived log thread=1 sequence=46 RECID=33 STAMP=1039566432
input archived log thread=1 sequence=47 RECID=34 STAMP=1039739284
input archived log thread=1 sequence=48 RECID=35 STAMP=1039912135
input archived log thread=1 sequence=49 RECID=36 STAMP=1040076589
input archived log thread=1 sequence=50 RECID=37 STAMP=1040095701
input archived log thread=1 sequence=51 RECID=38 STAMP=1040095708
input archived log thread=1 sequence=52 RECID=39 STAMP=1040095766
input archived log thread=1 sequence=53 RECID=40 STAMP=1040095878
input archived log thread=1 sequence=54 RECID=41 STAMP=1040101429
input archived log thread=1 sequence=55 RECID=42 STAMP=1040101490
input archived log thread=1 sequence=56 RECID=43 STAMP=1040101550
input archived log thread=1 sequence=57 RECID=44 STAMP=1040101936
channel ORA_DISK_1: starting piece 1 at 11-MAY-20
channel ORA_DISK_1: finished piece 1 at 11-MAY-20
piece handle=/oracle/app/oracle/rman/ORCL11_08uvtchg_1_1_FULL_database_20200511.bk tag=TAG20200511T051216 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:35
Finished backup at 11-MAY-20
 
Starting backup at 11-MAY-20
using channel ORA_DISK_1
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/ORCL11/sysaux01.dbf
input datafile file number=00004 name=/oracle/app/oracle/oradata/ORCL11/users01.dbf
input datafile file number=00001 name=/oracle/app/oracle/oradata/ORCL11/system01.dbf
input datafile file number=00003 name=/oracle/app/oracle/oradata/ORCL11/undotbs01.dbf
input datafile file number=00005 name=/oracle/app/oracle/oradata/ORCL11/users02.dbf
input datafile file number=00006 name=/oracle/app/oracle/oradata/ORCL11/users03.dbf
input datafile file number=00007 name=/oracle/app/oracle/oradata/ORCL11/users04.dbf
input datafile file number=00008 name=/oracle/app/oracle/oradata/ORCL11/users05.dbf
channel ORA_DISK_1: starting piece 1 at 11-MAY-20
channel ORA_DISK_1: finished piece 1 at 11-MAY-20
piece handle=/oracle/app/oracle/rman/ORCL11_09uvtcij_1_1_FULL_database_20200511.bk tag=TAG20200511T051251 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:35
Finished backup at 11-MAY-20
 
Starting backup at 11-MAY-20
current log archived
using channel ORA_DISK_1
channel ORA_DISK_1: starting archived log backup set
channel ORA_DISK_1: specifying archived log(s) in backup set
input archived log thread=1 sequence=58 RECID=45 STAMP=1040102006
channel ORA_DISK_1: starting piece 1 at 11-MAY-20
channel ORA_DISK_1: finished piece 1 at 11-MAY-20
piece handle=/oracle/app/oracle/rman/ORCL11_0auvtcjm_1_1_FULL_database_20200511.bk tag=TAG20200511T051326 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
Finished backup at 11-MAY-20
 
Starting Control File and SPFILE Autobackup at 11-MAY-20
piece handle=/oracle/app/oracle/rman/db_ctl_c-4268458035-20200511-00 comment=NONE
Finished Control File and SPFILE Autobackup at 11-MAY-20
 
using channel ORA_DISK_1
crosschecked backup piece: found to be 'AVAILABLE'
backup piece handle=/oracle/app/oracle/rman/ORCL11_08uvtchg_1_1_FULL_database_20200511.bk RECID=5 STAMP=1040101936
crosschecked backup piece: found to be 'AVAILABLE'
backup piece handle=/oracle/app/oracle/rman/ORCL11_09uvtcij_1_1_FULL_database_20200511.bk RECID=6 STAMP=1040101971
crosschecked backup piece: found to be 'AVAILABLE'
backup piece handle=/oracle/app/oracle/rman/ORCL11_0auvtcjm_1_1_FULL_database_20200511.bk RECID=7 STAMP=1040102006
crosschecked backup piece: found to be 'AVAILABLE'
backup piece handle=/oracle/app/oracle/rman/db_ctl_c-4268458035-20200511-00 RECID=8 STAMP=1040102007
Crosschecked 4 objects
 
 
released channel: ORA_DISK_1
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=16 device type=DISK
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1341033546484.arc RECID=21 STAMP=1037492256
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1351033546484.arc RECID=22 STAMP=1037665098
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1361033546484.arc RECID=23 STAMP=1037837940
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1371033546484.arc RECID=24 STAMP=1038010788
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1381033546484.arc RECID=25 STAMP=1038175242
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1391033546484.arc RECID=26 STAMP=1038348013
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1401033546484.arc RECID=27 STAMP=1038520813
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1411033546484.arc RECID=28 STAMP=1038675649
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1421033546484.arc RECID=29 STAMP=1038808810
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1431033546484.arc RECID=30 STAMP=1038961472
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1441033546484.arc RECID=31 STAMP=1039220726
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1451033546484.arc RECID=32 STAMP=1039393581
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1461033546484.arc RECID=33 STAMP=1039566432
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1471033546484.arc RECID=34 STAMP=1039739284
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1481033546484.arc RECID=35 STAMP=1039912135
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1491033546484.arc RECID=36 STAMP=1040076589
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1501033546484.arc RECID=37 STAMP=1040095701
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1511033546484.arc RECID=38 STAMP=1040095708
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1521033546484.arc RECID=39 STAMP=1040095766
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1531033546484.arc RECID=40 STAMP=1040095878
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1541033546484.arc RECID=41 STAMP=1040101429
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1551033546484.arc RECID=42 STAMP=1040101490
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1561033546484.arc RECID=43 STAMP=1040101550
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1571033546484.arc RECID=44 STAMP=1040101936
validation succeeded for archived log
archived log file name=/oracle/app/oracle/arch/1581033546484.arc RECID=45 STAMP=1040102006
Crosschecked 25 objects
 
 
using channel ORA_DISK_1
specification does not match any backup in the repository
 
RMAN retention policy will be applied to the command
RMAN retention policy is set to redundancy 1
using channel ORA_DISK_1
no obsolete backups found
 
released channel: ORA_DISK_1
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=16 device type=DISK
specification does not match any archived log in the repository

정상적으로 실행됨



백업 내역 확인

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
RMAN> list backup;
 
 
List of Backup Sets
===================
 
 
BS Key  Size       Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
5       2.83G      DISK        00:00:29     11-MAY-20      
        BP Key5   Status: AVAILABLE  Compressed: NO  Tag: TAG20200511T051216
        Piece Name: /oracle/app/oracle/rman/ORCL11_08uvtchg_1_1_FULL_database_20200511.bk
 
  List of Archived Logs in backup set 5
  Thrd Seq     Low SCN    Low Time  Next SCN   Next Time
  ---- ------- ---------- --------- ---------- ---------
  1    34      7690954    10-APR-20 7757024    12-APR-20
  1    35      7757024    12-APR-20 7841000    14-APR-20
  1    36      7841000    14-APR-20 7922775    16-APR-20
  1    37      7922775    16-APR-20 8012639    18-APR-20
  1    38      8012639    18-APR-20 8096919    19-APR-20
  1    39      8096919    19-APR-20 8178084    21-APR-20
  1    40      8178084    21-APR-20 8260109    23-APR-20
  1    41      8260109    23-APR-20 8337003    25-APR-20
  1    42      8337003    25-APR-20 8404779    27-APR-20
  1    43      8404779    27-APR-20 8478952    29-APR-20
  1    44      8478952    29-APR-20 8560952    01-MAY-20
  1    45      8560952    01-MAY-20 8644697    03-MAY-20
  1    46      8644697    03-MAY-20 8727465    05-MAY-20
  1    47      8727465    05-MAY-20 8809847    07-MAY-20
  1    48      8809847    07-MAY-20 8891725    09-MAY-20
  1    49      8891725    09-MAY-20 8976792    10-MAY-20
  1    50      8976792    10-MAY-20 8986525    11-MAY-20
  1    51      8986525    11-MAY-20 8986537    11-MAY-20
  1    52      8986537    11-MAY-20 8986607    11-MAY-20
  1    53      8986607    11-MAY-20 8986661    11-MAY-20
  1    54      8986661    11-MAY-20 8989272    11-MAY-20
  1    55      8989272    11-MAY-20 8989358    11-MAY-20
  1    56      8989358    11-MAY-20 8989415    11-MAY-20
  1    57      8989415    11-MAY-20 8989602    11-MAY-20
 
BS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
6       Full    2.33G      DISK        00:00:32     11-MAY-20      
        BP Key6   Status: AVAILABLE  Compressed: NO  Tag: TAG20200511T051251
        Piece Name: /oracle/app/oracle/rman/ORCL11_09uvtcij_1_1_FULL_database_20200511.bk
  List of Datafiles in backup set 6
  File LV Type Ckp SCN    Ckp Time  Name
  ---- -- ---- ---------- --------- ----
  1       Full 8989621    11-MAY-20 /oracle/app/oracle/oradata/ORCL11/system01.dbf
  2       Full 8989621    11-MAY-20 /oracle/app/oracle/oradata/ORCL11/sysaux01.dbf
  3       Full 8989621    11-MAY-20 /oracle/app/oracle/oradata/ORCL11/undotbs01.dbf
  4       Full 8989621    11-MAY-20 /oracle/app/oracle/oradata/ORCL11/users01.dbf
  5       Full 8989621    11-MAY-20 /oracle/app/oracle/oradata/ORCL11/users02.dbf
  6       Full 8989621    11-MAY-20 /oracle/app/oracle/oradata/ORCL11/users03.dbf
  7       Full 6605991    16-MAR-20 /oracle/app/oracle/oradata/ORCL11/users04.dbf
  8       Full 6604349    16-MAR-20 /oracle/app/oracle/oradata/ORCL11/users05.dbf
 
BS Key  Size       Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
7       3.00K      DISK        00:00:00     11-MAY-20      
        BP Key7   Status: AVAILABLE  Compressed: NO  Tag: TAG20200511T051326
        Piece Name: /oracle/app/oracle/rman/ORCL11_0auvtcjm_1_1_FULL_database_20200511.bk
 
  List of Archived Logs in backup set 7
  Thrd Seq     Low SCN    Low Time  Next SCN   Next Time
  ---- ------- ---------- --------- ---------- ---------
  1    58      8989602    11-MAY-20 8989637    11-MAY-20
 
BS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
8       Full    9.67M      DISK        00:00:00     11-MAY-20      
        BP Key8   Status: AVAILABLE  Compressed: NO  Tag: TAG20200511T051327
        Piece Name: /oracle/app/oracle/rman/db_ctl_c-4268458035-20200511-00
  SPFILE Included: Modification time: 17-MAR-20
  SPFILE db_unique_name: ORCL11
  Control File Included: Ckp SCN: 8989646      Ckp time: 11-MAY-20



원인 : configuration 값이 잘못 설정됨

configuration 값이 잘못 설정됨

쉘 스크립트에 넣는 변수 값으로 configuration 값을 넣어서 발생한 문제



참조 : https://gyh214.tistory.com/159

https://positivemh.tistory.com/567