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.

Similar Messages

  • 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

  • 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

  • Unable to open PDF files with Adobe Reader, Mac trying to open files with Quicktime instead, but not succeeding. HELP!

    Unable to open PDF files with Adobe Reader, Mac trying to open files with QuickTime instead, but not succeeding. HELP!

    Hi BDAqua,
    Thanks for the info, I dragged a PDF to desktop ctrl-, get info. change all to open with adobe.
    Problem solved, many thanks for a quick response.
    Barry69

  • 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.

  • Hyperlinks to PDF files with Excel XP will not open on Acrobat

    Hi all;
    I am having an issue with Acrobat Reader X.
    I am using Windows 7 x64 Pro, with Acrobat Reader X, and MS Office XP and try as I might, I cannot create an Hyperlink to a PDF document.  Excel says that "there is no program registered to open this file" and I have done pretty much everything I've seen on the net, including removing / reinstalling both programs, making sure it is registered in Regedit as the program to open this kind of files, repairing both programs through the control panel, I have also followed Microsoft advice on how to unregister/register a program to no avail, and a few others I cannot remember right now.  I have recreated the same environnement in another computer, and it runs fine.
    Does anyone has any idea what else I could try?  Or, hopefully, an answer to the problem because you've already gotten it before and were able to fix it?
    I thank you in advance for your kind help !
    Nabil,

    Hi,
    This forum is for Adobe Reader on Unix platforms. It seems that you're using Windows, in which case the correct forum is at http://www.adobeforums.com/webx/.ee6b2e6/
    -Gaurav

  • Shell Creation Modify Control Files with Exclude Table Information  Step er

    I am try to create Shell using TDMS  I  am gettingbelow error while executing step Modify Control Files with Exclude Table Information.
    I am getting error saying that    //No such file or direcroty  Message no.: CNV_TDMS_13_SHELL000
    I am using NFS common mount as my install directory between CI & DB, please can you help me.
    Please can help me.
    Thanks
    Ramesh

    It appears that the directory for shell installation is not accessible from CI (TDMS execution server). Do the following -
    Copy the entire Shell installation directory (having TPL files) temporarily to the CI app. server and maintain the path of this directory in the TDMS package.
    Then execute the activity which is currently failing. Most probably it will finish successfully.
    Now copy the DDLORA.TPL file from this directory to the original directory on the DB app server and continue with your exports.
    I hope this helps.

  • Error processing cube - requested operation cannot be performed on a file with a user-mapped section open

    Hi,
    We have recently moved our production servers and since the move have been experiencing an intermittent (but frequent) error when processing our OLAP cube.
    The error messages presented are:
    "Error: The following error occurred during a file operation: The requested operation cannot be performed on a file with a user-mapped section open"
    "Error: Errors in the OLAP storage engine: An error occurred while processing index for the <Partition Name> partition of the <Measure Group Name> measure group of the <Cube Name> cube from the <Database Name> database"
    I assume the second message is a consequence of the first error.  The partitions and measure groups seem to vary each time the process is run.
    It appears from similar threads that this is usually caused by backups or anti-virus applications locking the files that Analysis Services is using the process the cube.  I have ensured that there are no backups running at the time of processing and
    I have disabled anti-virus programs without success.
    I have also created a new version of the cube (using the deployment wizard) which deployed without error but then encountered the same error when processing for a second time.  There was nothing (client application wise) using this cube when it failed
    to process.
    As I mentioned earlier, this problem is intermittent.  Sometimes the cube will successfully process but usually it fails to process.
    We have not encountered this error in our previous production environment or in any of our development environments.
    Has anyone encountered this problem before? Any suggestions on possible solutions?
    Thanks
    Rich

    Hi jonesri,
    I think you can try to use SSAS Dynamic Management View to monitor SSAS instance, such as existing connections and sessions. For example, please run the following MDX query:
    SELECT[SESSION_COMMAND_COUNT],
    [SESSION_CONNECTION_ID],
    [SESSION_CPU_TIME_MS],
    [SESSION_CURRENT_DATABASE],
    [SESSION_ELAPSED_TIME_MS],
    [SESSION_ID],
    [SESSION_IDLE_TIME_MS],
    [SESSION_LAST_COMMAND],
    [SESSION_LAST_COMMAND_CPU_TIME_MS],
    [SESSION_LAST_COMMAND_ELAPSED_TIME_MS],
    [SESSION_LAST_COMMAND_END_TIME],
    [SESSION_LAST_COMMAND_START_TIME],
    [SESSION_PROPERTIES],[SESSION_READ_KB],
    [SESSION_READS],[SESSION_SPID],
    [SESSION_START_TIME],[SESSION_STATUS],
    [SESSION_USED_MEMORY],
    [SESSION_USER_NAME],
    [SESSION_WRITE_KB],
    [SESSION_WRITES]
    FROM $SYSTEM.DISCOVER_SESSIONS
    Use Dynamic Management Views (DMVs) to Monitor Analysis Services:
    http://msdn.microsoft.com/en-us/library/hh230820.aspx
    In addition, you can aslo use SQL Profiler to capture some events for further investigation.
    Use SQL Server Profiler to Monitor Analysis Services:
    http://technet.microsoft.com/en-us/library/ms174946.aspx
    If you have any feedback on our support, please click
    here.
    Regards,
    Regards,
    Elvis Long
    TechNet Community Support

  • To create 3 diff files with same content but with diff names in same target

    Hi SapAll.
    i have got a a requirement where pi need to create 3 different files with same content but with different names under same target from a single Idoc.
    its an IDOC to 3 File Inteface.
    can any body help me in providing the differnt solutions for this without use of any script executions.
    will be waiitng for response.
    regards.
    Varma

    > i want to use only one communication channel to produce 3 different file names with same content ,so here i should use only one message mapping in 3 operation mappings .
    This is not possible to produce 3 different file names with single CC. You have to use 3 different CCs. unless you have going to use some other trick e.g some script to rename the file etc..
    As I suggested in my previous reply use Multi-Mapping Or create 3 different Interface Mappings (by using the same MM).
    Note: You have to create 3 different Inbound Message Interfaces (you can use the same Inbound Message Type) otherwise while creating the 3 Interface Determination it won't allow because of same Outbound & Inbound Message Interface. It will simply say Interface alreday exists..
    So, just use the Multi-Mapping which is best solution in my opinion, because the benefit of using multi-mapping are:
    1. You have to create only single Message Mapping
    2. Single Interface Mapping
    3. Single Receiver Determination
    4. Single Interface Determination
    5. 3 Receiver CCs (3 you have to use in any case)
    6. Performance wise it is good (read the blog's last 2 para)
    7. And last but not the least easy to maintain the scenario.

  • I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    That is because you don't have a web server configured and running to serve the html page. In order to see the page in a browser you need to access it using a url similar to http://localhost/~yourUserName if you are serving the page from your user account.
    Prior to Mountain Lion you could go into web sharing and turn on the web server. With Mountain Lion there is no option, other than using terminal, to turn on the web server. The web sharing menu item has been removed in Mountain Lion. Apache is still on your computer but it will take a little searching these forums or the Internet to find how to turn it on.
    If you want a graphic user interface to turn on/off the Apache server you could download and install a server application like xampp, http://www.apachefriends.org/en/xampp.html. I use this and it works well.

  • When I try and Save for Web in Photoshop CC I receive an error message saying 'The operation cannot be completed. The requested operation cannot be perfomed on a file with a user-mapped selection open'.

    When I try and Save for Web in Photoshop CC I receive an error message saying 'The operation cannot be completed. The requested operation cannot be performed on a file with a user-mapped selection open'. This happens with any of my files not just one in particular...
    Can anyone help solve this please?

    ELEMENTS 12 AND ELEMENTS 13
    Upgraded to 13 Thinking might resolve the issue.
    Was working fine up until we had "Tech" come in the office and "up grade some stuff"
    then all of a sudden i started getting this message, something happened but i don't have a clue what.

  • My numbers program created on my mac version 3.0 won't work on my ipad version 2.0. It says I have to save the file with preview option but there is no such option in preferences. Any thoughts?

    my spreadsheet created with numbers program version 3.0 created on my mac won't work on my ipad version 2.0. It says I have to save the file with preview option but there is no such option in preferences. Any thoughts?

    For the update to run Aperture must be installed in the system Application folder and named simply Aperture, not Aperture3.2.2 or anything else.
    I don't know if this would also affect photo stream but if your Aperture is misnamed or installed in an incorrect location fixing that to see if it clears up the problem would be a good first step.

  • Can i find a file that was scanned but not renamed?

    can i find a file that was scanned but not renamed?

    Hi johnathong,
    Did you scan the file directly into Acrobat, but didn't save it? If so, the file is most certainly lost, and would need to be rescanned.
    If I misunderstood your question, please let me know.
    Best,
    Sara

  • I copied mp3 files from a usb stick and they appear in music folder in finder and on iPhone/ipad with itunes match but not in iTunes?

    I copied mp3 files from a usb stick and they appear in finder in my itunes media/music folder and on my iphone and ipad with itunes match but not in the itunes library?

    Not working.  And it didn't used to be a problem.  iTunes can find the songs with Search Library, but doesn't show in any index (by song, artist or album).  Finding with Search Library offers to play or add to Up Next, but neither actually does anything.  Using File-Add to Library does nothing as well.  The only way I can get the new files to play is to find in Finder and Open with iTunes.
    I suspect Apple is trying to drive me to buy from iTunes store.  Not gonna happen.  If they don't fix this, I'll find another player.
    This worked fine before OSX 10.8.

  • 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.

Maybe you are looking for

  • Xrandr -o left not working[SOLVED]

    I try to rotate my monitor with this command and I get this error: [duncan@duncan-i7 ~]$ xrandr -o left X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 152 (RANDR) Minor opcode of failed request: 2 (

  • Item category change in contract load of CRM

    Hi Guys,           i am loading contracts into CRM-intellectual property Management. i have to create 2 to 3 line items for same product in one contract with higher level items. generally item category is determined and can be changed via GUI. my req

  • Acrobat 10 pro doesn't ask for validation code

    installing acrobat10 pro on imac with 10.8.  When I try to open first time it doesn't ask for validation code. Application opens for a few seconds then crashes.I've tried installing 3 times with same results. What am I missing?

  • Help please? Static audio, Crashes, ActionScript Errors and more issues with Flash Player 16

    So, this is the first time I'm posting in here and I'm sorry if I mess up or smth. Anyway, this is what happened: - Firefox tells me Flash Player 15 is vulnerable - I update to the newest version - After the update I run into several things that are

  • Triggering email send via workflow when task created.

    Hi all. In my scenario I want to trigger e-mail send to a fixed address when task of certain type created in CRM Web UI. How can i configure such process? Regards to all.