lost control file and datafile addeed restore/recovery without loss of data

Here, I tried the following

created a new table called t2 and made sure the data went to a specific tablespace...
has taken a level 0 backup
remove the control file
couple of datafile to above tablespace was added and then insert more data
then went out to restore the database... but datafile and control file always could not be open? What is wrong here...

SQL> @datafile
-- list of datafile

Tablespace File Typ Tablespac File Stat    Used MB    Free MB    FILE_MB    MAXMB Datafile_name                     FILE_ID AUT
---------- -------- --------- --------- ---------- ---------- ---------- -------- ------------------------------ ---------- ---
UNDOTBS1   Datafile ONLINE    AVAILABLE         16         84        100    1,024 /data/trgt/undotbs01.dbf                3 YES
USERS      Datafile ONLINE    AVAILABLE       1153        895       2048    3,072 /data3/trgt/user02.dbf                  5 YES
CNT_TST    Datafile ONLINE    AVAILABLE          1          9         10        0 /data3/trgt/cnt_tst01.dbf               7 NO
SYSAUX     Datafile ONLINE    AVAILABLE        626         35        660   32,768 /data/trgt/sysaux01.dbf                 2 YES
USERS      Datafile ONLINE    AVAILABLE       2031         17       2048    2,048 /data3/trgt/move/users01.dbf            4 YES
SYSTEM     Datafile ONLINE    AVAILABLE        712         58        770   32,768 /data/trgt/system01.dbf                 1 YES
USERS      Datafile ONLINE    AVAILABLE         65         35        100   32,768 /data3/trgt/users03.dbf                 6 YES

7 rows selected.
-- new table is created called t2 and its going into TS called cnt_tst
SQL> CREATE TABLE TEST.T2
(
  C1  DATE,
  C2  NUMBER,
  C3  NUMBER,
  C4  VARCHAR2(300 BYTE)
)
TABLESPACE cnt_tst;  2    3    4    5    6    7    8

Table created.
-- data inserted
SQL> INSERT INTO
  test.T2
SELECT
  *
FROM
  (SELECT
    SYSDATE,
    ROWNUM C2,
    DECODE(MOD(ROWNUM,100),99,99,1) C3,
    RPAD('A',300,'A') C4
  FROM
    DUAL
  CONNECT BY
    LEVEL <= 10000)
;   2    3    4    5    6    7    8    9   10   11   12   13   14   15

10000 rows created.

SQL> commit;

Commit complete.
-- to check of cnt_tst has any free space or not, as we can see its full
SQL> @datafile

Tablespace File Typ Tablespac File Stat    Used MB    Free MB    FILE_MB    MAXMB Datafile_name                     FILE_ID AUT
---------- -------- --------- --------- ---------- ---------- ---------- -------- ------------------------------ ---------- ---
UNDOTBS1   Datafile ONLINE    AVAILABLE         16         84        100    1,024 /data/trgt/undotbs01.dbf                3 YES
USERS      Datafile ONLINE    AVAILABLE       1153        895       2048    3,072 /data3/trgt/user02.dbf                  5 YES
SYSAUX     Datafile ONLINE    AVAILABLE        626         35        660   32,768 /data/trgt/sysaux01.dbf                 2 YES
USERS      Datafile ONLINE    AVAILABLE       2031         17       2048    2,048 /data3/trgt/move/users01.dbf            4 YES
SYSTEM     Datafile ONLINE    AVAILABLE        712         58        770   32,768 /data/trgt/system01.dbf                 1 YES
USERS      Datafile ONLINE    AVAILABLE         65         35        100   32,768 /data3/trgt/users03.dbf                 6 YES
CNT_TST    Datafile ONLINE    AVAILABLE         10          0         10        0 /data3/trgt/cnt_tst01.dbf               7 NO

7 rows selected.

SQL> select count(*) from test.t2;

  COUNT(*)
----------
     10000

1 row selected.
-- to get a count and max on date
SQL> select max(c1) from test.t2;

MAX(C1)
------------------
29-feb-12 13:47:52

1 row selected.

SQL> -- AT THIS POINT A LEVEL 0 BACKUP IS TAKEN (using backup database plus archivelog)
SQL> -- now control files are removed
SQL> select name from v$controlfile;

NAME
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
/ctrl/trgt/control01.ctl
/ctrl/trgt/control02.ctl

2 rows selected.

