또한 증상이 비슷한 다른 버그도 있는데, PDB 생성시 General Mode 선택하여 DB 생성시 PST8PDT (태평양 표준시) 로 설정된다고 한다.

 

Default Scheduler Timezone Value In PDB$SEED Different Than CDB (Doc ID 2702230.1)

DBMS_SCHEDULER 또는 DBMS_JOB 및 DST/시간대에 대한 설명(문서 ID 467722.1)

-- Scheduler Timezone in CDB:

SQL> select * from dba_scheduler_global_attribute where ATTRIBUTE_NAME like '%TIMEZONE%';

America/Toronto

ATTRIBUTE_NAME                 VALUE
------------------------------ ------------------------------
DEFAULT_TIMEZONE               America/Toronto

 -- Scheduler timezone in PDB:

SQL> alter session set container=PDB$SEED;

Session altered.

SQL> select * from dba_scheduler_global_attribute where ATTRIBUTE_NAME like '%TIMEZONE%';

ATTRIBUTE_NAME                 VALUE
------------------------------ ------------------------------
DEFAULT_TIMEZONE               PST8PDT

- 증상
12C, 18c 및 19c에서 DBCA General 모드를 사용하여 DB를 만들면 PDB 스케줄러의 기본 시간대가 CDB$ROOT와 다릅니다.


PDB 스케줄러의 기본 시간대는 19c에서는 PST8PDT이고 12C 및 18c에서는 스케줄러의 시간대가 CDB$ROOT에 무엇이든 상관없이 Etc/UTC입니다.


그러나 create database 명령을 사용하거나 DBCA 사용자 정의 모드를 사용하면 PDB 스케줄러의 기본 시간대가 CDB$ROOT와 동일합니다.

이는 예상되는 동작입니다. 

아래 버그를 참조하여 개선 요청을 제기했습니다.
  미공개 버그 30076391: DBCA GENERAL MODE CREATE DB를 사용하여 CDB$ROOT 및 PDB에서 스케줄러의 다른 시간대

- 해결책   
DBCA 일반 모드를 사용하여 DB를 생성하는 경우에도 PDB 스케줄러의 기본 시간대를 설정하세요.
PDB 스케줄러의 기본 시간대가 CDB$ROOT와 동일한 사용자 지정 모드에서 DBCA를 사용해 보세요.
스케줄러 시간대를 설정하려면 아래 문서를 참조하세요.


Posted by pat98

 

=> 특정 버전의 19c RU 부터 별도 작업을 하지 않아도 같은 Timezone 으로 셋팅되도록 수정된것 같은데 관련하여 자료는 찾지 못했다. 최신 RU인 19.24 에서는 같은 Timezone 으로 조회가 됨..

 

생성된 PDB 의 Scheduler 의 시간대를 변경 (기본적으로 CDB의 스케줄러 은 정상적이나 PDB의 스케줄러는 UTC로 되어있음)

 

alter session set container = pdb1 ;
select dbms_scheduler.stime from dual ;

STIME
---------------------------------------------------------------------------
23-MAR-20 05.23.50.906789000 AM ETC/UTC

exec DBMS_SCHEDULER.SET_SCHEDULER_ATTRIBUTE ('default_timezone','Asia/Seoul');

select dbms_scheduler.stime from dual ;
STIME
---------------------------------------------------------------------------
23-MAR-20 02.25.03.377906000 PM ASIA/SEOUL

Posted by pat98

 

In 12.2 and later

AWR Snapshot 및 Report 는 CDB level 또는 PDB level 에서 생성가능하며 AWR Snapshot 은 기본으로 CDB level 에서만 생성된다.

1. PDB AWR snapshot 수동 생성하는 경우.

SQL> connect <username>/<password> as sysdba
SQL> alter session set container=PDB1;
SQL> exec dbms_workload_repository.create_snapshot();


2. PDB AWR snapshots 의 자동생성 환경 구성.

SQL> alter session set container = CDB$ROOT;
SQL> alter system set AWR_PDB_AUTOFLUSH_ENABLED = TRUE;
SQL> alter system set AWR_SNAPSHOT_TIME_OFFSET=1000000; 

SQL> select * from cdb_hist_wr_control;    

      DBID SNAP_INTERVAL                            RETENTION                                TOPNSQL        CON_ID
---------- ---------------------------------------- ---------------------------------------- ---------- ----------
1793141417 +00000 01:00:00.0                        +00008 00:00:00.0                        DEFAULT             0
4182556862 +40150 00:01:00.0                        +00008 00:00:00.0                        DEFAULT             3  

PDB의 기본 snap_interval 은 너무 길기 때문에 변경해 준다.

SQL> alter session set container=PDB1;
SQL> exec dbms_workload_repository.modify_snapshot_settings(interval => 30, dbid => 4182556862);

