在例程——配置——恢复里
好象要有SYS权限

解决方案 »

  1.   

    变为归档方式:
    log_archive_start = true
    log_archive_dest_1 = "location=D:\Oracle\oradata\tpic\archive"
    log_archive_format = %%ORACLE_SID%%T%TS%S.ARC
      

  2.   

    改成归档方式:
    alter database archivelog;
    且:(init.ora文件)
    log_archive_start = true
    log_archive_dest_1 = "location=D:\Oracle\oradata\tpic\archive"
    log_archive_format = %%ORACLE_SID%%T%TS%S.ARC
      

  3.   

    startup mount;
    非归档模式转换为归档模式:
    alter database archivelog;
    归档模式转换为非归档模式:
    alter database noarchivelog;alter database open;