ORACLE10G
今天突然SYS都登陆不上去了 请问怎么办呀!!!网站的数据库
现在网站没有内容了

解决方案 »

  1.   

    后台用sys用户登陆sqlplus '/as sysdba'
      

  2.   

    把alert文件贴出来看下
    注: alert 文件位置
    unix下在:$ORACLE_BASE/admin/sid/bdump下   
     windows:%ORACLE_BASE%/admin/sid/bdump下   
      

  3.   

    os authentication, logon in the operating system as a member of dba group, then execute:export ORACLE_SID=your_sid // for linux
    or 
    set oracle_sid=your_sid // for windowsthen,sqlplus / as sysdba
    alter user sys identified by sys; // reset the password of sys
      

  4.   

    ora-01031:insufficient privileger  
    权限不足
    你是用什么帐户登录进去的?是不是用户被锁了?
    cmd: sqlplus /nolog
    conn / as sysdb;解锁
    alter user 用户名 account unlock;