Oracle 视图 DBA_PDB_SAVED_STATES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_PDB_SAVED_STATES用于查询Pluggable Database(PDB)可用的挂起状态列表,也可以使查询未挂起但可挂起的PDB状态。 该视图列出了PDB中存储在磁盘上的备份文件,便于对PDB进行操作或进行相关的恢复操作。
使用此视图的步骤如下:
1.查询DBA_PDB_SAVED_STATES视图以查询PDB的可用备份:
SELECT * FROM DBA_PDB_SAVED_STATES;
2.确定哪个PDB需要被恢复:
SELECT * FROM DBA_PDB_SAVED_STATES WHERE PDB_NAME=’PDB_TO_RESTORE’;
3.恢复PDB_TO_RESTORE:
ALTER PLUGGABLE DATABASE PDB_TO_RESTORE RESTORE FROM SAVED STATE ‘SAVEDSTATE’;
官方英文解释
DBA_PDB_SAVED_STATES
shows information about the current saved PDB states in the CDB.
This view is a data link, so the data is also available within the PDB.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
The ID of the PDB |
|
|
|
Name of the PDB |
|
|
|
Name of the instance for which the state is saved |
|
|
|
Unique ID assigned to the PDB at creation time |
|
|
Globally unique immutable ID assigned to the PDB at creation time |
|
|
|
Open state of the PDB |
|
|
|
Restricted mode of the PDB |
See Also:
Oracle Database SQL
Language Reference for more information about preserving a PDB’s open mode across an instance restart