SQL> alter session set container = CDB$ROOT;
SQL> select * from cdb_hist_wr_control;

      DBID SNAP_INTERVAL                            RETENTION                                TOPNSQL        CON_ID
---------- ---------------------------------------- ---------------------------------------- ---------- ----------
1793141417 +00000 01:00:00.0                        +00008 00:00:00.0                        DEFAULT             0
4182556862 +00000 00:30:00.0                        +00008 00:00:00.0                        DEFAULT             3

3. cdb_hist_snapshot 을 조회해서 CDB, PDB 의 AWR snapshot 확인가능

SQL> alter session set container=CDB$ROOT;
SQL> select con_id, instance_number, snap_id, begin_interval_time, end_interval_time from cdb_hist_snapshot order by 1,2,3;

    CON_ID INSTANCE_NUMBER    SNAP_ID BEGIN_INTERVAL_TIME              END_INTERVAL_TIME
---------- --------------- ---------- -------------------------------- --------------------------------
         0               1          1 28-FEB-19 06.26.06.000 PM        28-FEB-19 07.00.14.425 PM
         0               1          2 28-FEB-19 07.00.14.425 PM        28-FEB-19 08.00.30.362 PM
         0               1          3 28-FEB-19 08.00.30.362 PM        28-FEB-19 09.00.46.286 PM
         0               1          4 28-FEB-19 09.00.46.286 PM        28-FEB-19 10.00.02.598 PM
         0               1          5 28-FEB-19 10.00.02.598 PM        28-FEB-19 11.00.15.351 PM
         3               1          1 28-FEB-19 07.00.14.425 PM        28-FEB-19 07.30.36.225 PM   <<--- PDB snapshot
         3               1          2 28-FEB-19 07.30.36.225 PM        28-FEB-19 08.00.31.532 PM   <<--- PDB snapshot
         3               1          3 28-FEB-19 08.00.31.532 PM        28-FEB-19 08.30.10.270 PM   <<--- PDB snapshot

4. CDB 에서 CDB AWR report 생성

SQL> alter session set container=CDB$ROOT;
SQL> @?/rdbms/admin/awrrpt    

5. PDB에서 PDB AWR reportSQL> alter session set container=PDB1;
SQL> @?/rdbms/admin/awrrpt

Specify the Report Type
~~~~~~~~~~~~~~~~~~~~~~~
AWR reports can be generated in the following formats.  Please enter the name of the format at the prompt.  Default value is 'html'.

'html'          HTML format (default)
'text'          Text format
'active-html'   Includes Performance Hub active report

Enter value for report_type: 

Specify the location of AWR Data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
AWR_ROOT - Use AWR data from root (default)  
AWR_PDB  - Use AWR data from PDB          <<------- PDB Snapshot이  별도로 생성된 경우 선택가능
 
Enter value for awr_location:

 

AWR Snapshots and Reports from Oracle Multitentant Database(CDB, PDB) (Doc ID 2295998.1)

Posted by pat98

 

뚱베이가 40주년 기념으로 12월18일 내한공연한다고 한다.

 

하긴 Far Beyond the Sun 이 1984년 발표이니 벌써 40년이 맞네..

 

일본공연 왔다가 한국에 잠깐 불고기 먹으려고 오는 느낌..

 

이전엔 돈이 없어서 못갔지만..

젤 좋아하는 기타리스트 임에도

이제 어느정도 경제적 여유는 되지만

시간적, 육체적으로 땡기지는 않네..ㅎㅎ

Posted by pat98

 

특정 Tablspace 를 제외시키고 duplicate 가 가능한지 테스트 해봄

 

원본에 TEST 라는 tablespace 를 만들고 복제를 진행한다.

 

SQL> create tablespace TEST datafile  '/oracle/app/oracle/oradata/ORCL/test01.dbf' size 100M;

 


RMAN> DUPLICATE DATABASE TO ORCL2 skip tablespace 'TEST'
2> FROM ACTIVE DATABASE
3> SPFILE
4> parameter_value_convert ('ORCL','ORCL2')
5> set db_file_name_convert='/oracle/app/oracle/oradata/ORCL/','/oracle/app/oracle/oradata/ORCL2/'
6> set log_file_name_convert='/oracle/app/oracle/oradata/ORCL/','/oracle/app/oracle/oradata/ORCL2/'
7> set control_files='/oracle/app/oracle/oradata/ORCL2/control01.ctl','/oracle/app/oracle/oradata/ORCL2/control02.ctl'
8> set log_archive_dest_1='location=/oracle/archive2'
9> ;
10>
Starting Duplicate Db at 2024-09-23:22:05:56
using target database control file instead of recovery catalog
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=38 device type=DISK
current log archived

contents of Memory Script:
{
   restore clone from service  'ORCL' spfile to
 '/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora';
   sql clone "alter system set spfile= ''/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora''";
}
executing Memory Script

