Finding missing sequence

Hello all.
I'm using the Oracle 10g Database. i'm trying to figure out how to write a simple sql query to:
find the missing numbers in a table between say 86002895 and 86005197 (inclusive)
Ex: Current Scenario : table_1 :
tracking_no | id_value
86002895 | 10
86002896 | 10
86002899 | 10
86002900 | 10
86002910 | 10
86005196 | 10
86005197 | 10
Expected Result1:
" missing tracking_id " where id_value = 10 from table_1 ;
86002897
86002898
86002900 to 86002910
86002910 to 86005196
Thanks in advance :)

user8635888 wrote:
Ex: Current Scenario : table_1 :
tracking_no | id_value
86002895 | 10
86002896 | 10
86002899 | 10
86002900 | 10
86002910 | 10
86005196 | 10
86005197 | 10
Expected Result1:
" missing tracking_id " where id_value = 10 from table_1 ;
86002897
86002898
86002900 to 86002910
86002910 to 86005196
Thanks in advance :)Maybe something like the following:
SQL> SELECT * FROM TEST_TAB
  2  /
TRACKING_NO   ID_VALUE
   86002895         10
   86002896         10
   86002899         10
   86002900         10
   86002910         10
   86005196         10
   86005197         10
7 rows selected.
SQL> SELECT   CASE
  2              WHEN tracking_no + 1 = lead_no - 1 THEN TO_CHAR (tracking_no +1)
  3              ELSE TO_CHAR (tracking_no + 1) || '-' || TO_CHAR (lead_no - 1)
  4           END
  5              Missing_track_no
  6    FROM   (SELECT   tracking_no,
  7                     LEAD (tracking_no, 1, NULL)
  8                        OVER (ORDER BY tracking_no ASC)
  9                        lead_no
10              FROM   test_tab
11             WHERE   ID_VALUE = 10)
12   WHERE   lead_no != tracking_no + 1
13  /
MISSING_TRACK_NO
86002897-86002898
86002901-86002909
86002911-86005195
3 rows selected.
SQL>You can tweak the above query to match your requirement.
Hope this helps.
Regards,
Jo