SQL>
SQL> ! rm /ctrl/trgt/control01.ctl
SQL> ! rm /ctrl/trgt/control02.ctl
SQL> ! ls -ltr /ctrl/trgt/

ls: /ctrl/trgt/: No such file or directory

SQL> 
-- new datafile is added to CNT_TST TABLESPACE and new data is added as well
SQL> ALTER TABLESPACE CNT_TST ADD DATAFILE '/data3/trgt/CNT_TST02.dbf' SIZE 100M AUTOEXTEND OFF;

Tablespace altered.

SQL> ALTER SYSTEM CHECKPOINT;

System altered.

SQL> alter system switch logfile;

System altered.

SQL> /

System altered.

SQL> /

System altered.

SQL> ALTER TABLESPACE CNT_TST ADD DATAFILE '/data3/trgt/CNT_TST03.dbf' SIZE 100M AUTOEXTEND OFF;

Tablespace altered.

SQL>  INSERT INTO
  test.T2
SELECT
  *
FROM
  (SELECT
    SYSDATE,
    ROWNUM C2,
    DECODE(MOD(ROWNUM,100),99,99,1) C3,
    RPAD('A',300,'A') C4
  FROM
    DUAL
  CONNECT BY
    LEVEL <= 10000)
;   2    3    4    5    6    7    8    9   10   11   12   13   14   15

10000 rows created.

SQL> /

10000 rows created.

SQL> commit;

Commit complete.

SQL> INSERT INTO
  test.T2
SELECT
  *
FROM
  (SELECT
    SYSDATE,
    ROWNUM C2,
    DECODE(MOD(ROWNUM,100),99,99,1) C3,
    RPAD('A',300,'A') C4
  FROM
    DUAL
  CONNECT BY
    LEVEL <= 40000)
;  2    3    4    5    6    7    8    9   10   11   12   13   14   15

40000 rows created.

SQL> commit;

Commit complete.

SQL> @datafile
-- to make sure new datafile has been registered with the DB 
Tablespace File Typ Tablespac File Stat    Used MB    Free MB    FILE_MB    MAXMB Datafile_name                     FILE_ID AUT
---------- -------- --------- --------- ---------- ---------- ---------- -------- ------------------------------ ---------- ---
CNT_TST    Datafile ONLINE    AVAILABLE          9         91        100        0 /data3/trgt/CNT_TST03.dbf               9 NO
UNDOTBS1   Datafile ONLINE    AVAILABLE         16         84        100    1,024 /data/trgt/undotbs01.dbf                3 YES
USERS      Datafile ONLINE    AVAILABLE       1153        895       2048    3,072 /data3/trgt/user02.dbf                  5 YES
CNT_TST    Datafile ONLINE    AVAILABLE          9         91        100        0 /data3/trgt/CNT_TST02.dbf               8 NO
SYSAUX     Datafile ONLINE    AVAILABLE        626         35        660   32,768 /data/trgt/sysaux01.dbf                 2 YES
USERS      Datafile ONLINE    AVAILABLE       2031         17       2048    2,048 /data3/trgt/move/users01.dbf            4 YES
SYSTEM     Datafile ONLINE    AVAILABLE        712         58        770   32,768 /data/trgt/system01.dbf                 1 YES
USERS      Datafile ONLINE    AVAILABLE         65         35        100   32,768 /data3/trgt/users03.dbf                 6 YES
CNT_TST    Datafile ONLINE    AVAILABLE         10          0         10        0 /data3/trgt/cnt_tst01.dbf               7 NO

9 rows selected.
-- now the count and max ... note count before backup was 10000 and max(c1) was diff
SQL> select count(*) from test.t2;

  COUNT(*)
----------
     70000

1 row selected.

SQL> select max(c1) from test.t2;

MAX(C1)
------------------
29-feb-12 13:58:25

1 row selected.

SQL> -- now restore starts 
SQL> shutdown abort;
ORACLE instance shut down.
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@berry trgt]$ rman

Recovery Manager: Release 11.2.0.1.0 - Production on Wed Feb 29 14:01:48 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

RMAN>  connect catalog rman/pass@rcat

connected to recovery catalog database

RMAN>  connect target /

connected to target database (not started)

RMAN> startup nomount;

Oracle instance started

Total System Global Area     188313600 bytes