Starting restore at 2024-09-23:22:05:58
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring SPFILE
output file name=/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 2024-09-23:22:06:02

sql statement: alter system set spfile= ''/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora''

contents of Memory Script:
{
   sql clone "alter system set  db_name =
 ''ORCL2'' comment=
 ''duplicate'' scope=spfile";
   sql clone "alter system set  audit_file_dest =
 ''/oracle/app/oracle/admin/ORCL2/adump'' comment=
 '''' scope=spfile";
   sql clone "alter system set  db_name =
 ''ORCL2'' comment=
 '''' scope=spfile";
   sql clone "alter system set  dispatchers =
 ''(PROTOCOL=TCP) (SERVICE=ORCL2XDB)'' comment=
 '''' scope=spfile";
   sql clone "alter system set  local_listener =
 ''LISTENER_ORCL2'' comment=
 '''' scope=spfile";
   sql clone "alter system set  db_file_name_convert =
 ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment=
 '''' scope=spfile";
   sql clone "alter system set  log_file_name_convert =
 ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment=
 '''' scope=spfile";
   sql clone "alter system set  control_files =
 ''/oracle/app/oracle/oradata/ORCL2/control01.ctl'', ''/oracle/app/oracle/oradata/ORCL2/control02.ctl'' comment=
 '''' scope=spfile";
   sql clone "alter system set  log_archive_dest_1 =
 ''location=/oracle/archive2'' comment=
 '''' scope=spfile";
   shutdown clone immediate;
   startup clone nomount;
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL2'' comment= ''duplicate'' scope=spfile
sql statement: alter system set  audit_file_dest =  ''/oracle/app/oracle/admin/ORCL2/adump'' comment= '''' scope=spfile
sql statement: alter system set  db_name =  ''ORCL2'' comment= '''' scope=spfile
sql statement: alter system set  dispatchers =  ''(PROTOCOL=TCP) (SERVICE=ORCL2XDB)'' comment= '''' scope=spfile
sql statement: alter system set  local_listener =  ''LISTENER_ORCL2'' comment= '''' scope=spfile
sql statement: alter system set  db_file_name_convert =  ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment= '''' scope=spfile
sql statement: alter system set  log_file_name_convert =  ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment= '''' scope=spfile
sql statement: alter system set  control_files =  ''/oracle/app/oracle/oradata/ORCL2/control01.ctl'', ''/oracle/app/oracle/oradata/ORCL2/control02.ctl'' comment= '''' scope=spfile
sql statement: alter system set  log_archive_dest_1 =  ''location=/oracle/archive2'' comment= '''' scope=spfile

Oracle instance shut down

connected to auxiliary database (not started)
Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes

contents of Memory Script:
{
   sql clone "alter system set  db_name =
 ''ORCL'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   sql clone "alter system set  db_unique_name =
 ''ORCL2'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   shutdown clone immediate;
   startup clone force nomount
   restore clone from service  'ORCL' primary controlfile;
   alter clone database mount;
}
executing Memory Script

 

sql statement: alter system set  db_name =  ''ORCL'' comment= ''Modified by RMAN duplicate'' scope=spfile
sql statement: alter system set  db_unique_name =  ''ORCL2'' comment= ''Modified by RMAN duplicate'' scope=spfile

Oracle instance shut down

Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes

Starting restore at 2024-09-23:22:06:54
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=35 device type=DISK

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring control file
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/oracle/app/oracle/oradata/ORCL2/control01.ctl
output file name=/oracle/app/oracle/oradata/ORCL2/control02.ctl
Finished restore at 2024-09-23:22:06:59

database mounted
Checking that duplicated tablespaces are self-contained
Datafile 5 skipped by request

contents of Memory Script:
{
   set newname for datafile  1 to
 "/oracle/app/oracle/oradata/ORCL2/system01.dbf";
   set newname for datafile  2 to
 "/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf";
   set newname for datafile  3 to
 "/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf";
   set newname for datafile  4 to
 "/oracle/app/oracle/oradata/ORCL2/users01.dbf";
   restore
   from  nonsparse   from service
 'ORCL'   clone database
   skip forever tablespace  "TEST"   ;
   sql 'alter system archive log current';
}
executing Memory Script

executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME

Starting restore at 2024-09-23:22:07:09
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /oracle/app/oracle/oradata/ORCL2/system01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:03
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /oracle/app/oracle/oradata/ORCL2/sysaux01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:03
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /oracle/app/oracle/oradata/ORCL2/undotbs01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00004 to /oracle/app/oracle/oradata/ORCL2/users01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 2024-09-23:22:07:18

sql statement: alter system archive log current
current log archived

contents of Memory Script:
{
   restore clone force from service  'ORCL'
           archivelog from scn  1346295;
   switch clone datafile all;
}
executing Memory Script

Starting restore at 2024-09-23:22:07:19
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=71
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=72
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 2024-09-23:22:07:21

datafile 1 switched to datafile copy
input datafile copy RECID=5 STAMP=1180476441 file name=/oracle/app/oracle/oradata/ORCL2/system01.dbf
datafile 2 switched to datafile copy
input datafile copy RECID=6 STAMP=1180476441 file name=/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=7 STAMP=1180476441 file name=/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=8 STAMP=1180476441 file name=/oracle/app/oracle/oradata/ORCL2/users01.dbf

contents of Memory Script:
{
   set until scn  1346449;
   recover
   clone database
   skip forever tablespace  "TEST"    delete archivelog
   ;
}
executing Memory Script

executing command: SET until clause

Starting recover at 2024-09-23:22:07:21
using channel ORA_AUX_DISK_1

Executing: alter database datafile 5 offline drop
starting media recovery

archived log for thread 1 with sequence 71 is already on disk as file /oracle/archive2/arch_1_1151767787_71.arc
archived log for thread 1 with sequence 72 is already on disk as file /oracle/archive2/arch_1_1151767787_72.arc
archived log file name=/oracle/archive2/arch_1_1151767787_71.arc thread=1 sequence=71
archived log file name=/oracle/archive2/arch_1_1151767787_72.arc thread=1 sequence=72
media recovery complete, elapsed time: 00:00:00
Finished recover at 2024-09-23:22:07:22

contents of Memory Script:
{
   delete clone force archivelog all;
}
executing Memory Script

released channel: ORA_AUX_DISK_1
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=85 device type=DISK
deleted archived log
archived log file name=/oracle/archive2/arch_1_1151767787_71.arc RECID=1 STAMP=1180476439
deleted archived log
archived log file name=/oracle/archive2/arch_1_1151767787_72.arc RECID=2 STAMP=1180476440
Deleted 2 objects

Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes

contents of Memory Script:
{
   sql clone "alter system set  db_name =
 ''ORCL2'' comment=
 ''Reset to original value by RMAN'' scope=spfile";
   sql clone "alter system reset  db_unique_name scope=spfile";
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL2'' comment= ''Reset to original value by RMAN'' scope=spfile

sql statement: alter system reset  db_unique_name scope=spfile
Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes
sql statement: CREATE CONTROLFILE REUSE SET DATABASE "ORCL2" RESETLOGS ARCHIVELOG
  MAXLOGFILES     16
  MAXLOGMEMBERS      3
  MAXDATAFILES      100
  MAXINSTANCES     8
  MAXLOGHISTORY      292
 LOGFILE
  GROUP     1 ( '/oracle/app/oracle/oradata/ORCL2/redo01.log' ) SIZE 200 M  REUSE,
  GROUP     2 ( '/oracle/app/oracle/oradata/ORCL2/redo02.log' ) SIZE 200 M  REUSE,
  GROUP     3 ( '/oracle/app/oracle/oradata/ORCL2/redo03.log' ) SIZE 200 M  REUSE
 DATAFILE
  '/oracle/app/oracle/oradata/ORCL2/system01.dbf'
 CHARACTER SET AL32UTF8

contents of Memory Script:
{
   set newname for tempfile  1 to
 "/oracle/app/oracle/oradata/ORCL2/temp01.dbf";
   switch clone tempfile all;
   catalog clone datafilecopy  "/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf",
 "/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf",
 "/oracle/app/oracle/oradata/ORCL2/users01.dbf";
   switch clone datafile all;
}
executing Memory Script

executing command: SET NEWNAME

renamed tempfile 1 to /oracle/app/oracle/oradata/ORCL2/temp01.dbf in control file

cataloged datafile copy
datafile copy file name=/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf RECID=1 STAMP=1180476479
cataloged datafile copy
datafile copy file name=/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf RECID=2 STAMP=1180476479
cataloged datafile copy
datafile copy file name=/oracle/app/oracle/oradata/ORCL2/users01.dbf RECID=3 STAMP=1180476479

datafile 2 switched to datafile copy
input datafile copy RECID=1 STAMP=1180476479 file name=/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=2 STAMP=1180476479 file name=/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=3 STAMP=1180476479 file name=/oracle/app/oracle/oradata/ORCL2/users01.dbf

contents of Memory Script:
{
   Alter clone database open resetlogs;
}
executing Memory Script

database opened
Dropping offline and skipped tablespaces
Executing: drop tablespace "TEST" including contents cascade constraints
Finished Duplicate Db at 2024-09-23:22:08:14

Recovery Manager complete.

 

- Source 

 

TABLESPACE_NAME      FILE_NAME                                           TOT_KB      FREE_KB USAGE_P
-------------------- --------------------------------------------- ------------ ------------ -------
SYSAUX               /oracle/app/oracle/oradata/ORCL/sysaux01.dbf       563,200      181,056    67.9
SYSTEM               /oracle/app/oracle/oradata/ORCL/system01.dbf       716,800      101,888    85.8
TEST                 /oracle/app/oracle/oradata/ORCL/test01.dbf         102,400      101,376     1.0
UNDOTBS1             /oracle/app/oracle/oradata/ORCL/undotbs01.dbf      261,120       79,680    69.5
USERS                /oracle/app/oracle/oradata/ORCL/users01.dbf          5,120        4,096    20.0

 

- Target 

 

TABLESPACE_NAME      FILE_NAME                                           TOT_KB      FREE_KB USAGE_P
-------------------- --------------------------------------------- ------------ ------------ -------
SYSAUX               /oracle/app/oracle/oradata/ORCL2/sysaux01.dbf      563,200      175,488    68.8
SYSTEM               /oracle/app/oracle/oradata/ORCL2/system01.dbf      716,800      101,888    85.8
UNDOTBS1             /oracle/app/oracle/oradata/ORCL2/undotbs01.dbf     261,120       78,656    69.9
USERS                /oracle/app/oracle/oradata/ORCL2/users01.dbf         5,120        4,096    20.0

Posted by pat98

 

What is left of you black bat
gettin' off at sunset by your cave
where the ones like you were happy
to spy upon a white, white dove
who's flyin' so away in the light.

What is left of you black bat
never listen to who said:
“She's unlike you, you can't love
who flies to the sun like her,
you’re so ugly, if she sees ya
she’ll getaway…”

 Just a shadow in the night.

 What brings you black bat
to learn the softly way she flies
to look toward the light
to get out before the darkness
and follow her through the empty skies.

 How you've been lovin' her black bat
to stand always their sights
even if you’ve been lookin' like her
some of the real you was still alive
so different dark and misunderstood.

Like a shadow in the night.

What have you felt black bat
when you've disclosed yourself  and she got away
when  the doves shove you off
and the ones like you won't take ya back
you're so different at last even of them.
 
What is left of you black bat
when you think it isn’t right
flightin’ the blinding sun
that's tellin' you: "No place to ya,
you now just gotta die!".
 
Just a shadow in the night
without peace, without life.
Just a shadow in the night
a heart‑beat in the ashes.

Posted by pat98

 

일본의 AV 배우 사쿠라 마나 의 연작 소설 '최저(最低)'

내 취향(?) 은 아니라 그녀의 작품은 보지 못했다.

책은 얇아서 금방 읽을수 있었다.

 

4개의 에피소드로 이루어진

전체적으로 아쉬움은 남지만

그렇다고 무시할수 없는 필력을 가지고 있다.

 

성진국인 일본에서도 AV쪽은 인간이하의 취급을 받는 것일까?

 

하지만 누구든 이해할수 없는 분야에서 일하는 것은

각자의 사정이 있는 것이다.

Posted by pat98

 

린킨 파크가 여성 보컬을 영입하고 재결합한다고 한다. Oasis 에 이어 웬 뜬금포..

한국에도 13년만에 내한해서 공연도 할 예정..

 

흠...하지만 체스터 베닝턴 없는 린킨 파크는 앙꼬없는 찐빵이랄까?

좋긴 한데 딱히 기대는 되지 않는다.

죽은 자식 XX 만지기 같은..

 

Posted by pat98

12c Alert Log Appears To Show Unexpected Instance Restart (Doc ID 2049516.1)
Dumping Current Patch Information Shows Up In Alert Log At Random Times (Doc ID 2377750.1)

증상 : 
log.xml 파일이 10MB 에 도달하여 새로 생성되는 시점에 alert log 에 "Creating new log segment:" 정보 발생하거나
또는 재기동하지 않았는데 뜬금없이 db parameter 정보와 patch 정보를 alert 에 발생시킴

Solution : 
-> ls -al $ORACLE_BASE/diag/rdbms/sid/SID/alert 에서 xml 파일 확인
-> log.xml 은 10M 단위로 rotate 됨

SQL> alter system set "_log_segment_dump_parameter"=FALSE <---- db parameter
SQL> alter system set "_log_segment_dump_patch"=FALSE       <---- db patch

두 파라미터 모두 시스템 즉시 적용 되며 , 운영에 지장을 주지 않음.

XML alert log 인 log.xml file 이 새로 생성될 때, db 의 parameter 정보와 patch 정보를 남기는 기능을 off 하는 기능임.

Posted by pat98


원격이 아닌 Local 환경에서 rman dulicate 테스트를 해 보자..

- 현재 Single 19c 환경에 ORCL 이라는 DB가 있다.
  필요에 의해 ORCL2 이라는 이름으로 DB 복제하여 생성하고자 할 경우 아래과 같이 진행...
  

전체조건 : Source가 Archive mode 이여야 가능함 !!

테스트 환경은 19.23 으로 진행
    
1. parameter 화일 생성

vi /oracle/app/oracle/product/19.0.0/dbs/initORCL2.ora
DB_NAME=ORCL2

2. passwd 화일 생성

$ORACLE_HOME/dbs/orapwd file=orapwORCL2 password=oracle entries=10 format=12 force=y

3. 접속환경 구성

listener.ora 에 추가

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = ora19c)(PORT = 1522))
    )
  )

SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (GLOBAL_DBNAME = ORCL2)
      (ORACLE_HOME = /oracle/app/oracle/product/19.0.0)
      (SID_NAME = ORCL2)
    )
  )

tnsnames.ora 에 추가

ORCL2 =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = ora19c)(PORT = 1522))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = ORCL2)
    )
  )
  
 [ORCL2]oracle@ora19c:/home/oracle# lsnrctl status

LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 20-AUG-2024 16:02:21

Copyright (c) 1991, 2024, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.56.140)(PORT=1522)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 19.0.0.0.0 - Production
Start Date                20-AUG-2024 14:52:10
Uptime                    0 days 1 hr. 10 min. 11 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /oracle/app/oracle/product/19.0.0/network/admin/listener.ora
Listener Log File         /oracle/app/oracle/diag/tnslsnr/ora19c/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.56.140)(PORT=1522)))
Services Summary...
Service "ORCL" has 1 instance(s).
  Instance "ORCL", status READY, has 1 handler(s) for this service...
Service "ORCL2" has 1 instance(s).
  Instance "ORCL2", status UNKNOWN, has 1 handler(s) for this service...
Service "ORCLXDB" has 1 instance(s).
  Instance "ORCL", status READY, has 1 handler(s) for this service...
The command completed successfully

