|
数据库:oracle 19.3
系统:Windows 11
问题描述:在创建恢复目录时,报ORA-01950告警,如下所示:
C:\Users\Administrator>rman target / catalog rman_reuser/oracle
恢复管理器: Release 19.0.0.0.0 - Production on 星期五 5月 27 13:24:57 2022
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
已连接到目标数据库: ORCL (DBID=1624841057)
连接到恢复目录数据库
未安装恢复目录
RMAN> create catalog tablespace rman_ts;
创建 config_update 时出错
恢复目录数据库发生 Oracle 错误: ORA-01950: 对表空间 'RMAN_TS' 无权限
恢复目录数据库发生 Oracle 错误: ORA-00942: 表或视图不存在
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-06433: 安装恢复目录时出错
提示对表空间'RMAN_TS'无权限,那么授予权限即可.
执行过程:
C:\Users\Administrator>rman target / catalog rman_reuser/oracle
恢复管理器: Release 19.0.0.0.0 - Production on 星期五 5月 27 13:24:57 2022
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
已连接到目标数据库: ORCL (DBID=1624841057)
连接到恢复目录数据库
未安装恢复目录
SQL> grant unlimited tablespace to rman_reuser;
授权成功.
C:\Users\Administrator>rman target / catalog rman_reuser/oracle
恢复管理器: Release 19.0.0.0.0 - Production on 星期五 5月 27 13:36:02 2022
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
已连接到目标数据库: ORCL (DBID=1624841057)
连接到恢复目录数据库
RMAN> create catalog tablespace rman_ts;
恢复目录已创建
|
|