Fixed Size                     1335388 bytes
Variable Size                125833124 bytes
Database Buffers              58720256 bytes
Redo Buffers                   2424832 bytes

RMAN> restore controlfile from autobackup;

Starting restore at 29-FEB-12 14:02:37
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=20 device type=DISK

recovery area destination: /backup/trgt/flash_recovery_area
database name (or database unique name) used for search: TRGT
channel ORA_DISK_1: no AUTOBACKUPS found in the recovery area
channel ORA_DISK_1: looking for AUTOBACKUP on day: 20120229
channel ORA_DISK_1: AUTOBACKUP found: /backup/trgt/backup/cont_c-3405317011-20120229-09
channel ORA_DISK_1: restoring control file from AUTOBACKUP /backup/trgt/backup/cont_c-3405317011-20120229-09
channel ORA_DISK_1: control file restore from AUTOBACKUP complete
output file name=/ctrl/trgt/control01.ctl
output file name=/ctrl/trgt/control02.ctl
Finished restore at 29-FEB-12 14:02:39

RMAN> alter database mount;

database mounted
released channel: ORA_DISK_1

RMAN> recover database;

Starting recover at 29-FEB-12 14:02:55
Starting implicit crosscheck backup at 29-FEB-12 14:02:55
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=20 device type=DISK
Crosschecked 96 objects
Finished implicit crosscheck backup at 29-FEB-12 14:02:57

Starting implicit crosscheck copy at 29-FEB-12 14:02:57
using channel ORA_DISK_1
Finished implicit crosscheck copy at 29-FEB-12 14:02:57

searching for all files in the recovery area
cataloging files...
no files cataloged

using channel ORA_DISK_1

starting media recovery

archived log for thread 1 with sequence 13 is already on disk as file /redo_archive/trgt/online/redo01.log
archived log for thread 1 with sequence 14 is already on disk as file /redo_archive/trgt/online/redo02.log
archived log for thread 1 with sequence 15 is already on disk as file /redo_archive/trgt/online/redo03.log
archived log file name=/redo_archive/trgt/archive/1_10_776523284.dbf thread=1 sequence=10
archived log file name=/redo_archive/trgt/archive/1_10_776523284.dbf thread=1 sequence=10
archived log file name=/redo_archive/trgt/archive/1_11_776523284.dbf thread=1 sequence=11
archived log file name=/redo_archive/trgt/archive/1_12_776523284.dbf thread=1 sequence=12
archived log file name=/redo_archive/trgt/online/redo01.log thread=1 sequence=13
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 02/29/2012 14:02:59
ORA-01422: exact fetch returns more than requested number of rows
RMAN-20505: create datafile during recovery
RMAN-11003: failure during parse/execution of SQL statement: alter database recover logfile '/redo_archive/trgt/online/redo01.log'
ORA-00283: recovery session canceled due to errors
ORA-01244: unnamed datafile(s) added to control file by media recovery
ORA-01110: data file 9: '/data3/trgt/CNT_TST03.dbf'

RMAN> -- wnet to session 2 and renamed datafile from unammed
-wnet to session 2 and renamed datafile for file unammed
SQL> select name from v$datafile;

NAME
--------------------------------------------------------------------------------
/data/trgt/system01.dbf
/data/trgt/sysaux01.dbf
/data/trgt/undotbs01.dbf
/data3/trgt/move/users01.dbf
/data3/trgt/user02.dbf
/data3/trgt/users03.dbf
/data3/trgt/cnt_tst01.dbf
/oracle/app/product/11.2.0/dbhome_1/dbs/UNNAMED00008
/oracle/app/product/11.2.0/dbhome_1/dbs/UNNAMED00009

9 rows selected.

SQL> alter database create datafile '/oracle/app/product/11.2.0/dbhome_1/dbs/UNNAMED00008' as '/data3/trgt/CNT_TST02.dbf';

Database altered.

SQL> alter database create datafile '/oracle/app/product/11.2.0/dbhome_1/dbs/UNNAMED00009' as '/data3/trgt/CNT_TST03.dbf';

Database altered.

SQL>  select name from v$datafile;

NAME
--------------------------------------------------------------------------------
/data/trgt/system01.dbf
/data/trgt/sysaux01.dbf
/data/trgt/undotbs01.dbf
/data3/trgt/move/users01.dbf
/data3/trgt/user02.dbf
/data3/trgt/users03.dbf
/data3/trgt/cnt_tst01.dbf
/data3/trgt/CNT_TST02.dbf
/data3/trgt/CNT_TST03.dbf