3. 디렉토리 생성
mkdir -p /oracle/app/oracle/oradata/ORCL2
mkdir -p /oracle/app/oracle/admin/ORCL2/adump
mkdir -p /oracle/archive2

5. nomount 로 DB기동

export ORACLE_SID=ORCL2
sqlplus "/as sysdba"

startup nomount pfile=/oracle/app/oracle/product/19.0.0/dbs/initORCL2.ora

6. rman 접속

! rman target sys/oracle@ORCL auxiliary sys/oracle@ORCL2

RMAN>
DUPLICATE DATABASE TO ORCL2
FROM ACTIVE DATABASE
SPFILE
parameter_value_convert ('ORCL','ORCL2')
set db_file_name_convert='/oracle/app/oracle/oradata/ORCL/','/oracle/app/oracle/oradata/ORCL2/'
set log_file_name_convert='/oracle/app/oracle/oradata/ORCL/','/oracle/app/oracle/oradata/ORCL2/'
set control_files='/oracle/app/oracle/oradata/ORCL2/control01.ctl','/oracle/app/oracle/oradata/ORCL2/control02.ctl'
set log_archive_dest_1='location=/oracle/archive2'
;

- 여기서부터는 진행 로그
Starting Duplicate Db at 20-AUG-24
using target database control file instead of recovery catalog
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=38 device type=DISK
current log archived

