Backing up a control file - Amazon Relational Database Service

Backing up a control file

Amazon RDS 프로시저 rdsadmin.rdsadmin_rman_util.backup_current_controlfile를 사용하여 제어 파일을 백업할 수 있습니다.

이 프로시저에서는 RMAN 작업을 위해 다음과 같은 공통 파라미터를 사용합니다.

  • p_owner

  • p_directory_name

  • p_label

  • p_compress

  • p_rman_to_dbms_output

  • p_tag

자세한 내용은 RMAN 프로시저용 공통 파라미터 섹션을 참조하세요.

이 프로시저는 다음 Amazon RDS for Oracle 엔진 버전에서 지원됩니다.

  • Oracle Database 21c(21.0.0)

  • Oracle Database 19c(19.0.0)

다음 예에서는 지정된 값을 파라미터에 사용하여 제어 파일을 백업합니다.

BEGIN rdsadmin.rdsadmin_rman_util.backup_current_controlfile( p_owner => 'SYS', p_directory_name => 'MYDIRECTORY', p_tag => 'CONTROL_FILE_BACKUP', p_rman_to_dbms_output => FALSE); END; /