9 rows selected.
After before was done, went back to session 1 and I tried recovered the DB
RMAN> recover database;

Starting recover at 29-FEB-12 14:06:16
using channel ORA_DISK_1

starting media recovery

archived log for thread 1 with sequence 13 is already on disk as file /redo_archive/trgt/online/redo01.log
archived log for thread 1 with sequence 14 is already on disk as file /redo_archive/trgt/online/redo02.log
archived log for thread 1 with sequence 15 is already on disk as file /redo_archive/trgt/online/redo03.log
archived log file name=/redo_archive/trgt/online/redo01.log thread=1 sequence=13
archived log file name=/redo_archive/trgt/online/redo02.log thread=1 sequence=14
archived log file name=/redo_archive/trgt/online/redo03.log thread=1 sequence=15
media recovery complete, elapsed time: 00:00:00
Finished recover at 29-FEB-12 14:06:17

RMAN> alter database open resetlogs;

database opened
new incarnation of database registered in recovery catalog
starting full resync of recovery catalog
full resync complete
starting full resync of recovery catalog
full resync complete

RMAN> exit


Recovery Manager complete.
[oracle@berry trgt]$
[oracle@berry trgt]$
[oracle@berry trgt]$ sq

SQL*Plus: Release 11.2.0.1.0 Production on Wed Feb 29 14:07:18 2012

Copyright (c) 1982, 2009, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> alter session set NLS_DATE_FORMAT="dd-mon-yy hh24:mi:ss:
  2
SQL>
SQL> alter session set NLS_DATE_FORMAT="dd-mon-yy hh24:mi:ss";

Session altered.

SQL> select count(*) from test.t2;
select count(*) from test.t2
                          *
ERROR at line 1:
ORA-00376: file 8 cannot be read at this time
ORA-01110: data file 8: '/data3/trgt/CNT_TST02.dbf'


SQL> select max(c1) from test.t2;
select max(c1) from test.t2
                         *
ERROR at line 1:
ORA-00376: file 8 cannot be read at this time
ORA-01110: data file 8: '/data3/trgt/CNT_TST02.dbf'

SQL> alter database datafile 8 online;
alter database datafile 8 online
*
ERROR at line 1:
ORA-01190: control file or data file 8 is from before the last RESETLOGS
ORA-01110: data file 8: '/data3/trgt/CNT_TST02.dbf'

{code}

so what did i do wrong in my recovery that i could not get my data?? how can i avoid this?? and restore my DB?

Edited by: user8363520 on Feb 29, 2012 12:24 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

user8363520 wrote:
so can get us this or can't do?

You seem to have:
(a) old version of data through rman backup files
(b) old version of the control file
(c) Backed archived redo logs
(d) recovery archived logs that have been recently generated
(e) current online redo logs

Therefore, you should be able to bring back the database in the State wherever it was when you made the abandonment.
I don't do enough laps to be able to cite details on the commands to use (and I often find myself using the command line recovery after that file of rman restore, but the steps you need must be)

Take a copy of security of the data current, archived and online redo log files.
Restore the backup control file, data files, and archived recovery logs
Recover the database by using up to cancel backup control file
You have to do 'create datafile' bit as the collection hits the 'missing file' bit
You will need to provide the names of the archived and log files online redo recovery reached their
(although, presumably, you could leave copies of the logs stored in the default location)

Concerning
Jonathan Lewis
http://jonathanlewis.WordPress.com
Author: core Oracle

Tags: Database

