log_archive_dest_1 = "location=C:\Oracle\oradata\oradb\archive"
改为:
log_archive_dest = "location=C:\Oracle\oradata\oradb\archive"

解决方案 »

  1.   

    我通过试验得出应将参数中的log_archive_dest_1 = "location=C:\Oracle\oradata\oradb\archive"
    改为log_archive_dest = C:\Oracle\oradata\oradb\archive
    但不知道为何如此改?哪位能指教?
      

  2.   

    不过我试了,log_archive_dest_1 = "location=F:\oracle\oradata\tang\archive"
    没问题呀,我的oracle版本是oracle8.17企业版
      

  3.   

    和版本没有问题吧,我的和楼主一样的,但没有问题。C:\>svrmgrlOracle Server Manager Release 3.1.6.0.0 - Production版权所有 (c) 1997,1999,Oracle Corporation。保留所有权利。Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.6.0.0 - Production
      

  4.   

    Problem Description: 
    ==================== 
     
    When switching the database to Archive Log Mode, you receive error: 
     
        ORA-00439: feature not enabled: %s 
            Cause: The specified feature is not enabled. 
           Action: Do not attempt to use this feature.   
     
    This occurs at at startup mount. 
      
     
    Solution Description: 
    ===================== 
     
    1. Open your init<SID>.ora file in the $ORACLE_HOME/dbs directory (on Unix  
       machines) or in the %ORACLE_HOME%\database directory (on Windows machines.) 
     
    2. Check the parameter 'log_archive_dest_1'  You probably see syntax similar 
       to the following: 
     
         log_archive_dest_1 = '/softs/oracle/8.1.6/admin/oracle/arch/archlog' 
        
      Change this line to: 
     
         log_archive_dest = '/softs/oracle/8.1.6/admin/oracle/arch/archlog' 
     
       - OR - 
     
       If you want to use the capability of multiple archive destinations, 
       change the parameter to log_archive_dest_<n>.  For example, 
     
         log_archive_dest_1 = "location=/u02/product/8.1.6/admin/V816/arch"   
     
     
    Explanation: 
    ============ 
     
    The syntax of the 'log_archive_dest' and the 'log_archive_dest_<n>'  
    parameters differ. If you are not using multiple locations for archiving  
    then you should only have log_archive_dest set in the init.ora file. 
     
      

  5.   

    我用的oracle版本是oracle8.17企业版装在WIN2003上,只能改成F:\oracle\oradata\tang\archive"而不能是:location=F:\oracle\oradata\tang\archive"
    为何呀?