Oracle 8i Database mounted, but not opened.

The Oracle 8i database on my server is successfully mounted, but cannot be opened as one of the .DBS files has become corrupt. The messages given during startup are as follows:
ORA-01122: database file 27 failed verification check
ORA-01110: data file 27: 'D:\FINSERV\DBS\FXATABM1.DBS'
ORA-01251: Unknown File Header Version read for file number 27
Please help!!!
null

Hi
if u want to open immediately then
offline the datafile and u can
open the database.
If ur system is running on archive mode then
Copy the old datafile(no corruption) and do complete recovery
suresh

Similar Messages

  • Renaming datafiles in control files with database mounted but not open

    Hi,
    I moved a database (physical files) from one server to another. I need to modify the contents of the control files since the directory structure of the servers are not the same (and I can't change that).
    I know I can use ALTER DATABASE BACKUP CONTROLFILE TO TRACE to produce a script that I can than modify and run with the instance started, database mounted but not open, and that will recreate the control files. I don't want to do that.
    I was also told I can modify the datafile entries in the control files by starting the instance, mounting but not opening the database. Then I can issue the (this is the part I need help with) ALTER DATABASE RENAME FILE <file1> to <file2>. When I tried this it complains that <file1> is not found. Obviously the command I used is not the right one,,, what is the right command for what I want to do.
    Thanks,
    Gabriel

    Move all datafiles from one directory to an other without recreate controlfile :
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102C\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> create pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora' from spfile;
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.Here, I move all datafiles mentionned above, and modify my pfile for new controlfile directory. Then :
    SYS@DEMO102> startup pfile=E:\oracle\admin\DEMO102\pfile\pfile102.ora
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted. --Note that we are in mount state
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF'
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF' to 'E:\ORACLE\ORADATA\demo102\USERS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSAUX01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF' to 'E:\ORACLE\ORADATA\demo102\UNDOTBS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSTEM\SYSTEM01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF' to 'E:\ORACLE\ORADATA\demo102\EXAMPLE01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_1.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_2.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO01.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO02.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO03.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF' to 'E:\ORACLE\ORADATA\demo102\TEMP01.DBF';
    Database altered.
    SYS@DEMO102> alter database open;
    Database altered.
    SYS@DEMO102> create spfile from pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora';
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SYS@DEMO102> startup
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted.
    Database opened.
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> Nicolas.

  • Database mounted but not opened

    Hi
    Now i dont know how but my database is being mounted but i am facing this problem.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 437326184 bytes
    Fixed Size 450920 bytes
    Variable Size 184549376 bytes
    Database Buffers 251658240 bytes
    Redo Buffers 667648 bytes
    Database mounted.
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/u01/app/oracle/oradata/test1/system01.dbf'
    Please help

    Hi Govind
    thanks for replying.I have already tried that.And it gives me this error
    SQL> recover database
    ORA-00283: recovery session canceled due to errors
    ORA-01610: recovery using the BACKUP CONTROLFILE option must be done
    please help
    Regrads

  • Database mounted but doesnt open !!

    Hi All,
    The database @ my machine gets mounted but doesnt open!
    The error goes:
    Database mounted.
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1:
    'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_647O6RPP_.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    While doing a disk cleanup i mistakenly deleted the log files!!!!
    Please suggest me a to what i can do now to correct this,as all my ECM stack was installed over this database.
    PLEASE HELP!! :( :(

    Man, you're in the wrong thread!
    Anyway, just an idea,
    You can start by trying to recover the deleted file. Search on Google for "Recuva". It's a free and small but powerful file recovery utility, install it and see if you can recover the deleted file.

  • Database 9i can not open ..help..?

    Dear all,
    when electric down suddenly, my database 9i can not open.
    i have message ORA-03113:end-of-file on communication channel.
    i can started and mounted database only.
    please help me.
    Regard
    Teguh

    Dear,
    Thank for your reply, Satheesh.
    This is the alert.log
    Fri Jul 09 18:57:28 2004
    PMON: terminating instance due to error 471
    Instance terminated by PMON, pid = 960
    Dump file c:\ora92i\admin\mpri\bdump\alert_mpri.log
    Sun Jul 11 08:51:54 2004
    ORACLE V9.2.0.1.0 - Production vsnsta=0
    vsnsql=12 vsnxtr=3
    Windows 2000 Version 5.0 Service Pack 4, CPU type 586
    Sun Jul 11 08:51:54 2004
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 2
    Using log_archive_dest parameter default value
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 9.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    timed_statistics = TRUE
    shared_pool_size = 50331648
    large_pool_size = 8388608
    java_pool_size = 33554432
    control_files = C:\ora92i\oradata\MPRI\CONTROL01.CTL, C:\ora92i\oradata\MPRI\CONTROL02.CTL, C:\ora92i\oradata\MPRI\CONTROL03.CTL
    db_block_size = 8192
    db_cache_size = 25165824
    compatible = 9.2.0.0.0
    db_file_multiblock_read_count= 16
    fast_start_mttr_target = 300
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 10800
    remote_login_passwordfile= EXCLUSIVE
    db_domain = COM
    instance_name = MPRI
    dispatchers = (PROTOCOL=TCP) (SERVICE=MPRIXDB)
    job_queue_processes = 10
    hash_join_enabled = TRUE
    background_dump_dest = C:\ora92i\admin\MPRI\bdump
    user_dump_dest = C:\ora92i\admin\MPRI\udump
    core_dump_dest = C:\ora92i\admin\MPRI\cdump
    sort_area_size = 524288
    db_name = MPRI
    open_cursors = 300
    star_transformation_enabled= FALSE
    query_rewrite_enabled = FALSE
    pga_aggregate_target = 25165824
    aq_tm_processes = 1
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    CJQ0 started with pid=8
    QMN0 started with pid=9
    Sun Jul 11 08:51:58 2004
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Sun Jul 11 08:51:59 2004
    alter database mount exclusive
    Sun Jul 11 08:52:03 2004
    Successful mount of redo thread 1, with mount id 2592377199.
    Sun Jul 11 08:52:03 2004
    Database mounted in Exclusive Mode.
    Completed: alter database mount exclusive
    Sun Jul 11 08:52:03 2004
    alter database open
    Sun Jul 11 08:52:04 2004
    Beginning crash recovery of 1 threads
    Sun Jul 11 08:52:04 2004
    Started first pass scan
    Sun Jul 11 08:52:05 2004
    Completed first pass scan
    43157 redo blocks read, 1403 data blocks need recovery
    Sun Jul 11 08:52:05 2004
    Started recovery at
    Thread 1: logseq 111, block 13381, scn 0.0
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 111 Reading mem 0
    Mem# 0 errs 0: C:\ORA92I\ORADATA\MPRI\REDO02.LOG
    Corrupt block relative dba: 0x008040a8 (file 2, block 16552)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 3 format: 0 rdba: 0x40a80202
    last change scn: 0x05b0.05b040a8 seq: 0x0 flg: 0x00
    consistency value in tail: 0x02023830
    check value in block header: 0x0, block checksum disabled
    spare1: 0x2, spare2: 0x2, spare3: 0x7bdd
    Reread of rdba: 0x008040a8 (file 2, block 16552) found same corrupted data
    Corrupt block relative dba: 0x008040a7 (file 2, block 16551)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 2 rdba: 0x40a70202
    last change scn: 0x05b0.05b040a7 seq: 0x0 flg: 0x00
    consistency value in tail: 0x02020001
    check value in block header: 0x0, block checksum disabled
    spare1: 0x2, spare2: 0x2, spare3: 0x6228
    Reread of rdba: 0x008040a7 (file 2, block 16551) found same corrupted data
    Corrupt block relative dba: 0x00803f47 (file 2, block 16199)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 255 format: 2 rdba: 0x3f470202
    last change scn: 0x05cf.05cf3f47 seq: 0x0 flg: 0x00
    consistency value in tail: 0x0203000a
    check value in block header: 0x0, block checksum disabled
    spare1: 0x2, spare2: 0x2, spare3: 0x8345
    Reread of rdba: 0x00803f47 (file 2, block 16199) found same corrupted data
    Corrupt block relative dba: 0x00803e00 (file 2, block 15872)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 2 rdba: 0x3e000202
    last change scn: 0x05e7.05e73e00 seq: 0x0 flg: 0x00
    consistency value in tail: 0x0202fb5b
    check value in block header: 0x0, block checksum disabled
    spare1: 0x2, spare2: 0x2, spare3: 0xe182
    Reread of rdba: 0x00803e00 (file 2, block 15872) found same corrupted data
    Corrupt block relative dba: 0x00803dff (file 2, block 15871)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 2 rdba: 0x3dff0202
    last change scn: 0x05e7.05e73dff seq: 0x0 flg: 0x00
    consistency value in tail: 0x02020001
    check value in block header: 0x0, block checksum disabled
    spare1: 0x2, spare2: 0x2, spare3: 0x557d
    Reread of rdba: 0x00803dff (file 2, block 15871) found same corrupted data
    Corrupt block relative dba: 0x0251a758 (file 9, block 1156952)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 2 rdba: 0xa7580206
    last change scn: 0x05b2.05b2a758 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f30
    Reread of rdba: 0x0251a758 (file 9, block 1156952) found same corrupted data
    Corrupt block relative dba: 0x0251a757 (file 9, block 1156951)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7570206
    last change scn: 0x05b2.05b2a757 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f3f
    Reread of rdba: 0x0251a757 (file 9, block 1156951) found same corrupted data
    Corrupt block relative dba: 0x0251a756 (file 9, block 1156950)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7560206
    last change scn: 0x05b2.05b2a756 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f3e
    Reread of rdba: 0x0251a756 (file 9, block 1156950) found same corrupted data
    Corrupt block relative dba: 0x0251a755 (file 9, block 1156949)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7550206
    last change scn: 0x05c1.05c1a755 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06010000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x4e8
    Reread of rdba: 0x0251a755 (file 9, block 1156949) found same corrupted data
    Corrupt block relative dba: 0x0251a754 (file 9, block 1156948)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 1 format: 6 rdba: 0xa7540206
    last change scn: 0x05b2.05b2a754 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f3c
    Reread of rdba: 0x0251a754 (file 9, block 1156948) found same corrupted data
    Corrupt block relative dba: 0x0251a753 (file 9, block 1156947)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7530206
    last change scn: 0x05b2.05b2a753 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f3b
    Reread of rdba: 0x0251a753 (file 9, block 1156947) found same corrupted data
    Corrupt block relative dba: 0x0251a752 (file 9, block 1156946)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7520206
    last change scn: 0x05b2.05b2a752 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f3a
    Reread of rdba: 0x0251a752 (file 9, block 1156946) found same corrupted data
    Corrupt block relative dba: 0x0251a751 (file 9, block 1156945)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7510206
    last change scn: 0x05b2.05b2a751 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f39
    Reread of rdba: 0x0251a751 (file 9, block 1156945) found same corrupted data
    Corrupt block relative dba: 0x0251a750 (file 9, block 1156944)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7500206
    last change scn: 0x05b2.05b2a750 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f38
    Reread of rdba: 0x0251a750 (file 9, block 1156944) found same corrupted data
    Corrupt block relative dba: 0x0251a74f (file 9, block 1156943)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa74f0206
    last change scn: 0x05b2.05b2a74f seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f27
    Reread of rdba: 0x0251a74f (file 9, block 1156943) found same corrupted data
    Corrupt block relative dba: 0x0251a74e (file 9, block 1156942)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa74e0206
    last change scn: 0x05b2.05b2a74e seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f26
    Reread of rdba: 0x0251a74e (file 9, block 1156942) found same corrupted data
    Corrupt block relative dba: 0x0251a74d (file 9, block 1156941)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa74d0206
    last change scn: 0x05b2.05b2a74d seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f25
    Reread of rdba: 0x0251a74d (file 9, block 1156941) found same corrupted data
    Corrupt block relative dba: 0x0251a74c (file 9, block 1156940)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa74c0206
    last change scn: 0x05b2.05b2a74c seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f24
    Reread of rdba: 0x0251a74c (file 9, block 1156940) found same corrupted data
    Corrupt block relative dba: 0x0251a74b (file 9, block 1156939)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa74b0206
    last change scn: 0x05b2.05b2a74b seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f23
    Reread of rdba: 0x0251a74b (file 9, block 1156939) found same corrupted data
    Corrupt block relative dba: 0x0251a74a (file 9, block 1156938)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa74a0206
    last change scn: 0x05b2.05b2a74a seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f22
    Reread of rdba: 0x0251a74a (file 9, block 1156938) found same corrupted data
    Corrupt block relative dba: 0x0251a749 (file 9, block 1156937)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa7490206
    last change scn: 0x05b2.05b2a749 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x7f21
    Reread of rdba: 0x0251a749 (file 9, block 1156937) found same corrupted data
    Corrupt block relative dba: 0x0251a70a (file 9, block 1156874)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa70a0220
    last change scn: 0x05b2.05b2a70a seq: 0x0 flg: 0x00
    consistency value in tail: 0x20020000
    check value in block header: 0x0, block checksum disabled
    spare1: 0x20, spare2: 0x2, spare3: 0x2127
    Reread of rdba: 0x0251a70a (file 9, block 1156874) found same corrupted data
    Corrupt block relative dba: 0x0251a5f1 (file 9, block 1156593)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 1 format: 6 rdba: 0xa5f10206
    last change scn: 0x05d3.05d3a5f1 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06010012
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0xf3b8
    Reread of rdba: 0x0251a5f1 (file 9, block 1156593) found same corrupted data
    Corrupt block relative dba: 0x0251a592 (file 9, block 1156498)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 255 format: 3 rdba: 0xa5920206
    last change scn: 0x05cf.05cfa592 seq: 0x0 flg: 0x00
    consistency value in tail: 0x0601020e
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0xdd5f
    Reread of rdba: 0x0251a592 (file 9, block 1156498) found same corrupted data
    Corrupt block relative dba: 0x0251a3e5 (file 9, block 1156069)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0xa3e50206
    last change scn: 0x05b3.05b3a3e5 seq: 0x0 flg: 0x00
    consistency value in tail: 0x0602003d
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x4c27
    Reread of rdba: 0x0251a3e5 (file 9, block 1156069) found same corrupted data
    Corrupt block relative dba: 0x0251a346 (file 9, block 1155910)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 255 format: 3 rdba: 0xa3460206
    last change scn: 0x05b3.05b3a346 seq: 0x0 flg: 0x00
    consistency value in tail: 0x0601003d
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x6fbc
    Reread of rdba: 0x0251a346 (file 9, block 1155910) found same corrupted data
    Corrupt block relative dba: 0x018586a3 (file 6, block 362147)
    Bad header found during crash/instance recovery
    Data in bad block -
    type: 2 format: 6 rdba: 0x86a30206
    last change scn: 0x05e8.05e886a3 seq: 0x0 flg: 0x00
    consistency value in tail: 0x06020101
    check value in block header: 0x0, block checksum disabled
    spare1: 0x6, spare2: 0x2, spare3: 0x5104
    what i have to do ..?
    Can you give step one step procedure to recovery the database. i am a beginner for this.
    Thank
    Regard
    Teguh.

  • There was away (before Mavericks) I could single click on an email and it would highlite but not open.  I could either delete or second click and the email would then open.  Can anyone tell me how to configure the prevue pane to that end with Mavericks?

    There was a way (before Mavericks) I could single click on an email in the "prevue pane" and it would highlite but not open.  I could then either delete it or click again and it would open.  With Mavericks that doesn't seem to be available making it impossible to delete an email in the prevue pane before I open it.  Its frustrating to have to go through all the monkey motions when I know I want to delete it from the get-go.  Does anyone know who to configure for that operation?  I'm using an iMac. 

    Wow,  have you ever seen 1 Billion in hard cash?  If not, I assure you it exists as well. 
    Try not to pick apart what others write because you "have not seen it." 
    I run TWO programs for protection of my MAC now and have been for sometime b/c developers of them become complacid thinking MAC is impermeable. 
    My MAC locked me out of it and two externals and when I finally did get back into them Norton Anti-Virus found a "worm."  When I asked the program to find the origin, it was traced back to an email, as you said, that I opened unintentionally.  I still have two external HDs for backup and a cloud backup now. 
    When ClamX ran after Norton was finished, ClamX found what it called as "spyware," and it's origin was in my email also.  I tried to delete the emails after the programs (both) identified the infected files, however once deleted and the computer is restarted, they were still there because I ran the scans again. 
    Now since we are no longer talking about how to turn on and off the view pane in apple mail; riddle me this,  why can't the developers of these antivirus and antispyware/malware programs get together and develop ONE PRODUCT that catches 90-95% of the viruses/worms/spyware/malware ect that get onto MAC's?  Is it because they are too busy thinking they don't exist? 
    I still run both programs and feel protected between the two.  If Norton said it was a "worm" then I believe it was a worm and if ClamX called it "spyware" then I believe it is spyware. 
    I had to wipe my MAC and do a fresh install to get it working again, then I had to open one of those externals (which was very, very difficult) multiple times until finally it displayed the message "you can view, but not change the data."  I exported as much as I could to my cloud and I had to format both of those too. 
    I still run both programs as I feel protected between the two.  If Norton tells me it is a "worm" then I believe it is a "worm;" if ClamX tells me it is "spyware" then I believe it is "spyware."  If it happens again, which my hope is that it won't, I will be more than happy to send the infected files to you!!
    Try not to "forum rage."  Support forums to post experiences and find answers, not nit-pick or claim not existance b/c you have not experienced it for yourself.

  • My iPhone 3gs is not able to connect through internet. I have a Airtel wireless at home.Phone connects through wireless but not opens any page or itune or apllications

    My iPhone 3gs is not able to connect through internet. I have a Airtel wireless at home.Phone connects through wireless but not opens any page or itune or applications.

    Hi,
    can you provide a bit more detail, as can you use the 3G network to access the web, and what security is your wireless using?
    Regards
    Ryan

  • Before partition by Boot Camp on Mac Book Pro With Mac OS Lion the computer restarts but not open wizard of Windows 7 and appears the apple with question mark...

    Before partition by Boot Camp on Mac Book Pro With Mac OS Lion the computer restarts but not open wizard of Windows 7 install and appears the apple with question mark...don't recognize disk..

    Apparently Zoo Tycoon can't be played on anything newer than 10.7.
    https://discussions.apple.com/message/21885910#21885910
    Roller Coaster Tycoon is available for purchase from the App Store.

  • Spool Error - Spool created but not opening/displaying. Message no SP01R042

    Dear All,
    In the ECC Production System, for SD documents Spool is  created but not opening/displaying.
    Message no SP01R042
    When we check the short dump for the user,
    The dump is -
    - POSTING_ILLEGAL_STATEMENT
    - Statement "CALL SCREEN" is not allowed in this form.
    Please help. Perfect answers will be definitely rewarded.
    Thanks & Regards,
    Sameer

    Hi Sri,
    Try to setup the printer at OS LEVEL.
    then,
    If on Windows---use method C.
    if not,
    use method U and map to your printer queue at OS level.
    Hope this resloves this issue.
    Reward Pts if useful
    Regards,
    Malti

  • Itunes is running but not open

    Two days ago, I signed up for Itunes match.  Then the box appeared on my iphone and ipad that new ios 6 ready to download.  I did that.
    Now I go to my main PC that holds all my music (it is A LOT!) and itunes will not open.  It is running in the processes but not open on my computer.  I plugged the iphone into the PC to see if that would jumpstart the program.. nothing happened.  I tried opening a song outside of Itunes from the itunes media folder...nothing happened.  I tried all the "this fixes it!" help like uninstall/ reinstall itunes/ quicktime... NOTHING.  Quicktime opens but freezes.  I have gone through the troubleshooter... since I use this PC for my business, it scans daily with several reliable antivirus as well as spyware and malware programs.
    No other program has stopped working.  This is a system wide issue as my husband logged on and it did not open for him.
    I am running Win 7 64 bit.  Google chrome is my browser. PC is fairly new ... possibly 2 years old. 
    Please advise a solution.
    Thanks

    Maybe the error is because you have a too old PC, so it will not work, because it needs too much RAM
    Can you write your PC dates?
    Try also to re-install itunes

  • HELP! keynote will save as ppt but not open

    My son created a project in keynote and it will save as ppt but not open, says there is a problem with the content and that it needs repair. choosing repair does nothing says part of file is missing?
    His teachers classroom requires powerpoint.
    Help!! he has worked so hard!

    With 18 veiws to this thread I can only assume that others are having anxiety attacks over this.
    Wish I could send the look on my 8 year olds face to apple when he thought all the hard work he has done
    was useless.
    Found a thread from a few months ago that has given some hope.
    share as quicktime and it will save as a .mov file that should work on PC...

  • My photoshop elements12 will not update says error and contact adobe but not open now for help.  windows vista

    my photoshop elements12 will not update says error and contact adobe but not open now for help.  windows vista

    I need the updates because I just purchased a Nikon D60 and my Photoshop does not read the .NEF files produced by the camera.
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    Do you really mean the Nikon D60 which shipped in 2008? Was it purchased secondhand?
    The Nikon D60 was first supported in Adobe Camera Raw 4.4.
    Photoshop CS4 ships with Camera Raw 5.0 so it can read D60 NEF files out of the box. No updates required.
    If you do mean the D60 then something else must be going on. e.g. are you using Nikon software to transfer files from camera to computer?

  • I can't open my itunes store.  I can open my music library and sync but not open my music store. I have deleted and reinstalled ituens and still not good.  Help

    I can't open my itunes store.  I can open my music library and sync but not open my music store. I have deleted and reinstalled ituens and still not good.  Help

    I assume you are talking about iTunes on your computer, if so, you will have to remove all Apple programs associated with iTunes:
    iTunes, QuickTime, Apple Software Update, Apple Mobile Device Support, Bonjour and Apple Application Support (iTunes 9 or later)
    Make sure everything that is by Apple is removed including Safari. You can sort by "Publisher", when you uninstall programs. Make sure you have at least one other web browser (like Firefox or Internet Explorer) before removing Safari. That way you can go back to the Apple web site and redownload iTunes later.
    Reboot the computer then reinstall iTunes. Everything should work normally.

  • I can download emails, but not open them.

    I recently updated Mozilla Thunderbird to the latest version (31.5.0), and started having problems with three of my five email addresses. Specifically, I can download my messages to Thunderbird ... but not open them! When I click a message, it opens a new tab, which remains blank. I've given one of those tabs a half hour while working on other things, and the email never opened. Also, the program makes my laptop sound like it's running a marathon while it tries to simply open an email.
    The two addresses that work fine are Gmail addresses. The three that are having trouble are specific to three domains that I own. (i.e. myname @ mywebsite.com).
    I've searched for the answer, and haven't run across anyone else talking about this problem.
    I was meaning to set up these addresses through Google Apps anyway, so I connected one of the problem accounts to Google. I can now handle those emails online at Gmail, but I like the Thunderbird interface better. I had hopes that running this addy through Gmail would magically make Thunderbird work again (since Thunderbird wasn't having any problems with my @gmail addresses), but no luck.
    On top of all this, when I get fed up with Thunderbird and close it ... the program won't open again unless I restart my laptop.
    Any ideas?

    Just to add, you can also try:Main Menu > Settings > Applications > Manage Applications > All > Email > Clear Data > You will likely need to setup the email again after doing this. What are your thoughts about this forum? Let us know by doing this short survey.

  • IWeb booting but not opening

    I have successfully moved my Monmouth Boat Club (monmouthboatclub.org) site to an FTP server and it has its ups and downs but generally OK. I am aware of the quirkiness of opening iWeb domain in Lion as opposed to Snow Leopard. And, above all, I back up the domain multiple places. My latest and most annoyng problem is that on my iMac (running 10.6.8), at times the domain will BOOT but not OPEN..... iWeb open innavigation but I can't get the page up. It might open the fourth time I try...or an hour or a day later. In a pinch, I go back to one of my laptops (running Lion) and open it and make changes. However, Ineed the domain to both boot and open every time on my iMac/Snow Leopard machine.Is anyone having a similar problem and can you give me some advice....
    Art

    Yes.  Lion has messed up the iWeb preference file.  There is an easy solution for that:
    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.

Maybe you are looking for

  • Download CSV-File from Interactive Report

    Dear all, I want to download a CSV-File from a Interactive report. The content of the Rows in Excel: Erste,"B","C","D","E","F","G","H","I","J","K","L","M","N","O","P" IBC ->,"-","1","2","3","4","5","6","7","8","9","10","11","12","13","14" [...] How c

  • Using TLF with SDK 3.5 - 1014 error

    Hi I have followed the steps outlined at http://opensource.adobe.com/wiki/display/tlf/Using+TLF+with+Flex+3.2 to import TLF to user with SDK 3.5. I have verified that I have the latest swc. I get no compile erros but at runtime I get VerifyError: Err

  • Can't Find The Base Station

    Or print/connect to the printer, but somehow am connected to the internet via the same base station. I am about to throw this thing out the window. Any assistance is appreciated. Thanks.

  • How to Upgrade RAM/HDD Lenovo C100, Lenovo All in One Nettop

    Hi all, Im newly bought Lenovo C100 All in One PC, pls click the link below for my PC: I want to upgrade the it RAM fro 1GB to 2GB (add another 1GB), but I cant find the way to open the back... Me already un-srew all the srew available.... but it har

  • 3gs not allowing me to synch seperate songs/albums

    my 3gs is not allowing me to drag and drop seperate songs or individual albums from itunes unless i synch WHOLE selected music collection !!!! although i can with my ipod touch!!!!!! This was fine before itunes and iphone updates Any suggestions asid