若PDB 的数据文件存储在 18c 、 19c 的非 ASM 存储中,则可以正常使用,但是若 PDB 的数据文件存储在 18c 、 19c 的 ASM 中,则创建快照会报错 ORA-17517 ,目前无解:
SYS@lhr19cdb> alter pluggable database snapshot test_snapshot;
alter pluggable database snapshot test_snapshot
*
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-65169: error encountered while attempting to copy file +DATA/LHR19CDB/A2ED06838339ABB0E053343BA8C0289C/DATAFILE/undotbs1.270.1037379889
ORA-17517: Database cloning using storage snapshot failed on file 8:+DATA/LHR19CDB/A2ED06838339ABB0E053343BA8C0289C/DATAFILE/undotbs1.270.1037379889
SYS@lhr19cdb> alter system set db_create_file_dest='/u01/app/oracle/oradata/'; System altered. SYS@lhr19cdb> create pluggable database pdb1 admin user lhr identified by lhr; Pluggable database created. SYS@lhr19cdb> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 2 PDB$SEED READ ONLY NO 3 PDBLHR1 READ WRITE NO 5 PDB1 MOUNTED SYS@lhr19cdb> alter pluggable database pdb1 open; Pluggable database altered. SYS@lhr19cdb> aler session set container=pdb1; SP2-0734: unknown command beginning "aler sessi..." - rest of line ignored. SYS@lhr19cdb> alter session set container=pdb1; Session altered. SYS@lhr19cdb> SYS@lhr19cdb> alter pluggable database snapshot test_snapshot; alter pluggable database snapshot test_snapshot * ERROR at line 1: ORA-12754: Feature PDB SNAPSHOT CAROUSEL is disabled due to missing capability . SYS@lhr19cdb> SYS@lhr19cdb> alter system set "_exadata_feature_on"=true scope=spfile; alter system set "_exadata_feature_on"=true scope=spfile * ERROR at line 1: ORA-65040: operation not allowed from within a pluggable database SYS@lhr19cdb> conn / as sysdba Connected. SYS@lhr19cdb> SYS@lhr19cdb> alter system set "_exadata_feature_on"=true scope=spfile; System altered. SYS@lhr19cdb> startup force ORACLE instance started. Total System Global Area 1073738488 bytes Fixed Size 9143032 bytes Variable Size 742391808 bytes Database Buffers 314572800 bytes Redo Buffers 7630848 bytes Database mounted. Database opened. SYS@lhr19cdb> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 2 PDB$SEED READ ONLY NO 3 PDBLHR1 READ WRITE NO 5 PDB1 MOUNTED SYS@lhr19cdb> alter pluggable database PDB1 open; Pluggable database altered. SYS@lhr19cdb> alter session set container=pdb1; Session altered. SYS@lhr19cdb> alter pluggable database snapshot test_snapshot; Pluggable database altered. SYS@lhr19cdb> SYS@lhr19cdb> SET LINESIZE 1500 pagesize 1000 SYS@lhr19cdb> COL CON_NAME FORMAT a10 SYS@lhr19cdb> COL SNAPSHOT_NAME FORMAT a30 SYS@lhr19cdb> COL SNAP_SCN FORMAT 9999999 SYS@lhr19cdb> COL FULL_SNAPSHOT_PATH FORMAT a70 SYS@lhr19cdb> COL SNAP_TIME format a20 SYS@lhr19cdb> SELECT CON_ID, 2 CON_NAME, 3 SNAPSHOT_NAME, 4 SNAPSHOT_SCN AS snap_scn, 5 to_char(scn_to_timestamp(a.SNAPSHOT_SCN), 'yyyy-mm-dd hh24:mi:ss') snap_time, 6 FULL_SNAPSHOT_PATH 7 FROM CDB_PDB_SNAPSHOTS A 8 ORDER BY SNAP_SCN; CON_ID CON_NAME SNAPSHOT_NAME SNAP_SCN SNAP_TIME FULL_SNAPSHOT_PATH ---------- ---------- ------------------------------ -------- -------------------- ---------------------------------------------------------------------- 5 PDB1 TEST_SNAPSHOT 2926315 2020-05-08 10:39:42 /u01/app/oracle/oradata/snap_2990742954_2926315.pdb SYS@lhr19cdb> alter session set container=PDBLHR1; Session altered. SYS@lhr19cdb> alter pluggable database snapshot; alter pluggable database snapshot * ERROR at line 1: ORA-00604: error occurred at recursive SQL level 1 ORA-65169: error encountered while attempting to copy file +DATA/LHR19CDB/A2ED06838339ABB0E053343BA8C0289C/DATAFILE/undotbs1.270.1037379889 ORA-17517: Database cloning using storage snapshot failed on file 8:+DATA/LHR19CDB/A2ED06838339ABB0E053343BA8C0289C/DATAFILE/undotbs1.270.1037379889
Create PDB From Snapshot Copy Throws ORA-65169/ORA-17525 Errors (Doc ID 2084589.1)
In this Document
| Symptoms |
| Cause |
| Solution |
| References |
APPLIES TO:
Oracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Oracle Database Cloud Exadata Service - Version N/A and later
Information in this document applies to any platform.
SYMPTOMS
On 12c database, create pdb from snapshot copy throws ora-65169/ora-17525 errors :
create pluggable database pclone1 from pclone snapshot copy file_name_convert=('/oradata/testclone/datafile/o1_mf_system_c5bocwh0_.dbf','/oradata/testclone2/system01.dbf','/oradata/testclone/datafile/o1_mf_sysaux_c5bocwh3_.dbf','/oradata/testclone2/sysaux01.dbf','/oradata/testclone/datafile/o1_mf_users_c5bocwh5_.dbf','/oradata/testclone2/users01.dbf','/oradata/testclone/datafile/o1_mf_temp_c5bocwh5_.dbf','/oradata/testclone2/temp01.dbf')
*
ERROR at line 1:
ORA-65169: error encountered while attempting to copy file
/oradata/testclone/datafile/o1_mf_syst
em_c5bocwh0_.dbf
ORA-17525: Database clone using storage snapshot not supported on file
/oradata/testclone/datafile/o1_mf_syst
em_c5bocwh0_.dbf
CAUSE
1. The storage does not support file snapshots.
2. clonedb was not set .
SOLUTION
The ORA-17525 error is thrown because the storage does not support file snapshots. Use a compatible storage.
Or)
Set clonedb=TRUE
SQL> alter system set clonedb=true scope=spfile;
Then restart database
About Me
|
........................................................................................................................ ● 本文作者:小麦苗,部分内容整理自网络,若有侵权请联系小麦苗删除 ● 本文在itpub、博客园、CSDN和个人微 信公众号( DB宝)上有同步更新 ● 本文itpub地址: http://blog.itpub.net/26736162 ● 本文博客园地址: http://www.cnblogs.com/lhrbest ● 本文CSDN地址: https://blog.csdn.net/lihuarongaini ● 本文pdf版、个人简介及小麦苗云盘地址: http://blog.itpub.net/26736162/viewspace-1624453/ ● 数据库笔试面试题库及解答: http://blog.itpub.net/26736162/viewspace-2134706/ ● DBA宝典今日头条号地址: http://www.toutiao.com/c/user/6401772890/#mid=1564638659405826 ........................................................................................................................ ● QQ群号: 230161599 、618766405 ● 微 信群:可加我微 信,我拉大家进群,非诚勿扰 ● 联系我请加QQ好友 ( 646634621 ),注明添加缘由 ● 于 2020-05-01 06:00 ~ 2020-05-30 24:00 在西安完成 ● 最新修改时间:2020-05-01 06:00 ~ 2020-05-30 24:00 ● 文章内容来源于小麦苗的学习笔记,部分整理自网络,若有侵权或不当之处还请谅解 ● 版权所有,欢迎分享本文,转载请保留出处 ........................................................................................................................ ● 小麦苗的微店: https://weidian.com/s/793741433?wfr=c&ifr=shopdetail ● 小麦苗出版的数据库类丛书: http://blog.itpub.net/26736162/viewspace-2142121/ ● 小麦苗OCP、OCM、高可用网络班: http://blog.itpub.net/26736162/viewspace-2148098/ ● 小麦苗腾讯课堂主页: https://lhr.ke.qq.com/ ........................................................................................................................ 使用 微 信客户端扫描下面的二维码来关注小麦苗的微 信公众号( DB宝)及QQ群(DBA宝典)、添加小麦苗微 信, 学习最实用的数据库技术。
........................................................................................................................ |
![]() |
|