contents of Memory Script:
{
   restore clone from service  'ORCL' spfile to 
 '/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora';
   sql clone "alter system set spfile= ''/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora''";
}
executing Memory Script

Starting restore at 20-AUG-24
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring SPFILE
output file name=/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 20-AUG-24

sql statement: alter system set spfile= ''/oracle/app/oracle/product/19.0.0/dbs/spfileORCL2.ora''

contents of Memory Script:
{
   sql clone "alter system set  db_name = 
 ''ORCL2'' comment=
 ''duplicate'' scope=spfile";
   sql clone "alter system set  audit_file_dest = 
 ''/oracle/app/oracle/admin/ORCL2/adump'' comment=
 '''' scope=spfile";
   sql clone "alter system set  db_name = 
 ''ORCL2'' comment=
 '''' scope=spfile";
   sql clone "alter system set  dispatchers = 
 ''(PROTOCOL=TCP) (SERVICE=ORCL2XDB)'' comment=
 '''' scope=spfile";
   sql clone "alter system set  local_listener = 
 ''LISTENER_ORCL2'' comment=
 '''' scope=spfile";
   sql clone "alter system set  db_file_name_convert = 
 ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment=
 '''' scope=spfile";
   sql clone "alter system set  log_file_name_convert = 
 ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment=
 '''' scope=spfile";
   sql clone "alter system set  control_files = 
 ''/oracle/app/oracle/oradata/ORCL2/control01.ctl'', ''/oracle/app/oracle/oradata/ORCL2/control02.ctl'' comment=
 '''' scope=spfile";
   sql clone "alter system set  log_archive_dest_1 = 
 ''location=/oracle/archive2'' comment=
 '''' scope=spfile";
   shutdown clone immediate;
   startup clone nomount;
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL2'' comment= ''duplicate'' scope=spfile

sql statement: alter system set  audit_file_dest =  ''/oracle/app/oracle/admin/ORCL2/adump'' comment= '''' scope=spfile

sql statement: alter system set  db_name =  ''ORCL2'' comment= '''' scope=spfile

sql statement: alter system set  dispatchers =  ''(PROTOCOL=TCP) (SERVICE=ORCL2XDB)'' comment= '''' scope=spfile

sql statement: alter system set  local_listener =  ''LISTENER_ORCL2'' comment= '''' scope=spfile

sql statement: alter system set  db_file_name_convert =  ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment= '''' scope=spfile

sql statement: alter system set  log_file_name_convert =  ''/oracle/app/oracle/oradata/ORCL/'', ''/oracle/app/oracle/oradata/ORCL2/'' comment= '''' scope=spfile

sql statement: alter system set  control_files =  ''/oracle/app/oracle/oradata/ORCL2/control01.ctl'', ''/oracle/app/oracle/oradata/ORCL2/control02.ctl'' comment= '''' scope=spfile

sql statement: alter system set  log_archive_dest_1 =  ''location=/oracle/archive2'' comment= '''' scope=spfile

Oracle instance shut down

connected to auxiliary database (not started)
Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes

contents of Memory Script:
{
   sql clone "alter system set  db_name = 
 ''ORCL'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   sql clone "alter system set  db_unique_name = 
 ''ORCL2'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   shutdown clone immediate;
   startup clone force nomount
   restore clone from service  'ORCL' primary controlfile;
   alter clone database mount;
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL'' comment= ''Modified by RMAN duplicate'' scope=spfile

sql statement: alter system set  db_unique_name =  ''ORCL2'' comment= ''Modified by RMAN duplicate'' scope=spfile

Oracle instance shut down

Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes

Starting restore at 20-AUG-24
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=7 device type=DISK

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring control file
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/oracle/app/oracle/oradata/ORCL2/control01.ctl
output file name=/oracle/app/oracle/oradata/ORCL2/control02.ctl
Finished restore at 20-AUG-24

database mounted

contents of Memory Script:
{
   set newname for datafile  1 to 
 "/oracle/app/oracle/oradata/ORCL2/system01.dbf";
   set newname for datafile  2 to 
 "/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf";
   set newname for datafile  3 to 
 "/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf";
   set newname for datafile  4 to 
 "/oracle/app/oracle/oradata/ORCL2/users01.dbf";
   restore
   from  nonsparse   from service 
 'ORCL'   clone database
   ;
   sql 'alter system archive log current';
}
executing Memory Script

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

Starting restore at 20-AUG-24
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /oracle/app/oracle/oradata/ORCL2/system01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:03
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /oracle/app/oracle/oradata/ORCL2/sysaux01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /oracle/app/oracle/oradata/ORCL2/undotbs01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00004 to /oracle/app/oracle/oradata/ORCL2/users01.dbf
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 20-AUG-24

sql statement: alter system archive log current
current log archived

contents of Memory Script:
{
   restore clone force from service  'ORCL' 
           archivelog from scn  1080410;
   switch clone datafile all;
}
executing Memory Script

Starting restore at 20-AUG-24
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=36
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: using network backup set from service ORCL
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=37
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 20-AUG-24

datafile 1 switched to datafile copy
input datafile copy RECID=5 STAMP=1177516834 file name=/oracle/app/oracle/oradata/ORCL2/system01.dbf
datafile 2 switched to datafile copy
input datafile copy RECID=6 STAMP=1177516834 file name=/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=7 STAMP=1177516834 file name=/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=8 STAMP=1177516834 file name=/oracle/app/oracle/oradata/ORCL2/users01.dbf

contents of Memory Script:
{
   set until scn  1080548;
   recover
   clone database
    delete archivelog
   ;
}
executing Memory Script

executing command: SET until clause

Starting recover at 20-AUG-24
using channel ORA_AUX_DISK_1

starting media recovery

archived log for thread 1 with sequence 36 is already on disk as file /oracle/archive2/arch_1_1151767787_36.arc
archived log for thread 1 with sequence 37 is already on disk as file /oracle/archive2/arch_1_1151767787_37.arc
archived log file name=/oracle/archive2/arch_1_1151767787_36.arc thread=1 sequence=36
archived log file name=/oracle/archive2/arch_1_1151767787_37.arc thread=1 sequence=37
media recovery complete, elapsed time: 00:00:00
Finished recover at 20-AUG-24

contents of Memory Script:
{
   delete clone force archivelog all;
}
executing Memory Script

released channel: ORA_AUX_DISK_1
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=80 device type=DISK
deleted archived log
archived log file name=/oracle/archive2/arch_1_1151767787_36.arc RECID=1 STAMP=1177516832
deleted archived log
archived log file name=/oracle/archive2/arch_1_1151767787_37.arc RECID=2 STAMP=1177516833
Deleted 2 objects

Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes

contents of Memory Script:
{
   sql clone "alter system set  db_name = 
 ''ORCL2'' comment=
 ''Reset to original value by RMAN'' scope=spfile";
   sql clone "alter system reset  db_unique_name scope=spfile";
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL2'' comment= ''Reset to original value by RMAN'' scope=spfile

sql statement: alter system reset  db_unique_name scope=spfile
Oracle instance started

Total System Global Area    3690983864 bytes

Fixed Size                     8946104 bytes
Variable Size                721420288 bytes
Database Buffers            2952790016 bytes
Redo Buffers                   7827456 bytes
sql statement: CREATE CONTROLFILE REUSE SET DATABASE "ORCL2" RESETLOGS ARCHIVELOG 
  MAXLOGFILES     16
  MAXLOGMEMBERS      3
  MAXDATAFILES      100
  MAXINSTANCES     8
  MAXLOGHISTORY      292
 LOGFILE
  GROUP     1 ( '/oracle/app/oracle/oradata/ORCL2/redo01.log' ) SIZE 200 M  REUSE,
  GROUP     2 ( '/oracle/app/oracle/oradata/ORCL2/redo02.log' ) SIZE 200 M  REUSE,
  GROUP     3 ( '/oracle/app/oracle/oradata/ORCL2/redo03.log' ) SIZE 200 M  REUSE
 DATAFILE
  '/oracle/app/oracle/oradata/ORCL2/system01.dbf'
 CHARACTER SET AL32UTF8


contents of Memory Script:
{
   set newname for tempfile  1 to 
 "/oracle/app/oracle/oradata/ORCL2/temp01.dbf";
   switch clone tempfile all;
   catalog clone datafilecopy  "/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf", 
 "/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf", 
 "/oracle/app/oracle/oradata/ORCL2/users01.dbf";
   switch clone datafile all;
}
executing Memory Script

executing command: SET NEWNAME

renamed tempfile 1 to /oracle/app/oracle/oradata/ORCL2/temp01.dbf in control file

cataloged datafile copy
datafile copy file name=/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf RECID=1 STAMP=1177516866
cataloged datafile copy
datafile copy file name=/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf RECID=2 STAMP=1177516866
cataloged datafile copy
datafile copy file name=/oracle/app/oracle/oradata/ORCL2/users01.dbf RECID=3 STAMP=1177516866

datafile 2 switched to datafile copy
input datafile copy RECID=1 STAMP=1177516866 file name=/oracle/app/oracle/oradata/ORCL2/sysaux01.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=2 STAMP=1177516866 file name=/oracle/app/oracle/oradata/ORCL2/undotbs01.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=3 STAMP=1177516866 file name=/oracle/app/oracle/oradata/ORCL2/users01.dbf

contents of Memory Script:
{
   Alter clone database open resetlogs;
}
executing Memory Script

database opened
Finished Duplicate Db at 20-AUG-24

RMAN>

복제 완료 !!

- 테스트후 ORCL2 drop

export ORACLE_SID=ORCL2
sqlplus "/as sysdba"

shutdown immediate
startup mount exclusive restrict;
drop database;

- 만일 이짓거리를 반복적으로 수행하고자 한다면..

1. vi dup.sql

DUPLICATE DATABASE TO ORCL2
FROM ACTIVE DATABASE
SPFILE
parameter_value_convert ('ORCL','ORCL2')
set db_file_name_convert='/oracle/app/oracle/oradata/ORCL/','/oracle/app/oracle/oradata/ORCL2/'
set log_file_name_convert='/oracle/app/oracle/oradata/ORCL/','/oracle/app/oracle/oradata/ORCL2/'
set control_files='/oracle/app/oracle/oradata/ORCL2/control01.ctl','/oracle/app/oracle/oradata/ORCL2/control02.ctl'
set log_archive_dest_1='location=/oracle/archive2'
;


2. vi dup.sh
export ORACLE_SID=ORCL2
sqlplus / as sysdba <<EOF
shutdown immediate;
startup mount exclusive restrict;
drop database;
EOF
export ORACLE_SID=ORCL2
sqlplus / as sysdba <<EOF
startup nomount pfile='/oracle/app/oracle/product/19.0.0/dbs/initORCL2.ora';
! rman target sys/oracle@ORCL auxiliary sys/oracle@ORCL2 cmdfile=/home/oracle/dup.sql log=/home/oracle/dup.log append
exit
EOF

3. crontab 등록해서 원하는 주기로 반복 사용 가능
00 23 * * * /home/oracle/dup.sh

Posted by pat98

05-13 00:01
Flag Counter
Yesterday
Today
Total

글 보관함

최근에 올라온 글

달력

 « |  » 2025.5
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

최근에 달린 댓글