ORA-01324: cannot add file string due to DB_ID mismatch
Cause: The logfile is produced by a different database than other logfiles already added to the list.
Action: Specify a logfile produced by the same database.
错误:ORA-01324: 不能由于DB_ID不匹配而添加文件string
(1)此错误的数据库的DB_ID必须与要添加的文件的数据库的DB_ID一致。
(2)不能简单地从其它数据库复制并且粘贴文件,必须使用Oracle允许的文件复制机制来完成。
1、在创建数据库时不指定-file_name_convert参数;
2、使用手工编辑脚本移动数据文件;
3、使用系统管理工具(SYSDBA权限)移动数据文件。
1、正确移动数据文件:
(1)SQL> ALTER DATABASE RENAME FILE 'filename1’ TO 'filename2’;
(2)添加文件时指定-file_name_convert参数;
2、若想简单粘贴文件,则必须事先新建数据库,例如,使用Restore Database for Standby从一个文件移动另一个文件,在现有的备份文件的基础上新建数据库;
3、如果采用系统管理工具(SYSDBA权限)移动数据文件,则必须先停止数据库,将文件移动至指定位置,再启动数据库;
4、使用工具:alter database rename file ‘oldlocation’ to 'newlocation’;