重建密码文件--解决ORA-01991错误

    技术2022-05-11  71

         统计服务器测试没问题,刚好上次配置系统的时候有点问题,故重装一次,配置好安全策略(最近在研究如何新配置一台服务器的时候,第一时间配置好相关的安全设置,有空再写下来)。

          为了省事,直接冷备份oracle的数据文件,安装好oracle后,直接恢复到原来对应的目录。启动,出现:

    SQL> startupORACLE 例程已经启动。

    Total System Global Area  135338868 bytesFixed Size                   453492 bytesVariable Size             109051904 bytesDatabase Buffers           25165824 bytesRedo Buffers                 667648 bytesORA-01991: ???????'D:/oracle/ora92/DATABASE/PWDora9.ORA'

    解决方法,由于未运行在归档模式下,使用orapwd重建oracle的密码文件:

    C:/>orapwd /helpUsage: orapwd file= password= entries=

      where    file - name of password file (mand),    password - password for SYS (mand),    entries - maximum number of distinct DBA and OPERs (opt),  There are no spaces around the equal-to (=) character.

    SQL> host del D:/oracle/ora92/DATABASE/PWDora9.ORA

    SQL> host orapwd file=D:/oracle/ora92/DATABASE/PWDora9.ORA password=oraclepass entries=10

    SQL> alter database open;

    数据库已更改。

    重新登录的时候,应该输入旧数据库设定的密码;

    更具体完全的恢复,可参考:

    http://www.dbonline.cn/source/oracle/20031214/resume database example.html

         其实,最近一年多解决了很多类似的问题,包括linux, oracle, windows server, cisco 路由,交换机,应用服务器..., 但很多,在网上都已经有现成的解决方法可以找到,故很少贴上来。

     

    最新回复(0)