RMAN-05614: Passwords for target and auxiliary connections must be the same when using active duplicate
时间: 2024-02-03 09:04:35 浏览: 221
这个错误提示表示在进行 active duplicate 操作时,目标数据库和辅助实例的连接密码必须相同。你需要确保在执行 active duplicate 命令时,使用相同的密码来连接目标数据库和辅助实例。你可以在 RMAN 中使用 CONNECT 命令来连接目标数据库和辅助实例,并且需要使用相同的密码。例如:
```
RMAN> CONNECT TARGET sys@target_db_password;
RMAN> CONNECT AUXILIARY sys@auxiliary_db_password;
```
在上面的命令中,"target_db_password" 和 "auxiliary_db_password" 应该是相同的密码。确保密码正确输入后,再次尝试执行 active duplicate 命令。
阅读全文