Similar Questions

  • How can I get my iPod Touch on the way of recovery without loss of data?

    Hello

    My iPod touch 4th generation shows a cable Apple USB pointing towards the iTunes logo.

    I have not jailbroken it or fallen to set the mode of recovery, and when I open iTunes it comes up with the message saying that it has detected an iPod in recovery mode and I can't use it with iTunes unless I restore my iPod.

    Of course, I don't want to erase all the 50 GB of music I stored on I have not saved recently.

    Is it possible for me to get my iPod out of the recovery mode without restore me or lose my data?

    Thank you very much

    Kieran

    iPod Touch 4th generation 64 GB iOS 6.1.6

    12.3.3.17 iTunes 64-bit on Windows 10

    No, the iPod needs to be restored and then deleted.

    However, with iOS 6 you can be able to get some data fom restored via iPod

    How to perform a recovery of the iPad for photos, videos

    Dr. Phone to iOS recovery - PC only

    Data rescue tool all autour for Apple iPod

  • Lost all control files and no available backup... . How to recover the DB

    All,

    We have lost all control files and no backups available now...

    How to proceed on this to recover the database without data loss is possible...?

    Oracle 10g on solaris

    Hello

    Check out the link:
    http://Myracle.WordPress.com/2008/01/11/recover-database-without-control-files-and-redo-log-files/

    Thank you
    A H E E R X

  • Control files and backup spfile


    Hi all

    This is a database of GR 11, 2. There is a running script to keep the full backup.

    crosscheck archivelog all;
    crosscheck backup;
    backup database;
    backup archivelog all delete input;
    delete noprompt obsolete;
    

    I checked the controlfile autobackup using - show controlfile autobackup.    and it is turned OFF

    But when I run - list backup of controlfile; list backup of spfile;

    I find that contolfile benefits from the support upwards and also through the above script spfile

    Can someone please explain to me how this happens without controlfile autobackup

    Thanks in advance

    This is a normal behavior on version 11.2 and beyond

    No matter if controlfile autobackup turned OFF, RMAN automatically includes the control file and the server settings file in the backups of data file1

    (i.e backup database command always include datafile 1 which trigger backup of control and spfile).

  • Windows live mail issue when my wife deleted our email, we lost our files and folders

    Windows live mail issue when my wife deleted our email, we lost our files and folders

    Thank you for visiting the Microsoft answers community site.

    The question you have posted is related to Windows Live Mail and would be better suited in the Windows Live Solution Center.

    Please visit the link below to find a community that will support what ask you:

    http://windowslivehelp.com/forums.aspx?ProductID=15

    Cody C
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I DELETED MY PDF FILES AND AGAIN USING THE RECOVERY SOFTWARE I FIND ALL MY FILES BUT NOW WHEN I OPEN FILES THAT IT SHOWS (THE FILE MAY BE CORRUPTED OR NOT SUPPORTED FORMAT.NO HOW CAN I OPEN THE FILES.) ALL OF THEM ARE MY DOCUMENTS IS VERY IMPORTANT. PLEAS

    I DELETED MY PDF FILES AND AGAIN USING THE RECOVERY SOFTWARE I FIND ALL MY FILES BUT NOW WHEN I OPEN FILES THAT IT SHOWS (THE FILE MAY BE CORRUPTED OR NOT SUPPORTED FORMAT.NO HOW CAN I OPEN THE FILES.) ALL OF THEM ARE MY DOCUMENTS IS VERY IMPORTANT. PLEASE PROVIDE ME WITH A

    Deleted file recovery can recover incomplete files, i.e. the part of these files may be missing.  Recover deleted files is much more reliable if recovery of a backup, instead of using recovery software.

    These things depend on the operating system and the file system.

    One thing, you can see: open one of these files damaged with a text editor, and then make sure that the constant % PDF is somewhere in the first 1024 bytes.

    PS please do not post ALL uppercase; It is very difficult to read!

  • Control files and spfile backup automatic backup fails

    Hi all

    I use Oracle RAC 11 g ASM 2. My database is 2 knots RAC1 and RAC2.

    I take the RMAN database backup ASM diskgroup (FRA) and RAC1 and RAC2-mounted network file system. I have this requirement backup also outside the DSO.

    I put: set UP the CONTROL FILE AUTOBACKUP ON;
    I'm runing the node RMAN backup task 2 (RAC2)

    I am facing the error when taking a backup to the network file system. below
    Starting Control File and SPFILE Autobackup at 08-SEP-12
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of Control File and SPFILE Autobackup command on ORA_DISK_1 channel at 09/08/2012 18:20:06
    ORA-00245: control file backup failed; target is likely on a local file system
    How would I fix this?

    Kind regards

    Hello

    Please take a look at the document MOS * RMAN backup fails with Ora-00245 and Rman-08132 [1365484.1 ID] *.

    Snapshot must Controlfile location on a location shared between the nodes.

  • Toshiba satellite which is stuck in the installation of service Pack 1. I have service pack 2, can not fix with this cd, can I install service Pack 2 on it without loss of data or files?

    I have the laptop (Toshiba satellite) friend who's stuck in the installation of the service Pack 1.  I have service pack 2 and am wondering, since I can't fix with this cd, can I install service Pack 2 on it without loss of data or files?

    PC claims service pack1 cd with file asms

    When you use service pack 2 cd can not load product catalogues, it is fatal error, the Setup logs files should contain more information.

    Why not integrate Service Pack 2 and Service Pack 3 on her XP CD by following the instructions here (using another PC):

    http://en.community.Dell.com/support-forums/software-OS/w/microsoft_os/1443.aspx
    Copy all data on an external hard drive, do a clean install using the XP CD updated (preferably on the BIOs)
    Then, install the drivers from the system, then Microsoft Security Essentials, Windows 7 Firewall Control (XP free Version) and Malwarebytes' AntiMalware (free or Pro) or whatever you prefer security.
    Then copy the files over.
    This will probably lead to the best performance.
  • Incompatible control file and the data after the backup files

    The company that I work has servers where some components are new more, so have a backup in the event of hardware failure. If we intend to do some clones of 1:1 of the current servers to change them in case of emergency. As most of the necessary data is not volatile and we reset stuff in any case, there is no need of replicaton, replace an old version of the database works very well. Now we could not easily get substitutes for our old material, so we had to set up new machines. And that's where my trouble starts, because now I had to actually set up the system and the database rather than do a simple copy of byte to byte. I'm mainly a programmer, using Oracle of 'other' side, but as our DBA is yet to come and the work must be done now...

    So I did some reasearch and decided to do a normal backup of the cold. I have dumped the controlfile, copied data and configuration files to the new server and read the prompt SQL (no mistake there) control file. After some initial hiccups with the system (memory, etc.), I was finally about to start the database, only to get an error ORA-01190 ("1 database or control file is from before the last RESETLOGS").

    I guess I did is a bad thing when you restart the database (used the wrong part of the control file) or when the copy of the data. The original data have split two readers for simplicity and logical, I copied their entire contents. So maybe I don't not copied to little but too?

    As I said in the introductory paragraph, I'm not a DBA, but I'm willing to learn and listen. I don't expect a complete solution, but some guidelines when to look and what to avoid. Any help on this would be appreciated.

    Currently, there are some points need clarification,

    1. you don't need to re-create the control file, if you have a clean shutdown database and copied all the files at the same time (data files, control files etc.)

    2. If you stop DB, copied files of data but do not copy the control at shutdown file, you must re-create the control file.

    3. the error ORA-19909 suggested you resetlog prior to recovery.

    ORA-19909: string data file belongs to an orphan incarnation
    Cause: The data file specified has been restored from a backup that was taken during a period of time that has already been abandoned by a resetlogs operation or Oracle cannot identify what incarnation of database file belongs. The alert log contains more information.
    Action: Restore a backup of this file that belongs to the current or a previous incarnation of the database. If you use RMAN to restore, RMAN automatically selects a good backup.

    4. it would be better that again follow you from scratch the article.

    for example,.

    Copy the files you did copy over the data base to the bottom of the old server,
    modify the control file creation script

    RECOVER DATABASE USING BACKUP CONTROLFILE;
    ALTER DATABASE OPEN RESETLOGS;

  • Control files and uir version

    Hi all

    What are your methods to keep the files under version control, namely SVN UIR? It works very well as binary files, but if someone makes a minor change to the user interface, there is no way that you can find it visually.

    I tested the TUI under SVN files and in fact a quick 'diff' shows you what is new or changed in the file. It is possible to load files TUI with LoadPanel(), but it is not possible to have the default editor UI savings as TUI, making it impassable. So, how do you do that? A think a simple solution of NOR would be to have the default option of the editor as TUI, bearing in mind that in the past, there were several cases of .tui behave differently from .uir.

    If some of you are in agreement, I'll drop a suggestion.

    While you cannot Editor Save only in. TUI format, you can configure it to automatically generate the. TUI when you save the file: can it be a solution tailored to your needs?

    In addition, even if I do not use version control, I honor your valuable suggestion and I'll congratulations your idea when you publish.

  • After that I did Disk Defragmenter to C I lost my files and setting up wireless for my windows

    After I did Disk Defragmenter to C I lost some information and files for my windows then my wireless does not detect all wireless networks its lost all the operating parameters of my adapter wireless (Atheros AR5005G Wireless Network Adapter) I need to get files and setting of cos its all lost and I couldn't update my antivirus (Microsoft Security Essentials) 0 x 80240022

    Hi jtm 8888.

    Try these methods in the order shown:

    Method 1: As a first step, update the network adapter driver by visiting the manufacturer's Web site.

    You can also follow this step to do the same thing:

    a. right click on my computer, click Manage, then Device Manager.

    b. double-click the type of device you want to update or change.

    c. right click on the device driver specific, you want to update or change.

    d. click set to update driver to open the Hardware Update Wizard. Follow the instructions in the wizard.

    For more information, see:

    How to manage devices in Windows XP

    Method 2: Follow the steps listed in this article and check if this may help you:

    How to troubleshoot wireless network connections in Windows XP Service Pack 2

    Note: The steps listed in this article are applicable to the other version of Windows XP as well service packs.

    Method 3: For problems with Microsoft Security Essentials, see:

    http://www.Microsoft.com/en-us/security_essentials/support/cf5220bd-3da8-4694-ac42-f5396ef5ff0b.aspx

  • Running Exchange Server application of hotfixes and service pack to the server mailbox without loss of data during the restore?

    People,

    I would like to know how can I safely ask the Exchange Server service pack or cumulative update for the server role mailbox (no DAG) without loss of e-mail during the downtime and roll back the snapshot?

    If I can do the following:

    1. stop all Exchange Server services.

    2. unplug the vNIC on the mailbox server

    3 take a snapshot of the virtual machine

    4. apply the service Pack of Exchange Server / Cumulative Update or Windows Update

    5 reset

    6 reconnect the vNIC, if the server online with no problem, commit / remove the snapshot, if not, then disconnect the vNIC followed to restore.

    would be - this sense being or support for Vmware and Microsoft http://www.vmware.com/files/pdf/exchange-2010-on-vmware-support-and-licensing-guide.pdf ?

    If yu have any other suggestions, please let me know here.

    Thanks in advance.

    Hey AlbertWT,

    I'll start by saying that I would not do.  Microsoft is explicit that snapshots are not supported with Exchange when virtualized.  See below (from Exchange 2013 Virtualization: help Exchange 2013):

    Some hypervisors include features to take snapshots of virtual machines. Virtual machine snapshots capture the State of a virtual machine while it is running. This feature allows you to take several snapshots of a virtual machine and then return the virtual machine to a previous state by applying a snapshot to the virtual machine. However, virtual machine snapshots aren't application aware, and using them can have unintended and unexpected consequences for a server application that manages the data of the State, such as Exchange. Accordingly, making snapshots of the virtual machine to a virtual guest computer Exchange only is not supported.

    Even if we ignore the statement of support from shadow copies that isn't always a good idea.  Here are some things to consider.

    (1) cumulative updates for the Exchange to modify the Active Directory schema.  Roll back the snapshot on the mailbox server is not undo changes made to RFA, which could cause functional supported questions.  See this link to give you an idea of how there is pattern AD updates in each CU Exchange and service pack: the Active Directory in Exchange 2013 schema changes: Exchange 2013 help

    (2) it is possible to send to come during the time you test the update, and if you need to restore you would need a plan to retrieve this e-mail.  Third party services may work, or you can prevent the email to come in your environment completely during this period, but these aren't the ideal solutions.

    A much better solution would be to create a lab environment that is isolated from the production.  You can either take clones of your Exchange and AD VMs and put them in a closed network environment, or create a laboratory and import the structure of your ad if it matches the production.  I think it is a much better way to test than to try to rely on stereotypes in production.

    Hope that helps!

    Matt

  • Is it possible for a flex application to reproduce a structure of files and folders to the customer without zip

    I have an upload/download of flex based app that works very well for download, but when it comes to download, I have coldfusion zip files and folders together and then just by downloading this single file.  I would like to have the flex application to replicate files and folders on the clients computer without having to zip & unzip them and I was wondering if this is even possible.  If I remember correctly, I thought that flash could not create folders on the clients computer...

    Thank you!

    a desktop AIR application can write files/folders to the users ' computer

    a web application could not

  • Dynamic form (goes and comes without loss of data!)

    Hey there!

    I am in a bit of a pickle... especially since I'm not very goot with AS2...

    Here's what I'm trying to do:

    http://www.isleekdesign.com/customtravel.swf

    It is essentially a shape with 6 pages that you can scroll backward, if you missed some information and want to go back for review.

    I think the concept is good, but I'm not sure how to actually run.

    Here is a screenshot of the timeline, so get you an idea of how I did it (but you probably know it already...):

    http://www.isleekdesign.com/timeline.jpg

    I did create a mask and shape scrolls... it going forward until that 45 frame, then it goes to the rear.

    For example, if we are on page 2 of 6 and retaliate, he plays the animation "backwards" and jumps to frame 1 (of course plays don't step back, but with a ' gotoAndStop (1) '; command).

    The problem is that if I fill, say that all of the information on page 1 of 6 and then scroll down... when I come back to this page, the info is lost.

    Here's what the form looks like:

    http://www.isleekdesign.com/Scene1.jpg

    I have named each text entry and checkbock accordingly, but am not sure how to get the input data actually stick to each field so that the "coming and going" actually works...

    Any ideas on how to achieve this? The next step is to send the form to a php script... But first things first

    My * guess * is that a script should be added when I hit the "next" button, so that it sticks the field values (what the user has typed) in each field and stays there. This will also help collect information of each page for when it is ready to be sent.

    Thank you in advance to anyone who can help me. I'm ready to download the .fla is necessary.

    Kind regards

    iSleek

    Save all data (in variables), before leave you a page.

    for example, create your instance of loadvars to send when you initialize your app (before you get on the pages of form):

    var sendLV:LoadVars = new LoadVars();  Initialize, so it is not crushed.  You may even need:

    {if(!sendLV)}

    var sendLV:LoadVars = new LoadVars();

    }

    Then, before leaving a page, wrap through all your textfields and record the input data to sendLV:

    sendLV.name = nameTF.text;

    sendLV.address = addressTF.text;

    .

    .

    .

    etc.

    When you enter a loop of the form through your textfields page again to see if all the data was stored:

    {if(sendLV.Name!=undefined)}

    nameTF.text = sendLV.name;

    }

    {if(sendLV.Address!=undefined)}

    addressTF.text = sendLV.address;

    }

    .

    .

    .

    etc.

    not only this will prevent loss of data among users of flash and frustrating, but you will be all set to call your script php with your populated loadvars.

  • Loss of all control files and two independent of the system tablespace data files.

    Hello


    Loss of the controlfile and 2 data files: February 25, 2010... 15:00

    Database: in Archivelog mode

    Backup: controlfile and all (6) datafiles on February 20, 2010 and all archive logs are available up to the failure

    -Wanted to recover.

    Even if the controlfiles are restored from a backup, as long as the archive + online redo logs are available, you can make a FULL recovery.
    At the end of the recovery, an OPEN RESETLOGS would update the controlfile with correct information about SNA sequence # and headers of files.
    (Of course, the RESETLOGS would mean a new incarnation is created and log sequence numbers start from 1 - if you perform a backup as soon as possible after the RESETLOGS).

    Hemant K Collette
    http://hemantoracledba.blogspot.com