Similar Messages

  • Finding missed sequence numbers and rows from a fact table

    Finding missed sequence numbers and rows from a fact table
    Hi
    I am working on an OLAP date cube with the following schema:
    As you can see there is a fact transaction with two dimensions called cardNumber and Sequence. Card dimension contains about three million card numbers. 
    Sequence dimension contains a sequence number from 0 to 255. Fact transaction contains about 400 million transactions of those cards.
    Each transaction has a sequence number in 0 to 255 ranges. If sequence number of transactions of a card reaches to 255 the next transaction would get 0 as a sequence number.
    For example if a card has 1000 transactions then sequence numbers are as follows;
    Transaction 1 to transaction 256 with sequences from 0 to 255
    Transaction 257 to transaction 512 with sequences from 0 to 255
    Transaction 513 to transaction 768 with sequences from 0 to 255
    Transaction 769 to transaction 1000 with sequences from 0 to 231
    The problem is that:
    Sometimes there are several missed transactions. For example instead of sequence from 0 to 255, sequences are from 0 to 150 and then from 160 to 255. Here 10 transactions have been missed.
    How can I find all missed transactions of all cards with a MDX QUERY?
    I really appreciate for helps

    Thank you Liao
    I need to find missed numbers, In this scenario I want the query to tell the missed numbers are: 151,152,153,154,155,156,157,158,159
    Relative transactions are also missed, so I think it is impossible to get them by your MDX query
    Suppose this:
    date
    time
    sequence
    20140701
    23:22:00
    149
    20140701
    23:44:00
    150
    20140702
    8:30:00
    160
    20140702
    9:30:00
    161
    20140702
    11:30:00
    162
    20140702
    11:45:00
    163
    As you can see the sequence number of the last transaction at the 20140701 is 150
    We expecting that the first transaction of the next day should be 151 but it is 160. Those 10 transactions are totally missed and we just need to
    find missed sequence numbers

  • FInding missing sequence number

    Dear All
    I have a column in table like this (actually its just a sample):
    TAB
    MMxxxx9988
    MMxxxx9990
    MMxxxx9995
    MMxxxx9998
    MMxxxx9999
    MMxxxx0000
    MMxxxx0001
    MMxxxx0003
    MMxxxx0004
    MMxxxx0005
    MMxxxx0008
    xxxx is variable
    last four digit is a sequence number start with 0000 and end with 9999.
    when the last four digit exceeds 9999 it reset to 0000
    My question is : how can we find the missing sequence number for that column.
    example:
    for the above table , it should give the below result:
    TAB
    MMxxxx9989
    MMxxxx9991
    MMxxxx9992
    MMxxxx9993
    MMxxxx9994
    MMxxxx9996
    MMxxxx9997
    MMxxxx0002
    MMxxxx0006
    MMxxxx0007
    Thanks

    One another way of doing it:
    For ease of verification, I have removed the records from 0001 to 9988.
    with data as
      select 'MMxxxx9988' col from dual union all
      select 'MMxxxx9990' col from dual union all
      select 'MMxxxx9995' col from dual union all
      select 'MMxxxx9998' col from dual union all
      select 'MMxxxx9999' col from dual
    --  select 'MMxxxx0000' col from dual union all
    --  select 'MMxxxx0001' col from dual union all
    --  select 'MMxxxx0003' col from dual union all
    --  select 'MMxxxx0004' col from dual union all
    --  select 'MMxxxx0005' col from dual union all
    --  select 'MMxxxx0008' col from dual
    select distinct col, nxt_val, substr(col, 1, 6) || to_char(st_with + level, 'fm00009') miss_seq
      from (
            select col, nxt_val, col_num st_with, nxt_col_num end_with
              from (
                    select col, lead(col) over (partition by substr(col, 1, 6) order by substr(col, -4, 4)) nxt_val,
                           to_number(substr(col, 7, 4)) col_num, to_number(substr(lead(col) over (partition by substr(col, 1, 6) order by substr(col, -4, 4)), 7, 4)) nxt_col_num
                      from data
             where abs(col_num - nxt_col_num) > 1
    connect by level <= (end_with - st_with) - 1
       and prior col = col
       and prior sys_guid() is not null
    order by col;
    COL        NXT_VAL    MISS_SEQ    
    MMxxxx9988 MMxxxx9990 MMxxxx09989 
    MMxxxx9990 MMxxxx9995 MMxxxx09991 
    MMxxxx9990 MMxxxx9995 MMxxxx09992 
    MMxxxx9990 MMxxxx9995 MMxxxx09993 
    MMxxxx9990 MMxxxx9995 MMxxxx09994 
    MMxxxx9995 MMxxxx9998 MMxxxx09996 
    MMxxxx9995 MMxxxx9998 MMxxxx09997 
    7 rows selected

  • To find missing sequence numbers in a table

    Hi ,
    I populate the primary key column of a table using sequence which starts with 1 and increments by 1. I need to find the sequence numbers which have been skipped while inserting.

    Hi,
    Please refere the similar thread.
    Re: Identifying the missing record in a series
    Regards

  • Find Missing sequence in Alphabet

    Two table records.
    (Table1) Holds values A,B,C,D,E,F....Z, AA,AB,AC,AD..e.t.c
    (Table2) Holds values A,C,D,E,F.....Z,AA,AC,AD e.t.c
    I need to compare the two tables and findout if they are in Alphabetical sequence, if any sequence is missing I need to write out to a table.
    (Table1) Has A,B,C
    (Table2) Has A,C,D So B is missing and also AB is missing.
    How do I get this accomplished in my PL/SQL

    The easiest to check whether things are missing is with the MINUS operator...
    SELECT 'in a not b', col1 FROM table_a
      MINUS
      SELECT 'in a not b', cola FROM table_b
    UNION ALL
      SELECT 'in b not a', cola FROM table_b
      MINUS
      SELECT 'in b not a', col1 FROM table_a As for whether they are in alphabetical order, the only way of guaranteeing the order of rows in a table is with an ORDER BY when we select them. Note that with an alaphabetical sort AB comes before B. But if that's not what you mean by alphabetical order help is at hand...
    SQL> create table abcd (cola varchar2(3));
    Table created.
    SQL> insert into abcd values ('A');
    1 row created.
    SQL> insert into abcd values ('B');
    1 row created.
    SQL> insert into abcd values ('C');
    1 row created.
    SQL> insert into abcd values ('AB');
    1 row created.
    SQL> insert into abcd values ('AC');
    1 row created.
    SQL> insert into abcd values ('ABC');
    1 row created.
    SQL> SELECT * FROM abcd
      2  ORDER  BY cola
      3  /
    COL
    A
    AB
    ABC
    AC
    B
    C
    6 rows selected.
    SQL> SELECT * FROM abcd
      2  ORDER  BY length(cola), cola
      3  /
    COL
    A
    B
    C
    AB
    AC
    ABC
    6 rows selected.
    SQL> Cheers, APC

  • SOLUTION to find Missing Frames in an Image Sequence

    Here's blog post about how to find exactly which frames are missing in an image sequence. Since AE only says that you have x number of frames missing and if your sequence is 1000s of frames it is quite tedious to try to locate them.
    http://fredross.kinja.com/find-missing-frames-in-image-sequences-511138845

    After Effects CC (12.0) has this feature built in.
    http://blogs.adobe.com/aftereffects/2013/04/whats-new-changed-after-effects-next.html

  • Missing sequence in Adobe Premiere CC 2014. Help!?

    I am working on an eight-month long project in Premiere. I've been experiencing some software issues using Direct Link between Premiere and AE, so I updated AE, which resolved some of the issues. I decided to update Premiere as well, to the latest 2014 version. When I opened my project, the few sequences I had opened last were present, but my main project timeline was missing. Where in cyber space did it go?! It wasn't a nested sequence, so I cannot just open it from the project file window, right? I tried opening an auto-save file of the project from last night, but the main timeline project was missing there too! Help!

    Everything in a project will be found somewhere in the Project panel.  Try a search.  When you find the sequence, double-click on it to open it.
    (On a side note, the connection between PP and AE is called Dynamic Link.  Direct Link is the connection between PP and SpeedGrade.  Two different things that behave very differently.)

  • Premiere Pro CS4 - Missing Sequence Presets?

    Hi -
    I recently installed the Production Premium suite on a mac running snow leopard, and ran all the updates. Premiere is at version 4.2.1. When I create a new sequence, these are my preset options:
    Am I missing the XDCAM EX and XDCAM HD presets, or am I just not looking in the right place?
    Incidentally, when I installed the suite, I ran into a problem where After Effects wouldn't launch. This was solved by uninstalling and reinstalling that particular app. I got an error message right at the end of that re-installation (a generic DONE WITH ERRORS), but everything has been working just fine with that program. Is it possible Premiere was affected by my re-install of AE? 
    Thanks for your help.
    Ed

    I gave it another try, and I now have both After Effects launching and otherwise behaving as it should, and I have the missing sequence presets back in Premiere. I followed both your instructions to the letter, making sure not to open any other programs during the installation process and rebooting the computer after each step. I even ran CleanScript four times, just to make sure. (It didn't find anything, but perhaps it helped anyway?) 
    One other thing I did differently was to avoid the Adobe Updater. After installing CS4 this latest time, the first thing I did before adding any of the updates was to check After Effects (it launched) and Premiere (the presets were all there). On my first two installations, I just went straight from installation to having Adobe Updater download and install all the updates. It's possible that things were working fine, and the problems were introduced during the mass installation of all the updates. So this time, starting with After Effects, I downloaded just the 9.0.2 update and installed it, rebooted, and then checked both AE and Premiere - everything was still fine. Then I did the same with the 4.2.1 update for Premiere, rebooted, and checked them both - still fine. I ended up doing each app one at a time, checking along the way to make sure no particular update broke anything else in the suite. It was probably a bit overkill after those first two, but I was so close, I didn't want to screw it up by being careless.
    Incidentally, after that second installation didn't work, I submitted a ticket to Adobe Customer Support. They got back to me last night, and their solution was to just download the plugins for the missing presets here:
    www.adobe.com/products/plugins/premiere/
    If anyone else is having difficulty, maybe that's another way to go.
    Thanks again for your advice.
    Ed

  • Missing Sequence Files ????

    Good Day...
    After opening my fcp file, I receive several "missing sequence file...wont play back properly" messages. I believe I may have deleted these sequence files accidentaly (it was around 12 am...I wasnt as mentally sharp as I normally am). I cannot locate them in the trash folder, autosave file folder, or any other folder on my computer. I read somewhere that I need to "delete all sequence files" and re-render the project...but which folder would contain the sequence files to be erased???
    Thanks in advance for the help.
    Macbook/IMAC   Mac OS X (10.4.9)   sequence files missing

    this is an excerpt taken from another FCP forum I had come across. The questions you asked about the render / sequence files are the same questions I had when I read the thread...
    #1 04-15-2006
    roxane
    DV creator Join Date: Jul 2005
    Posts: 7
    export to quicktime -missing sequnce?
    I had been working on my poor little G3 ibook with an external hard drive. I moved my 45 min project (the whole folder) to the my new G5 dual core, recaptured some of the footage and did some editing. (Wow. That thing is fast!)
    I'm using FCE2. When I try to export the movie to quicktime it tells me there is a sequence file missing and the movie won't play correctly without it. Then it tells me to search for it. I can't find it, hit cancel, try to export again. Now a different sequence file is missing, I do the same process again over and over.
    Do you have any idea why this is happening? What am I doing wrong? How can I prevent/fix this problem?
    roxane
    View Public Profile
    Find all posts by roxane
    #2 04-16-2006
    Pom16/10e
    DV creator Join Date: Nov 2005
    Posts: 489
    erase your render files and re-render everything.
    Macbook/IMAC   Mac OS X (10.4.9)  

  • "Open VI Reference" Option "Prompt user to find missing subVIs"

    I am using "Open VI Reference" to dynamically load a VI. For the "option" control of the "Open VI Reference" node, I pass "0x10" or "10" in hexadecimal, which supposedly "prompt user to find missing subVIs." Nevertheless, I don't get a prompt message dialog when I intentionally pass an invalid or missing VI path. Instead I just get an Error Code 7. What does this option "Prompt user..." suppose to do?

    Make sure you set the properties on the integer input into the “options” control to the “Open VI Reference” to be a Hexadecimal format (right-click on the “options” control input, select Format and Precision…, then select Hexadecimal). Now, if you re-run your VI and wire in a VI with a missing subVI, the Open VI Reference will appear with a dialog that will prompt you to browse to the missing subVI. This is exactly the same message LabVIEW displays when it attempts to open a VI and cannot find its subVIs.
    I’ve attached a simple example program to demonstrate. Enter the path to the “number extractor.vi” as the VI to open. You should see a dialog prompt appear asking for the “Search 1D Array – Complete.vi”.
    Hope this helps!
    Attachments:
    openVIRefExample.zip ‏20 KB

  • Could not find log sequence

    Hi guys,
    as I am still new to RMAN I would be greatfull to You for some help and guidance here.
    I am cloning database with RMAN duplicate database command and at the and of the script I got RMAN-06055: could not find log sequence 86362 thread 1 .
    The script is :
    RMAN> RUN {
    2>   allocate channel t1 type 'SBT_TAPE';
    3>   ALLOCATE AUXILIARY CHANNEL aux1 type 'SBT_TAPE';
    4>   ALLOCATE AUXILIARY CHANNEL aux2 type 'SBT_TAPE';
    5>   send 'NSR_ENV=(NSR_SERVER=servername,NSR_CLIENT=clientname)';
    6>   SET UNTIL TIME "to_date( '25.03.2008 08:00:00','dd.mm.yyyy hh24:mi:ss')";
    7>   DUPLICATE TARGET DATABASE TO GMIGR3
    8>     DB_FILE_NAME_CONVERT =('/lun0/prod/','/u01/lun0/gmigr3/'
    9>                            '/lun1/prod/','/u01/lun0/gmigr3/'
    10>                            '/lun2/prod/','/u01/lun0/gmigr3/'
    11>                            '/lun3/prod/','/u01/lun0/gmigr3/'
    12>                            '/lun4/prod/','/u01/lun0/gmigr3/'
    13>                           )
    14>     PFILE = '?/dbs/initGMIGR3.ora'
    15>     LOGFILE
    16>        GROUP 1 ('/u01/lun0/gmigr3/log1a.dbf', '/u01/lun0/gmigr3/log1b.dbf') SIZE 100M,
    17>        GROUP 2 ('/u01/lun0/gmigr3/log2a.dbf', '/u01/lun0/gmigr3/log2b.dbf') SIZE 100M,
    18>        GROUP 3 ('/u01/lun0/gmigr3/log3a.dbf', '/u01/lun0/gmigr3/log3b.dbf') SIZE 100M,
    19>        GROUP 4 ('/u01/lun0/gmigr3/log4a.dbf', '/u01/lun0/gmigr3/log4b.dbf') SIZE 100M,
    20>        GROUP 5 ('/u01/lun0/gmigr3/log5a.dbf', '/u01/lun0/gmigr3/log5b.dbf') SIZE 100M REUSE
    21>    ;
    22>    release channel aux1;
    23>    release channel aux2;
    24>    release channel t1;and here is the log,
    so what would be your advice on this :
    allocated channel: t1
    channel t1: sid=1339 devtype=SBT_TAPE
    channel t1: NMO v4.5.0.0
    allocated channel: aux1
    channel aux1: sid=870 devtype=SBT_TAPE
    channel aux1: NMO v4.5.0.0
    allocated channel: aux2
    channel aux2: sid=872 devtype=SBT_TAPE
    channel aux2: NMO v4.5.0.0
    sent command to channel: t1
    sent command to channel: aux1
    sent command to channel: aux2
    executing command: SET until clause
    Starting Duplicate Db at 25-MAR-08
    contents of Memory Script:
       set until scn  8177337546005;
       set newname for datafile  1 to
    "/u01/lun0/hanfa2/system01.dbf";
       set newname for datafile  2 to
    "/u01/lun0/hanfa2/system02.dbf";
       set newname for datafile  3 to
    "/u01/lun0/hanfa2/system03.dbf";
       set newname for datafile  4 to
    "/u01/lun0/hanfa2/system04.dbf";
       set newname for datafile  5 to
    "/u01/lun0/hanfa2/system05.dbf";
       set newname for datafile  6 to
    "/u01/lun0/hanfa2/ctxd01.dbf";
       set newname for datafile  7 to
    "/u01/lun0/hanfa2/owad01.dbf";
       set newname for datafile  8 to
    "/u01/lun0/hanfa2/a_queue02.dbf";
       set newname for datafile  9 to
    "/u01/lun0/hanfa2/odm.dbf";
       set newname for datafile  10 to
    "/u01/lun0/hanfa2/olap.dbf";
       set newname for datafile  11 to
    "/u01/lun0/hanfa2/xxcounter03.dbf";
       set newname for datafile  12 to
    "/u01/lun0/hanfa2/xxcounter02.dbf";
       set newname for datafile  13 to
    "/u01/lun0/hanfa2/xxcounter01.dbf";
       set newname for datafile  14 to
    "/u01/lun0/hanfa2/sysaux01.dbf";
       set newname for datafile  15 to
    "/u01/lun0/hanfa2/system12.dbf";
       set newname for datafile  16 to
    "/u01/lun0/hanfa2/undo06.dbf";
       set newname for datafile  17 to
    "/u01/lun0/hanfa2/disco01.dbf";
       set newname for datafile  18 to
    "/u01/lun0/hanfa2/disco02.dbf";
       set newname for datafile  19 to
    "/u01/lun0/hanfa2/disco03.dbf";
       set newname for datafile  20 to
    "/u01/lun0/hanfa2/a_conv01.dbf";
       set newname for datafile  21 to
    "/u01/lun0/hanfa2/a_conv02.dbf";
       set newname for datafile  22 to
    "/u01/lun0/hanfa2/a_conv03.dbf";
       set newname for datafile  23 to
    "/u01/lun0/hanfa2/a_conv04.dbf";
       set newname for datafile  24 to
    "/u01/lun0/hanfa2/a_int02.dbf";
       set newname for datafile  25 to
    "/u01/lun0/hanfa2/tools.dbf";
       set newname for datafile  26 to
    "/u01/lun0/hanfa2/a_txn_data04.dbf";
       set newname for datafile  27 to
    "/u01/lun0/hanfa2/a_txn_ind06.dbf";
       set newname for datafile  28 to
    "/u01/lun0/hanfa2/undo05.dbf";
       set newname for datafile  29 to
    "/u01/lun0/hanfa2/undo04.dbf";
       set newname for datafile  30 to
    "/u01/lun0/hanfa2/undo03.dbf";
       set newname for datafile  31 to
    "/u01/lun0/hanfa2/undo02.dbf";
       set newname for datafile  32 to
    "/u01/lun0/hanfa2/undo01.dbf";
       set newname for datafile  33 to
    "/u01/lun0/hanfa2/a_ts_mview03.dbf";
       set newname for datafile  34 to
    "/u01/lun0/hanfa2/a_ts_mview02.dbf";
       set newname for datafile  35 to
    "/u01/lun0/hanfa2/a_ts_mview01.dbf";
       set newname for datafile  36 to
    "/u01/lun0/hanfa2/foglight_ts.dbf";
       set newname for datafile  37 to
    "/u01/lun0/hanfa2/a_txn_data05.dbf";
       set newname for datafile  38 to
    "/u01/lun0/hanfa2/a_txn_data06.dbf";
       set newname for datafile  39 to
    "/u01/lun0/hanfa2/a_txn_data07.dbf";
       set newname for datafile  40 to
    "/u01/lun0/hanfa2/a_txn_ind07.dbf";
       set newname for datafile  41 to
    "/u01/lun0/hanfa2/a_txn_ind08.dbf";
       set newname for datafile  42 to
    "/u01/lun0/hanfa2/dwh01.dbf";
       set newname for datafile  43 to
    "/u01/lun0/hanfa2/dwh02.dbf";
       set newname for datafile  288 to
    "/u01/lun0/hanfa2/system10.dbf";
       set newname for datafile  295 to
    "/u01/lun0/hanfa2/system06.dbf";
       set newname for datafile  314 to
    "/u01/lun0/hanfa2/portal01.dbf";
       set newname for datafile  351 to
    "/u01/lun0/hanfa2/system07.dbf";
       set newname for datafile  352 to
    "/u01/lun0/hanfa2/system09.dbf";
       set newname for datafile  353 to
    "/u01/lun0/hanfa2/system08.dbf";
       set newname for datafile  354 to
    "/u01/lun0/hanfa2/system11.dbf";
       set newname for datafile  392 to
    "/u01/lun0/hanfa2/a_txn_data01.dbf";
       set newname for datafile  393 to
    "/u01/lun0/hanfa2/a_txn_ind01.dbf";
       set newname for datafile  394 to
    "/u01/lun0/hanfa2/a_ref01.dbf";
       set newname for datafile  395 to
    "/u01/lun0/hanfa2/a_int01.dbf";
       set newname for datafile  396 to
    "/u01/lun0/hanfa2/a_summ01.dbf";
       set newname for datafile  397 to
    "/u01/lun0/hanfa2/a_nolog01.dbf";
       set newname for datafile  398 to
    "/u01/lun0/hanfa2/a_archive01.dbf";
       set newname for datafile  399 to
    "/u01/lun0/hanfa2/a_queue01.dbf";
       set newname for datafile  400 to
    "/u01/lun0/hanfa2/a_media01.dbf";
       set newname for datafile  401 to
    "/u01/lun0/hanfa2/a_txn_data02.dbf";
       set newname for datafile  402 to
    "/u01/lun0/hanfa2/a_txn_data03.dbf";
       set newname for datafile  403 to
    "/u01/lun0/hanfa2/a_txn_ind02.dbf";
       set newname for datafile  404 to
    "/u01/lun0/hanfa2/a_txn_ind03.dbf";
       set newname for datafile  405 to
    "/u01/lun0/hanfa2/a_txn_ind04.dbf";
       set newname for datafile  406 to
    "/u01/lun0/hanfa2/a_txn_ind05.dbf";
       set newname for datafile  407 to
    "/u01/lun0/hanfa2/a_ref02.dbf";
       restore
       check readonly
       clone database
    executing Memory Script
    executing command: SET until clause
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting restore at 25-MAR-08
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00024 to /u01/lun0/hanfa2/a_int02.dbf
    restoring datafile 00402 to /u01/lun0/hanfa2/a_txn_data03.dbf
    channel aux2: reading from backup piece /full_PROD_s7jc4d6g_1_1/
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00395 to /u01/lun0/hanfa2/a_int01.dbf
    restoring datafile 00404 to /u01/lun0/hanfa2/a_txn_ind03.dbf
    channel aux1: reading from backup piece /full_PROD_s8jc4d6g_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_s8jc4d6g_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:48:09
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00026 to /u01/lun0/hanfa2/a_txn_data04.dbf
    restoring datafile 00030 to /u01/lun0/hanfa2/undo03.dbf
    channel aux1: reading from backup piece /full_PROD_s9jc4ene_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_s7jc4d6g_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:59:15
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00027 to /u01/lun0/hanfa2/a_txn_ind06.dbf
    restoring datafile 00401 to /u01/lun0/hanfa2/a_txn_data02.dbf
    channel aux2: reading from backup piece /full_PROD_sajc4evd_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_s9jc4ene_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:25:44
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00031 to /u01/lun0/hanfa2/undo02.dbf
    restoring datafile 00397 to /u01/lun0/hanfa2/a_nolog01.dbf
    channel aux1: reading from backup piece /full_PROD_sbjc4fbo_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_sajc4evd_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:26:55
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00039 to /u01/lun0/hanfa2/a_txn_data07.dbf
    restoring datafile 00403 to /u01/lun0/hanfa2/a_txn_ind02.dbf
    channel aux2: reading from backup piece /full_PROD_scjc4fkl_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_sbjc4fbo_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:26:14
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00025 to /u01/lun0/hanfa2/tools.dbf
    restoring datafile 00037 to /u01/lun0/hanfa2/a_txn_data05.dbf
    channel aux1: reading from backup piece /full_PROD_sdjc4g03_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_scjc4fkl_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:21:14
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00028 to /u01/lun0/hanfa2/undo05.dbf
    restoring datafile 00393 to /u01/lun0/hanfa2/a_txn_ind01.dbf
    channel aux2: reading from backup piece /full_PROD_sejc4g5i_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_sdjc4g03_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:22:02
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00032 to /u01/lun0/hanfa2/undo01.dbf
    restoring datafile 00038 to /u01/lun0/hanfa2/a_txn_data06.dbf
    channel aux1: reading from backup piece /full_PROD_sfjc4gf3_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_sejc4g5i_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:23:13
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00352 to /u01/lun0/hanfa2/system09.dbf
    restoring datafile 00392 to /u01/lun0/hanfa2/a_txn_data01.dbf
    channel aux2: reading from backup piece /full_PROD_sgjc4gkj_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_sfjc4gf3_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:21:12
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00400 to /u01/lun0/hanfa2/a_media01.dbf
    restoring datafile 00405 to /u01/lun0/hanfa2/a_txn_ind04.dbf
    channel aux1: reading from backup piece /full_PROD_shjc4gtq_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_sgjc4gkj_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:16:32
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00033 to /u01/lun0/hanfa2/a_ts_mview03.dbf
    restoring datafile 00406 to /u01/lun0/hanfa2/a_txn_ind05.dbf
    channel aux2: reading from backup piece /full_PROD_sijc4h14_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_shjc4gtq_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:15:51
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00022 to /u01/lun0/hanfa2/a_conv03.dbf
    restoring datafile 00029 to /u01/lun0/hanfa2/undo04.dbf
    channel aux1: reading from backup piece /full_PROD_skjc4hcm_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_sijc4h14_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:13:42
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00035 to /u01/lun0/hanfa2/a_ts_mview01.dbf
    restoring datafile 00041 to /u01/lun0/hanfa2/a_txn_ind08.dbf
    channel aux2: reading from backup piece /full_PROD_sjjc4h9n_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_skjc4hcm_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:12:13
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00040 to /u01/lun0/hanfa2/a_txn_ind07.dbf
    restoring datafile 00353 to /u01/lun0/hanfa2/system08.dbf
    channel aux1: reading from backup piece /full_PROD_sljc4hjo_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_sjjc4h9n_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:12:53
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /u01/lun0/hanfa2/system01.dbf
    restoring datafile 00034 to /u01/lun0/hanfa2/a_ts_mview02.dbf
    channel aux2: reading from backup piece /full_PROD_smjc4hkr_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_sljc4hjo_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:10:21
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00396 to /u01/lun0/hanfa2/a_summ01.dbf
    restoring datafile 00399 to /u01/lun0/hanfa2/a_queue01.dbf
    channel aux1: reading from backup piece /full_PROD_sojc4hrb_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_smjc4hkr_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:08:08
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00016 to /u01/lun0/hanfa2/undo06.dbf
    restoring datafile 00023 to /u01/lun0/hanfa2/a_conv04.dbf
    channel aux2: reading from backup piece /full_PROD_snjc4hr8_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_sojc4hrb_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:06:39
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00014 to /u01/lun0/hanfa2/sysaux01.dbf
    restoring datafile 00015 to /u01/lun0/hanfa2/system12.dbf
    channel aux1: reading from backup piece /full_PROD_sqjc4i1a_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_snjc4hr8_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:07:21
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00008 to /u01/lun0/hanfa2/a_queue02.dbf
    restoring datafile 00394 to /u01/lun0/hanfa2/a_ref01.dbf
    channel aux2: reading from backup piece /full_PROD_srjc4i49_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_sqjc4i1a_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:02:30
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00398 to /u01/lun0/hanfa2/a_archive01.dbf
    restoring datafile 00407 to /u01/lun0/hanfa2/a_ref02.dbf
    channel aux1: reading from backup piece /full_PROD_ssjc4i7s_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_srjc4i49_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:04:01
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00295 to /u01/lun0/hanfa2/system06.dbf
    restoring datafile 00351 to /u01/lun0/hanfa2/system07.dbf
    channel aux2: reading from backup piece /full_PROD_stjc4ia7_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_ssjc4i7s_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:03:51
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00042 to /u01/lun0/hanfa2/dwh01.dbf
    channel aux1: reading from backup piece /full_PROD_spjc4huk_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_stjc4ia7_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:11:11
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00002 to /u01/lun0/hanfa2/system02.dbf
    restoring datafile 00003 to /u01/lun0/hanfa2/system03.dbf
    channel aux2: reading from backup piece /full_PROD_sujc4ics_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_spjc4huk_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:13:32
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_sujc4ics_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:03:56
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00288 to /u01/lun0/hanfa2/system10.dbf
    restoring datafile 00354 to /u01/lun0/hanfa2/system11.dbf
    channel aux1: reading from backup piece /full_PROD_t0jc4if5_1_1/
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00004 to /u01/lun0/hanfa2/system04.dbf
    restoring datafile 00005 to /u01/lun0/hanfa2/system05.dbf
    channel aux2: reading from backup piece /full_PROD_svjc4ieu_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_t0jc4if5_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:04:46
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_svjc4ieu_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:04:46
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00020 to /u01/lun0/hanfa2/a_conv01.dbf
    restoring datafile 00021 to /u01/lun0/hanfa2/a_conv02.dbf
    channel aux1: reading from backup piece /full_PROD_t1jc4ihg_1_1/
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00006 to /u01/lun0/hanfa2/ctxd01.dbf
    restoring datafile 00036 to /u01/lun0/hanfa2/foglight_ts.dbf
    channel aux2: reading from backup piece /full_PROD_t3jc4iiu_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_t1jc4ihg_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:01:45
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00013 to /u01/lun0/hanfa2/xxcounter01.dbf
    restoring datafile 00018 to /u01/lun0/hanfa2/disco02.dbf
    channel aux1: reading from backup piece /full_PROD_t4jc4ijd_1_1/
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_t3jc4iiu_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:01:46
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00043 to /u01/lun0/hanfa2/dwh02.dbf
    channel aux2: reading from backup piece /full_PROD_t2jc4ihh_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_t4jc4ijd_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:00:36
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00009 to /u01/lun0/hanfa2/odm.dbf
    restoring datafile 00314 to /u01/lun0/hanfa2/portal01.dbf
    channel aux1: reading from backup piece /full_PROD_t6jc4ijs_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_t6jc4ijs_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:01:16
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_t2jc4ihh_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:01:51
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00017 to /u01/lun0/hanfa2/disco01.dbf
    restoring datafile 00019 to /u01/lun0/hanfa2/disco03.dbf
    channel aux1: reading from backup piece /full_PROD_t5jc4ijs_1_1/
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00011 to /u01/lun0/hanfa2/xxcounter03.dbf
    restoring datafile 00012 to /u01/lun0/hanfa2/xxcounter02.dbf
    channel aux2: reading from backup piece /full_PROD_t7jc4ik0_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_t5jc4ijs_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:00:55
    channel aux2: restored backup piece 1
    piece handle=/full_PROD_t7jc4ik0_1_1/ tag=TAG20080325T041511
    channel aux2: restore complete, elapsed time: 00:00:55
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00007 to /u01/lun0/hanfa2/owad01.dbf
    restoring datafile 00010 to /u01/lun0/hanfa2/olap.dbf
    channel aux1: reading from backup piece /full_PROD_t8jc4ik0_1_1/
    channel aux1: restored backup piece 1
    piece handle=/full_PROD_t8jc4ik0_1_1/ tag=TAG20080325T041511
    channel aux1: restore complete, elapsed time: 00:00:45
    Finished restore at 25-MAR-08
    sql statement: CREATE CONTROLFILE REUSE SET DATABASE "HANFA2" RESETLOGS ARCHIVELOG
      MAXLOGFILES     32
      MAXLOGMEMBERS      5
      MAXDATAFILES      512
      MAXINSTANCES     8
      MAXLOGHISTORY     7303
    LOGFILE
      GROUP  1 ( '/u01/lun0/hanfa2/log1a.dbf', '/u01/lun0/hanfa2/log1b.dbf' ) SIZE 100 M ,
      GROUP  2 ( '/u01/lun0/hanfa2/log2a.dbf', '/u01/lun0/hanfa2/log2b.dbf' ) SIZE 100 M ,
      GROUP  3 ( '/u01/lun0/hanfa2/log3a.dbf', '/u01/lun0/hanfa2/log3b.dbf' ) SIZE 100 M ,
      GROUP  4 ( '/u01/lun0/hanfa2/log4a.dbf', '/u01/lun0/hanfa2/log4b.dbf' ) SIZE 100 M ,
      GROUP  5 ( '/u01/lun0/hanfa2/log5a.dbf', '/u01/lun0/hanfa2/log5b.dbf' ) SIZE 100 M  REUSE
    DATAFILE
      '/u01/lun0/hanfa2/system01.dbf'
    CHARACTER SET UTF8
    contents of Memory Script:
       switch clone datafile all;
    executing Memory Script
    datafile 2 switched to datafile copy
    input datafile copy recid=1 stamp=650311810 filename=/u01/lun0/hanfa2/system02.dbf
    datafile 3 switched to datafile copy
    input datafile copy recid=2 stamp=650311810 filename=/u01/lun0/hanfa2/system03.dbf
    datafile 4 switched to datafile copy
    input datafile copy recid=3 stamp=650311810 filename=/u01/lun0/hanfa2/system04.dbf
    datafile 5 switched to datafile copy
    input datafile copy recid=4 stamp=650311810 filename=/u01/lun0/hanfa2/system05.dbf
    datafile 6 switched to datafile copy
    input datafile copy recid=5 stamp=650311810 filename=/u01/lun0/hanfa2/ctxd01.dbf
    datafile 7 switched to datafile copy
    input datafile copy recid=6 stamp=650311810 filename=/u01/lun0/hanfa2/owad01.dbf
    datafile 8 switched to datafile copy
    input datafile copy recid=7 stamp=650311810 filename=/u01/lun0/hanfa2/a_queue02.dbf
    datafile 9 switched to datafile copy
    input datafile copy recid=8 stamp=650311810 filename=/u01/lun0/hanfa2/odm.dbf
    datafile 10 switched to datafile copy
    input datafile copy recid=9 stamp=650311810 filename=/u01/lun0/hanfa2/olap.dbf
    datafile 11 switched to datafile copy
    input datafile copy recid=10 stamp=650311810 filename=/u01/lun0/hanfa2/xxcounter03.dbf
    datafile 12 switched to datafile copy
    input datafile copy recid=11 stamp=650311810 filename=/u01/lun0/hanfa2/xxcounter02.dbf
    datafile 13 switched to datafile copy
    input datafile copy recid=12 stamp=650311810 filename=/u01/lun0/hanfa2/xxcounter01.dbf
    datafile 14 switched to datafile copy
    input datafile copy recid=13 stamp=650311810 filename=/u01/lun0/hanfa2/sysaux01.dbf
    datafile 15 switched to datafile copy
    input datafile copy recid=14 stamp=650311810 filename=/u01/lun0/hanfa2/system12.dbf
    datafile 16 switched to datafile copy
    input datafile copy recid=15 stamp=650311810 filename=/u01/lun0/hanfa2/undo06.dbf
    datafile 17 switched to datafile copy
    input datafile copy recid=16 stamp=650311810 filename=/u01/lun0/hanfa2/disco01.dbf
    datafile 18 switched to datafile copy
    input datafile copy recid=17 stamp=650311810 filename=/u01/lun0/hanfa2/disco02.dbf
    datafile 19 switched to datafile copy
    input datafile copy recid=18 stamp=650311810 filename=/u01/lun0/hanfa2/disco03.dbf
    datafile 20 switched to datafile copy
    input datafile copy recid=19 stamp=650311810 filename=/u01/lun0/hanfa2/a_conv01.dbf
    datafile 21 switched to datafile copy
    input datafile copy recid=20 stamp=650311810 filename=/u01/lun0/hanfa2/a_conv02.dbf
    datafile 22 switched to datafile copy
    input datafile copy recid=21 stamp=650311810 filename=/u01/lun0/hanfa2/a_conv03.dbf
    datafile 23 switched to datafile copy
    input datafile copy recid=22 stamp=650311810 filename=/u01/lun0/hanfa2/a_conv04.dbf
    datafile 24 switched to datafile copy
    input datafile copy recid=23 stamp=650311810 filename=/u01/lun0/hanfa2/a_int02.dbf
    datafile 25 switched to datafile copy
    input datafile copy recid=24 stamp=650311810 filename=/u01/lun0/hanfa2/tools.dbf
    datafile 26 switched to datafile copy
    input datafile copy recid=25 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_data04.dbf
    datafile 27 switched to datafile copy
    input datafile copy recid=26 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_ind06.dbf
    datafile 28 switched to datafile copy
    input datafile copy recid=27 stamp=650311810 filename=/u01/lun0/hanfa2/undo05.dbf
    datafile 29 switched to datafile copy
    input datafile copy recid=28 stamp=650311810 filename=/u01/lun0/hanfa2/undo04.dbf
    datafile 30 switched to datafile copy
    input datafile copy recid=29 stamp=650311810 filename=/u01/lun0/hanfa2/undo03.dbf
    datafile 31 switched to datafile copy
    input datafile copy recid=30 stamp=650311810 filename=/u01/lun0/hanfa2/undo02.dbf
    datafile 32 switched to datafile copy
    input datafile copy recid=31 stamp=650311810 filename=/u01/lun0/hanfa2/undo01.dbf
    datafile 33 switched to datafile copy
    input datafile copy recid=32 stamp=650311810 filename=/u01/lun0/hanfa2/a_ts_mview03.dbf
    datafile 34 switched to datafile copy
    input datafile copy recid=33 stamp=650311810 filename=/u01/lun0/hanfa2/a_ts_mview02.dbf
    datafile 35 switched to datafile copy
    input datafile copy recid=34 stamp=650311810 filename=/u01/lun0/hanfa2/a_ts_mview01.dbf
    datafile 36 switched to datafile copy
    input datafile copy recid=35 stamp=650311810 filename=/u01/lun0/hanfa2/foglight_ts.dbf
    datafile 37 switched to datafile copy
    input datafile copy recid=36 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_data05.dbf
    datafile 38 switched to datafile copy
    input datafile copy recid=37 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_data06.dbf
    datafile 39 switched to datafile copy
    input datafile copy recid=38 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_data07.dbf
    datafile 40 switched to datafile copy
    input datafile copy recid=39 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_ind07.dbf
    datafile 41 switched to datafile copy
    input datafile copy recid=40 stamp=650311810 filename=/u01/lun0/hanfa2/a_txn_ind08.dbf
    datafile 42 switched to datafile copy
    input datafile copy recid=41 stamp=650311810 filename=/u01/lun0/hanfa2/dwh01.dbf
    datafile 43 switched to datafile copy
    input datafile copy recid=42 stamp=650311810 filename=/u01/lun0/hanfa2/dwh02.dbf
    datafile 288 switched to datafile copy
    input datafile copy recid=43 stamp=650311810 filename=/u01/lun0/hanfa2/system10.dbf
    datafile 295 switched to datafile copy
    input datafile copy recid=44 stamp=650311810 filename=/u01/lun0/hanfa2/system06.dbf
    datafile 314 switched to datafile copy
    input datafile copy recid=45 stamp=650311810 filename=/u01/lun0/hanfa2/portal01.dbf
    datafile 351 switched to datafile copy
    input datafile copy recid=46 stamp=650311810 filename=/u01/lun0/hanfa2/system07.dbf
    datafile 352 switched to datafile copy
    input datafile copy recid=47 stamp=650311811 filename=/u01/lun0/hanfa2/system09.dbf
    datafile 353 switched to datafile copy
    input datafile copy recid=48 stamp=650311811 filename=/u01/lun0/hanfa2/system08.dbf
    datafile 354 switched to datafile copy
    input datafile copy recid=49 stamp=650311811 filename=/u01/lun0/hanfa2/system11.dbf
    datafile 392 switched to datafile copy
    input datafile copy recid=50 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_data01.dbf
    datafile 393 switched to datafile copy
    input datafile copy recid=51 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_ind01.dbf
    datafile 394 switched to datafile copy
    input datafile copy recid=52 stamp=650311811 filename=/u01/lun0/hanfa2/a_ref01.dbf
    datafile 395 switched to datafile copy
    input datafile copy recid=53 stamp=650311811 filename=/u01/lun0/hanfa2/a_int01.dbf
    datafile 396 switched to datafile copy
    input datafile copy recid=54 stamp=650311811 filename=/u01/lun0/hanfa2/a_summ01.dbf
    datafile 397 switched to datafile copy
    input datafile copy recid=55 stamp=650311811 filename=/u01/lun0/hanfa2/a_nolog01.dbf
    datafile 398 switched to datafile copy
    input datafile copy recid=56 stamp=650311811 filename=/u01/lun0/hanfa2/a_archive01.dbf
    datafile 399 switched to datafile copy
    input datafile copy recid=57 stamp=650311811 filename=/u01/lun0/hanfa2/a_queue01.dbf
    datafile 400 switched to datafile copy
    input datafile copy recid=58 stamp=650311811 filename=/u01/lun0/hanfa2/a_media01.dbf
    datafile 401 switched to datafile copy
    input datafile copy recid=59 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_data02.dbf
    datafile 402 switched to datafile copy
    input datafile copy recid=60 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_data03.dbf
    datafile 403 switched to datafile copy
    input datafile copy recid=61 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_ind02.dbf
    datafile 404 switched to datafile copy
    input datafile copy recid=62 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_ind03.dbf
    datafile 405 switched to datafile copy
    input datafile copy recid=63 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_ind04.dbf
    datafile 406 switched to datafile copy
    input datafile copy recid=64 stamp=650311811 filename=/u01/lun0/hanfa2/a_txn_ind05.dbf
    datafile 407 switched to datafile copy
    input datafile copy recid=65 stamp=650311811 filename=/u01/lun0/hanfa2/a_ref02.dbf
    contents of Memory Script:
       set until time  "to_date( '25.03.2008 08:00:00','dd.mm.yyyy hh24:mi:ss')";
       recover
       clone database
        delete archivelog
    executing Memory Script
    executing command: SET until clause
    Starting recover at 25-MAR-08
    starting media recovery
    channel aux1: starting archive log restore to default destination
    channel aux1: restoring archive log
    archive log thread=1 sequence=86375
    channel aux1: restoring archive log
    archive log thread=1 sequence=86376
    channel aux1: restoring archive log
    archive log thread=1 sequence=86377
    channel aux1: restoring archive log
    archive log thread=1 sequence=86378
    channel aux1: restoring archive log
    archive log thread=1 sequence=86379
    channel aux1: restoring archive log
    archive log thread=1 sequence=86380
    channel aux1: restoring archive log
    archive log thread=1 sequence=86381
    channel aux1: restoring archive log
    archive log thread=1 sequence=86382
    channel aux1: restoring archive log
    archive log thread=1 sequence=86383
    channel aux1: restoring archive log
    archive log thread=1 sequence=86384
    channel aux1: restoring archive log
    archive log thread=1 sequence=86385
    channel aux1: restoring archive log
    archive log thread=1 sequence=86386
    channel aux1: restoring archive log
    archive log thread=1 sequence=86387
    channel aux1: restoring archive log
    archive log thread=1 sequence=86388
    channel aux1: restoring archive log
    archive log thread=1 sequence=86389
    channel aux1: restoring archive log
    archive log thread=1 sequence=86390
    channel aux1: restoring archive log
    archive log thread=1 sequence=86391
    channel aux1: restoring archive log
    archive log thread=1 sequence=86392
    channel aux1: restoring archive log
    archive log thread=1 sequence=86393
    channel aux1: restoring archive log
    archive log thread=1 sequence=86394
    channel aux1: restoring archive log
    archive log thread=1 sequence=86395
    channel aux1: restoring archive log
    archive log thread=1 sequence=86396
    channel aux1: restoring archive log
    archive log thread=1 sequence=86397
    channel aux1: restoring archive log
    archive log thread=1 sequence=86398
    channel aux1: reading from backup piece /arch1_PROD_tdjc4jd7/
    channel aux1: restored backup piece 1
    piece handle=/arch1_PROD_tdjc4jd7/ tag=TAG20080325T060110
    channel aux1: restore complete, elapsed time: 00:07:36
    channel aux1: starting archive log restore to default destination
    channel aux1: restoring archive log
    archive log thread=1 sequence=86356
    channel aux1: restoring archive log
    archive log thread=1 sequence=86357
    channel aux1: restoring archive log
    archive log thread=1 sequence=86358
    channel aux1: restoring archive log
    archive log thread=1 sequence=86359
    channel aux1: restoring archive log
    archive log thread=1 sequence=86360
    channel aux1: restoring archive log
    archive log thread=1 sequence=86361
    channel aux1: restoring archive log
    archive log thread=1 sequence=86362
    channel aux1: restoring archive log
    archive log thread=1 sequence=86363
    channel aux1: restoring archive log
    archive log thread=1 sequence=86364
    channel aux1: restoring archive log
    archive log thread=1 sequence=86365
    channel aux1: restoring archive log
    archive log thread=1 sequence=86366
    channel aux1: restoring archive log
    archive log thread=1 sequence=86367
    channel aux1: restoring archive log
    archive log thread=1 sequence=86368
    channel aux1: restoring archive log
    archive log thread=1 sequence=86369
    channel aux1: restoring archive log
    archive log thread=1 sequence=86370
    channel aux1: restoring archive log
    archive log thread=1 sequence=86371
    channel aux1: restoring archive log
    archive log thread=1 sequence=86372
    channel aux1: restoring archive log
    archive log thread=1 sequence=86373
    channel aux1: restoring archive log
    archive log thread=1 sequence=86374
    channel aux1: reading from backup piece /arch1_PROD_tcjc4jd7/
    ORA-19870: error reading backup piece /arch1_PROD_tcjc4jd7/
    ORA-19510: failed to set size of 182123 blocks for file "/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86358.log" (blocksize=512)
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 9
    channel aux1: starting archive log restore to default destination
    channel aux1: restoring archive log
    archive log thread=1 sequence=86399
    channel aux1: restoring archive log
    archive log thread=1 sequence=86400
    channel aux1: restoring archive log
    archive log thread=1 sequence=86401
    channel aux1: restoring archive log
    archive log thread=1 sequence=86402
    channel aux1: restoring archive log
    archive log thread=1 sequence=86403
    channel aux1: restoring archive log
    archive log thread=1 sequence=86404
    channel aux1: reading from backup piece /arch1_PROD_tgjc4qf4/
    channel aux2: starting archive log restore to default destination
    channel aux2: restoring archive log
    archive log thread=1 sequence=86356
    channel aux2: restoring archive log
    archive log thread=1 sequence=86357
    channel aux2: restoring archive log
    archive log thread=1 sequence=86358
    channel aux2: restoring archive log
    archive log thread=1 sequence=86359
    channel aux2: restoring archive log
    archive log thread=1 sequence=86360
    channel aux2: restoring archive log
    archive log thread=1 sequence=86361
    channel aux2: restoring archive log
    archive log thread=1 sequence=86363
    channel aux2: restoring archive log
    archive log thread=1 sequence=86364
    channel aux2: restoring archive log
    archive log thread=1 sequence=86365
    channel aux2: restoring archive log
    archive log thread=1 sequence=86366
    channel aux2: restoring archive log
    archive log thread=1 sequence=86367
    channel aux2: restoring archive log
    archive log thread=1 sequence=86368
    channel aux2: restoring archive log
    archive log thread=1 sequence=86369
    channel aux2: restoring archive log
    archive log thread=1 sequence=86370
    channel aux2: restoring archive log
    archive log thread=1 sequence=86371
    channel aux2: restoring archive log
    archive log thread=1 sequence=86372
    channel aux2: restoring archive log
    archive log thread=1 sequence=86373
    channel aux2: restoring archive log
    archive log thread=1 sequence=86374
    channel aux2: reading from backup piece /arch1_PROD_t9jc4iki/
    channel aux1: restored backup piece 1
    piece handle=/arch1_PROD_tgjc4qf4/ tag=TAG20080325T080139
    channel aux1: restore complete, elapsed time: 00:01:56
    channel aux1: starting archive log restore to default destination
    channel aux1: restoring archive log
    archive log thread=1 sequence=86405
    channel aux1: restoring archive log
    archive log thread=1 sequence=86406
    channel aux1: restoring archive log
    archive log thread=1 sequence=86407
    channel aux1: restoring archive log
    archive log thread=1 sequence=86408
    channel aux1: reading from backup piece /arch1_PROD_tfjc4qf4/
    channel aux1: restored backup piece 1
    piece handle=/arch1_PROD_tfjc4qf4/ tag=TAG20080325T080139
    channel aux1: restore complete, elapsed time: 00:02:05
    channel aux1: starting archive log restore to default destination
    channel aux1: restoring archive log
    archive log thread=1 sequence=86409
    channel aux1: reading from backup piece /arch1_PROD_tkjc51fm/
    channel aux1: restored backup piece 1
    piece handle=/arch1_PROD_tkjc51fm/ tag=TAG20080325T100124
    channel aux1: restore complete, elapsed time: 00:02:15
    channel aux2: restored backup piece 1
    piece handle=/arch1_PROD_t9jc4iki/ tag=TAG20080325T054759
    channel aux2: restore complete, elapsed time: 00:12:10
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86356.log thread=1 sequence=86356
    channel clone_default: deleting archive log(s)
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86356.log recid=44 stamp=650313112
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86357.log thread=1 sequence=86357
    channel clone_default: deleting archive log(s)
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86357.log recid=45 stamp=650313112
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86358.log thread=1 sequence=86358
    channel clone_default: deleting archive log(s)
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86358.log recid=37 stamp=650313085
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86359.log thread=1 sequence=86359
    channel clone_default: deleting archive log(s)
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86359.log recid=38 stamp=650313085
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86360.log thread=1 sequence=86360
    channel clone_default: deleting archive log(s)
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86360.log recid=52 stamp=650313135
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86361.log thread=1 sequence=86361
    channel clone_default: deleting archive log(s)
    archive log filename=/u01/lun0/hanfa2/arch/prodarch_23b63f7_1_625608313_86361.log recid=40 stamp=650313085
    unable to find archive log
    archive log thread=1 sequence=86362
    Oracle Error:
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/u01/lun0/hanfa2/system01.dbf'
    released channel: t1
    released channel: aux1
    released channel: aux2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 03/25/2008 18:32:26
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06055: could not find log sequence 86362 thread 1
    Recovery Manager complete.

    Yes :-).
    Also when i run recover database using backup controlfile;and try to apply redo logs i am getting:ORA-00309: log belongs to wrong database Do you have any advice on this ?

  • Property or method to find missing fonts...

    Hi Everyone,
    Is there any direct property or method to find missing fonts in EPS doucments in Illustrator CS4 like we do in InDesign. I have tried this by doing comparison of document fonts and application fonts to get missing fonts but it won't work.
    Any help would be appreciatable. Thanks in advance.
    Regards
    Thiyagu

    Have you tried a search of this forum… Im sure I posted a work around to this… The simple answer is NO not in the Illustrator DOM you can however read the file as text and the stuff you want is in the Illustrator file comments…

  • Is there not an easier way to find missing songs?

    Is there a smarter way to find missing songs and albums besides having to go through each one individually? Some kind of batch process would be nice...
    How do you guys efficiently find missing songs or albums?

    don't you just love the way Apple answers your questions in this forum?

  • Find the sequence name for a particular table

    Hi,
    Please give query to find the sequence name for a particular table in oracle.
    Thanks

    I mean getting List of Sequence names defined in DB.
    I got the answers
    select *from user_sequences                                                                                                                                                                                                               

  • Finding missing photos when drive letter has changed

    I have over 30,000 missing photos because LR only recognizes drive letters not names.  All my drives have a master "Image" directory with folders and subfolders.  Going to the LR online directory with name change and right clicking images and finding folder location does not work.  LR does not recognize folders or subfolders in the drive with a name change.  Usually none of the folder names are high lighted. By going to the "Missing Photographs" in the catalog menu and searching by file name I can find individual files but with over 30k missing files, this approach is not practical. I have an HP computer with Windows 7 and LR 5.7.  How do I find the photos?

    I think the most straightforward way to sort this out is:
    1. Plug in all of your external drives.  From the screen shots, it looks like you have at most 5 external drives of interest, 2 that are currently online and 3 that are disconnected.  (I'm not counting the one external drive letter that has just one photo on it.)  How many external drives do you actually have?
    2. If you don't have enough USB ports, order a $12 USB hub from Amazon.
    3. Make sure the entire folder hierarchy for each drive is showing in the Folders pane as described here. When you're done, each drive in the Folders pane should have a top-level folder labeled with a drive letter (as with your F: drive in the screenshot above).
    4. Expand the entire folder hierarchy on each drive in the Folders pane by clicking the arrows to the left of the folder.
    5. For each drive, find one or more folders in its hierarchy that are closest to the top that have a "?" on them.  It may be the root folder labeled with the drive letter (e.g. "F:"), or it may be folders below the root folder.   For each such folder with a "?", right-click it and select Find Missing Folder.  That folder should be somewhere on one of the drives.  Use Windows File Explorer to help find where it is.
    6. When you're done with step 5, you should have located all missing folders and told LR where they are currently located.  But you may have missed some.   Do Library > Find All Missing Photos.
    7. Pick a photo from step 6.  Right-click it and do Go To Folder In Library.  If the folder in the Folder pane is marked with a "?", right-click it and do Find Missing Folder.   Otherwise, click the "!" on the photo and then click Locate.  Use Windows File Explorer to help find the missing photo by filename, if necessary.  Repeat until there are no more missing photos.
    8. Going forward, try to keep all your external drives connected.  To minimize drive-letter confusion in the future, rename the drive letters of the existing external drives to start from the end of the alphabet, changing each drive letter as described here.   When you change a drive letter, you'll need to re-locate its root folder as described in steps 3-5.   (Windows tends to use drive letters from C onward.)

Maybe you are looking for

  • Automati-payment

    in automatic payment programme we can use the house banks:- as like this:- SBI                   ICICI                   HSBC                   CITI BANK  MY REQUIREMENT IS THE I HAVE ONLY PAYMENT FOR THE HSBC is it possible or not if possible how (g

  • Grouping all styles of a typeface in one flyout

    Hello. Some of my type families are not displaying all the font styles in a single flyout menu in the application software I use. They are all separate items in the menu, which is a detriment to productivity because of the need to constantly scroll t

  • Galaxy s4 usb copy mp3 to SD Card

    Since the last Android update, I have not been able to copy MP3 files from my PC to the SD card of my phone. It appears to copy, but the music player either won't play it or it plays garbled.  I have done this without the slightest problem in the pas

  • How can I Build Multiple Landing Pages

    I am building a website that needs to have around 100 or so different landing pages that will be for different customers. Each page will have the same list of features that it will include, like store hours, an about section, google map, etc. How can

  • Listen folder

    hello, i am new in j2ee deloping... i want read a folder and show all files in jsp page. how could i do to read files? i dont wanna use absolute path ex: i want read the foldet pics under /WEB-INF/images/pics thanxs