rac中文名文件名添加到本地路径解决办法(ORA-01157)-非归档

本文介绍了解决 Oracle RAC 数据库中使用中文路径导致的 ORA-01157 错误的方法。通过停止数据库、复制并重命名数据文件、更改文件路径等步骤,最终成功解决了跨节点的路径识别问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

oracle rac中文名添加到本地路径解决办法(ORA-01157)


故障模拟(生产环境勿测试)

点击(此处)折叠或打开

  1. [grid@rac1-213-11 ~]# su - oracle
  2. [grid@rac1-213-11 ~]$ sqlplus / as sysdba
  3. SQL>alter table netdata add datafile '测试DATA'


在第二个节点上查询出现错误

点击(此处)折叠或打开

  1. [oracle@rac2-213-12 trace]$ sqlplus / as sysdba
  2. SQL*Plus: Release 11.2.0.4.0 Production on Sun Jul 1 22:07:21 2018
  3. Copyright (c) 1982, 2013, Oracle. All rights reserved.
  4. Connected to:
  5. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  6. With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
  7. Data Mining and Real Application Testing options
  8. SQL> select file_name from dba_data_files;
  9. ERROR:
  10. ORA-01157: cannot identify/lock data file 9 - see DBWR trace file
  11. ORA-01110: data file 9: '/u01/app/oracle/product/11.2.0/db_1/dbs/测试DATA'

  12. SQL> select file_name from dba_data_files;
  13. ERROR:
  14. ORA-01157: cannot identify/lock data file 9 - see DBWR trace file
  15. ORA-01110: data file 9: '/u01/app/oracle/product/11.2.0/db_1/dbs/娴????ìDATA'
关闭库,复制文件

点击(此处)折叠或打开

  1. --grd
  2. [grid@rac1-213-11 ~]$ srvctl stop database -d devdb


  3. --oracle
  4. [oracle@rac1-213-11 dbs]$ cp "测试DATA" netdata05.dbf


  5. mount 库
  6. --grid
  7. [grid@rac1-213-11 ~]$ srvctl start database -d devdb -o mount
  8. --oracle
  9. [oracle@rac1-213-11 ~]$ sqlplus / as sysdba


  10. SQL*Plus: Release 11.2.0.4.0 Production on Sun Jul 1 22:39:54 2018
  11. Copyright (c) 1982, 2013, Oracle. All rights reserved.

  12. Connected to:
  13. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  14. With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
  15. Data Mining and Real Application Testing options


  16. SQL> alter database rename file '/u01/app/oracle/product/11.2.0/db_1/dbs/测试DATA' to '/u01/app/oracle/product/11.2.0/db_1/dbs/netdata05.dbf';

  17. Database altered.



关闭库,再次复制文件至asm

点击(此处)折叠或打开

  1. [grid@rac1-213-11 ~]$ srvctl stop database -d devdb
  2. ASMCMD> cp /u01/app/oracle/product/11.2.0/db_1/dbs/netdata05.dbf .
  3. copying /u01/app/oracle/product/11.2.0/db_1/dbs/netdata05.dbf -> +DATA1/DEVDB/DATAFILE/netdata05.dbf
  4. ASMCMD> quit


mount库

点击(此处)折叠或打开

  1. [grid@rac1-213-11 ~]$ srvctl start database -d devdb -o mount



修改文件路径

点击(此处)折叠或打开

  1. SQL> alter database rename file '/u01/app/oracle/product/11.2.0/db_1/dbs/netdata05.dbf' to '+DATA1/DEVDB/DATAFILE/netdata05.dbf';
  2. SQL>Database altered.

关闭库

点击(此处)折叠或打开

  1. [grid@rac1-213-11 ~]$ srvctl stop database -d devdb
  2. 启动库
  3. [grid@rac1-213-11 ~]$ srvctl start database -d devdb





数据库已经正常

点击(此处)折叠或打开

  1. [oracle@rac1-213-11 ~]$ sqlplus / as sysdba
  2. SQL*Plus: Release 11.2.0.4.0 Production on Sun Jul 1 22:49:49 2018
  3. Copyright (c) 1982, 2013, Oracle. All rights reserved.
  4. Connected to:
  5. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  6. With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
  7. Data Mining and Real Application Testing options
  8. SQL> select open_mode from v$database;
  9. OPEN_MODE
  10. --------------------
  11. READ WRITE



节点2查看

点击(此处)折叠或打开

  1. [oracle@rac2-213-12 trace]$ sqlplus / as sysdba

  2. SQL*Plus: Release 11.2.0.4.0 Production on Sun Jul 1 22:07:21 2018

  3. Copyright (c) 1982, 2013, Oracle. All rights reserved

  4. Connected to:
  5. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  6. With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
  7. Data Mining and Real Application Testing options




  8. SQL> /


  9. FILE_NAME
  10. --------------------------------------------------------------------------------
  11. +DATA1/devdb/datafile/users.269.937046643
  12. +DATA1/devdb/datafile/undotbs1.276.937046643
  13. +DATA1/devdb/datafile/sysaux.277.937046643
  14. +DATA1/devdb/datafile/system.268.937046635
  15. +DATA1/devdb/datafile/undotbs2.267.937047083
  16. +DATA1/devdb/datafile/netdata.284.937049537
  17. +DATA1/devdb/datafile/netdata02.dbf
  18. +DATA1/devdb/datafile/netdata03.dbf
  19. +DATA1/devdb/datafile/netdata05.dbf


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/24486203/viewspace-2157171/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/24486203/viewspace-2157171/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值