Maybe you are looking for

  • Satellite C660/C660D - Dial-Up Modem and Wi - Fi Question

    Sorry for this dum question, but I have dial-up internet (living in rural France).Could someone tell me what I need to buy to be able to use my dial-up access (it doesn't seem to be a built-in modem). I would also like to be able to use the internet

  • Satellite A500: BSOD (blue screen of death) - Solution

    Hello Well, I am engineer in Instrumentation and also related to the field of computing. In recent weeks, I see that many people in the world are stuck on this problem of malfunction or failure of the graphics card driver. Recently a friend brought m

  • How to add the hyperlink on front panel

    Hello I want to add hyperlinks on my front. After clicking on who can access run another VI of disc or simply give me the functionality of a booleon control. I don't want to use the button for this. I want these hyperlinks for my standalone applicati

  • Pavilion g7: stick of laptop screen of Windows updates

    My laptop is stuck on the screen 'failure configuration of Windows, restoration updates of changes, do not turn off your computer. It's been going on for days. I need what is on the computer. I tried restarting and pressing the F8 key and it does not

  • Epson Stylus NX130: printer will not feed

    I was running Windows 7 then upgraded to Windows 10, printer worked fine until the upgrade, have downloaded the latest drivers for this printer, uninstalled, reinstalled their transformed new printer works to restart at anything not done, printer wil