shutdown immediate
startup mount
alter database archivelog;

解决方案 »

  1.   

    ORA-01126 database must be mounted EXCLUSIVE and not open for this operationCause: An operation failed because the database was not mounted in exclusive mode.Action: Shut down Oracle and mount the database in exclusive mode.楼主注意,在mount状态不能修改数据为归档模式
    alter database open
    alter database archivelog;
      

  2.   

    我执行“shutdown immediate”时为什么提示权限不足???
      

  3.   

    SYSTEM用户没有权限,以sys用户连接。
    conn sys/change_on_install as sysdba
      

  4.   

    谢谢welyngj(平平淡淡)!
    我运行startup mount时
    提示TNS:no appropriate service handler found
      

  5.   

    确定pfile文件已经修改正确
    startup mount pfile=’D:\oracle\ora92\database\initorcl.ora’
    alter database archivelog;
    alter database open;
    archvie log start;
    验证数据库已经是归档模式
    archive log list;
      

  6.   

    同时我还碰到这种情况:
    oracle数据库放在另一台计算机上,我在远程访问时,用
    “shutdown immediate”
    系统提示
    LRM-00109: 无法打开参数文件 'E:\oracle\admin\pacm\pfile\init.ora'
    ORA-01078: 处理系统参数失败
    在oracle数据库本机执行“shutdown immediate”
    系统提示
    TNS:no appropriate service handler found
    怎么回事啊?
      

  7.   

    关于上面的问题不是执行“shutdown immediate”
    是执行了“startup mount”出现了上述现象!
      

  8.   

    远程访问出错我是明白怎么回事了。
    但是执行了“startup mount”后
    系统提示“TNS:no appropriate service handler found”
    是怎么回事啊?
      

  9.   

    TNS-12519 TNS:no appropriate service handler foundCause: The listener could not find any available service handlers that are appropriate for the client connection.Action: Run "lsnrctl services" to ensure that the instance(s) have registered with the listener, and are accepting connections.May this can help you!