Recovering table from Flashback getting error

Recovering table from Flashback getting error what is the reson
1* FLASHBACK TABLE "BIN$e7TIAEKgSYO2WJ0L+hNuTA==$0" TO BEFORE DROP
SQL> /
FLASHBACK TABLE "BIN$e7TIAEKgSYO2WJ0L+hNuTA==$0" TO BEFORE DROP
ERROR at line 1:
ORA-38312: original name is used by an existing object

This droped object original name is now taken by some other object in database so u can give this cmd like
FLASHBACK TABLE TEST TO BEFORE DROP RENAME TO TEST2;
it recover the table test and give the name as test2 because test table is already exist and that is created while this table is in recyclebin.

Similar Messages

  • How to How to download from without getting error code 1009?

    How to How to download from without getting error code 1009?

    I get the same error message on my Mac Book Air 13" Mac OS X and iphone 4 accessing internet via 3.5G modem and Edge / GPRS esprectively.  I'm in Sudan now, wasn't getting this message in Ethiopia.  Using Itunes store location for UK.  Could it be an IP blocking issue and if so any ideas of a work around?
    Thanks

  • Can not recover table from rman backup

    For testing I want to recover deleted table from rman backup.
    I have make vm of oracle 11g.  the following step i have applied but could not recover the table.
    rman> backup database ;
    On sqlplus create login as scott/tiger
    create table scott.emp1(col1 varchar2(10));
    insert into emp1(col1) value('Yasir ') ;
    commit ;
    select * from emp1 ;
    it shows me one row successfully.
    Now i have login the  sys as sysdba
    sqlplus> alter system switch logfile ;
    after this i have drop the table .
    Now to recover the table i have restored database on same vm.
    rman>restore database ;
    rman> recover database ;
    rman> alter database open ;
    on sqlplus i have issued
    sqlplus> select * from scott.emp1 ;
    table or view does not exist.
    any help how to recover the deleted table from rman backup

    Hi,
    Check this test case
    SQL> create table TEST2 as select * from emp;
    Table created.
    SQL> select count(*) from TEST2;
      COUNT(*)
            15
    SQL> select TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS') from dual;
    TO_CHAR(SYSDATE,'DD-
    10-SEP-2013 10:57:05
    SQL> alter system switch logfile;
    System altered.
    SQL> drop table TEST2 purge;
    Table dropped.
    SQL> shu immediate
    [oracle@vnode MYSHELL]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Tue Sep 10 10:58:39 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: DDTEST (DBID=1667776968, not open)
    RMAN> run{
    set until time "to_date('2013 Sep 10 10:57','yyyy mon dd hh24:mi')";
    restore database;
    recover database;
    alter database open resetlogs;
    }2> 3> 4> 5> 6>
    media recovery complete, elapsed time: 00:00:02
    Finished recover at 10-SEP-13
    database opened
    RMAN> exit
    SQL> set lin 200 pages 100
    SQL> select count(*) from test2;
      COUNT(*)
            15
    HTH

  • Create table from view giving error

    i am trying to creating a table from view it is giving following error. can you please help
    create table jd as
    select * from A.ab_v where 1=2;
    error
    ORA-01723
    zero columns not allowed

    As others already pointed out you have NULL as view column(s). You need to either modify view and use CAST(NULL AS desired-type). For example:
    SQL> create or replace
      2    view v1
      3      as
      4        select  null new_date
      5          from dual
      6  /
    View created.
    SQL> create table tbl
      2    as
      3      select  *
      4        from  v1
      5  /
        select  *
    ERROR at line 3:
    ORA-01723: zero-length columns are not allowed
    SQL> create or replace
      2    view v1
      3      as
      4        select  cast(null as date) new_date
      5          from dual
      6  /
    View created.
    SQL> create table tbl
      2    as
      3      select  *
      4        from  v1
      5  /
    Table created.
    SQL> drop table tbl
      2  /
    Table dropped.
    SQL> create or replace
      2    view v1
      3      as
      4        select  cast(null as number) new_number
      5          from  dual
      6  /
    View created.
    SQL> create table tbl
      2    as
      3      select  *
      4        from  v1
      5  /
    Table created.
    SQL>  Or list individual view columns with NULL CASTing in CTAS:
    SQL> create or replace
      2    view v1
      3      as
      4        select  null new_date
      5          from dual
      6  /
    View created.
    SQL> create table tbl
      2     as
      3       select  cast(new_date as date) new_date
      4         from  v1
      5  /
    Table created.
    SQL> desc tbl
    Name                                      Null?    Type
    NEW_DATE                                           DATE
    SQL> set null NULL
    SQL> select  *
      2    from  tbl
      3  /
    NEW_DATE
    NULL
    SQL> SY.

  • Download from appstore get errors, and stops. but my account already charged $19.99 , how to get my money back?

    i tried to buy keynote from the appstore, and the download get errors, and stops. but my account already charged $19.99 , how to get my money back?

    Apple's policy states that, "all sales are final" > iTUNES STORE - MAC APP STORE - TERMS AND CONDITIONS
    Keynote's minimum requirements are v10.7.4 Lion in case you are running a prior Mac OS X. That information is available under Information right side of the Keynote window at the App Store.
    and the download get errors, and stops
    Try turning off the Firewall in System Preferences > Security (or Security & Privacy) > Firewall
    Disable anti virus software.
    Then open the App Store. From the App Store menu bar top of your screen click Store > Check for Unfinished Downloads

  • Sys tables from flashback data archive?

    Hi,
    I am prototyping flashback data archive and I have been following some tutorials.
    When I query
    user_flashback_archive_tables
    I can see the table for which I have configured FBDA. I can see also the name of the History table, like SYS_FBA_HIST_xxxxx (xxxxxx being the object_id of the table).
    But I just cannot find the table in USER_TABLES or USER_TAB_PARTITIONS.
    The history seems to be getting stored... The sql-developer display the history in the "flashback" tab. But why aren't the SYS_FBA_HIST_xxxx tables getting created?
    (I am using 11gR2 running on EL5 Linux)

    The SYS_FBA_xxx belongs to SYS user. To be able to see them you must query DBA_TABLES and have SELECT privilege on DBA_TABLES or role SELECT_CATALOG_ROLE.You can also just try to connect as SYS:
    SQL> select table_name from dba_tables where table_name like 'SYS_FBA%';
    TABLE_NAME
    SYS_FBA_HIST_73563
    SYS_FBA_TCRV_73563
    SYS_FBA_DDL_COLMAP_73563
    SYS_FBA_DL
    SYS_FBA_USERS
    SYS_FBA_PARTITIONS
    SYS_FBA_TRACKEDTABLES
    SYS_FBA_BARRIERSCN
    SYS_FBA_TSFA
    SYS_FBA_FA
    10 rows selected.Edited by: P. Forstmann on 7 oct. 2010 20:52

  • R12 Upgrade Report from 11i Getting Error

    Hi everyone,
    We are currently working an R12 upgrade project from 11.5.10 to 12.1.3. I am currently converting a report from 11i to R12 but it is erroring out when I run it in R12. Below is the log. Any help would be greatly appreciated. Thanks.
    Payables: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXHH_APXNACHA_CHASE module: XXHH: NACHA Payment Format Chase (HHG)
    Current system time is 06-DEC-2011 15:52:03
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_PAYMENT_BATCH='JRG120111b'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    Enter Password:
    MSG-00001: Org ID: 141
    MSG-00001: After SRWINIT
    MSG-00099: Inside Get_Company_Name
    MSG-00099: Payment Batch = JRG120111b
    MSG-00099: No reporting entity setup found.
    REP-1419: 'beforereport': PL/SQL program aborted.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1419: MSG-00001: Org ID: 141
    MSG-00001: After SRWINIT
    MSG-00099: Inside Get_Company_Name
    MSG-00099: Payment Batch = JRG120111b
    MSG-00099: No reporting entity setup found.
    REP-1419: 'beforereport': PL/SQL program aborted.
    Report Builder: Release 10.1.2.3.0 - Production on Tue Dec 6 15:52:04 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 3660174.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Output file size:
    0
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 06-DEC-2011 15:52:06
    ---------------------------------------------------------------------------

    It looks as though its failing in your beforereport trigger.
    MSG-00099: Inside Get_Company_Name
    MSG-00099: Payment Batch = JRG120111b
    MSG-00099: No reporting entity setup found.
    REP-1419: 'beforereport': PL/SQL program aborted.I dont believe payment batches are used anymore as they need to be done via Payment profiles and therefore you will need to use Payment Instruction ids instead. Also the setup at R12 is Mosaic
    try including this. as the first statement in the Beforereport trigger. All the banks tables payment tables has changed so unless you have changed these to you will need to adjust these correctly to the R12 tables.
    BEGIN
         MO_GLOBAL.INIT ('SQLAP');
    MO_GLOBAL.SET_POLICY_CONTEXT('S',FND_PROFILE.VALUE('ORG_ID'));
    END;

  • Need To use SQL Code to Appt Dates 2 Days from current Getting Error

    I am trying to pull data that shows appt information on a patient:
    FName,LName, PhoneNumber, ApptDate, ApptTime, and Status that equals Active. I need to pull this info everyday. How can I set this up in a stored procedure to pull all this information automatically on a daily basis where it pulls by Appt Date that is 2 days greater than the current date?
    SELECT
         Patient.First,
         Patient.Last,
         Patient.HomeArea,
         Patient.HomePhone,
         Patient.Status,
         ApptHis.Date,
         ApptHis.Time
    From
         Patient, ApptHis
    Where
         Status= 'Active' and
         ApptHis.ApptHisDate >= dateadd(day,datediff(day,0,getDate())+2,0)     and
         ApptHis.ApptHisDate < dateadd(day,datediff(day,0,getDate())+3,0)
    Please Help I am getting an ORA-00900 Error.
    Thanks!

    In your select statement you specify the column ApptHis.Time but it looks like in the database the actual column name is Time1.
    Also, Date is a reserve word in Oracle. It's a really bad idea to create columns using reserve words. You may have to use double quotes (i.e. "Date") to specify the column name Date in your selects.
    Try this:
    SELECT
    Patient.First,
    Patient.Last,
    Patient.HomeArea,
    Patient.HomePhone,
    Patient.Status,
    ApptHis.Date,
    ApptHis.Time1
    From
    Patient, ApptHis
    Where
    Status= 'Active' and
    ApptHis.ApptHisDate between trunc(sysdate+2) and trunc(sysdate+3)-1/1440;
    NumbNutz

  • Generating the flatfiles from server getting error

    Hi,
    source file type is   .csv. I am using executeprocess task to download the source file..its thrown error by the executeprocesstassk and also  through command prompt. all arguments are sitting properly. I checked each and every arguments.
    with the same executables i can downloaded  few of the flat files.
    But for this only I am facing an issue.actually How i am getting an issue is.
    for eg flat file having 5 headers. like procid,procname,proccast,procsale,updateddate.
    while running the task/from cmd prompt it 'll work fine for procid,procname,proccast. i mean to say getting data. but not getting rest of the  2 fields.
    output: procid,procname,proccast,procsale,updateddate      only hearders without data.
    for some times it's throws an error below  if i'll take few of the fields like procid,procname,proccast,procsale.
    Error: I cant seem to download the file, please check the filename and URL. Web
    Exception Error:
    System.Net.WebException: The remote server returned an error: (500) Internal Ser
    ver Error.
       at System.Net.WebClient.File(Uri address, String fileName)
       at System.Net.WebClient.File(String address, String fileName)
       at Script.Program.Main(String[] args)
    but when i checked individually all fields are having data & excution is success.
    Hope for the quick solution.
    Thanks

    source file type is   .csv. I am using executeprocess task to download the source file..yes its thrown by the executeprocesstassk and through command prompt. all arguments are sitting properly. I checked each and every arguments.
    with the same executables i can downloaded  few of the flat files.
    But for this only I am facing an issue.actually How i am getting an issue is.
    for eg flat file having 5 headers. like procid,procname,proccast,procsale,updateddate.
    while running the task/from cmd prompt it 'll work fine for procid,procname,proccast. i mean to say getting data. but not getting rest of the  2 fields.
    output: procid,procname,proccast,procsale,updateddate      only hearders without data.
    for some times it's throws an error below  if i'll take few of the fields like procid,procname,proccast,procsale.
    Error: I cant seem to download the file, please check the filename and URL. Web
    Exception Error:
    System.Net.WebException: The remote server returned an error: (500) Internal Ser
    ver Error.
       at System.Net.WebClient.File(Uri address, String fileName)
       at System.Net.WebClient.File(String address, String fileName)
       at Script.Program.Main(String[] args)
    but when i checked individually all fields are having data & excution is success.
    Hope for the quick solution.
    Thanks

  • Unplugging Ipod from computer getting error message....help!

    I just got my nano I hooked it all up and downloaded music to it. I'm now ready to remove it from the cable and when I click on the icon to disconnect I get an error message that says 'the ipod mini cannot be disconnected because it contains files that are in use from another application' I don't think I have anything else running. Any suggestions?

    Hi C.A.,
    To post a new topic, start out by going to this forum:
    Connecting the iPod nano (Second Generation) to Windows
    Then, near the upper-left area of that forum, you will see this icon and link (the link is below):
    Post New Topic
    You may be prompted to log in, then, you will be able to type your new topic in the page that you will be linked to.
    -Kylene

  • Call ggsci using batch file from windows- get error

    i create a script to use ggsci, start manager, extract and replicat.
    i have success doing this in my linux.
    here is one of my script : start_ext1.sh
    cd /u01/app/oracle/ggs
    ./ggsci <<EOF
    start manager
    start ext_s
    exit
    EOF
    clear
    i have an error when i do this using batch file from windows.
    here is the batch file :
    @echo off
    cd C:\putty
    plink.exe -ssh -2 -P 22 [email protected] -pw oracle "./start_ext1.sh"
    every time i try to enter ggsci when i run that batch file, i get this error :
    ./ggsci: error while loading shared libraries: libnnz10.so: cannot open shared object file: No such file or directory
    i didn't get this error when i run the script in linux.
    is there anybody can help me?
    thanks a lot!

    problem solved!
    add : . ./.bash_profile before enter ggsci.
    it's worked! :)

  • Bought movie from iTumes get error when try to play it on iPhone

    Yesterday I bought a movie from iTunes - just to see how movies looked on my iPhone. Downloaded fine, transfered to iPhone through iTunes. Movies - with cover image appear within the video list. When I try to play the movie I get a "This movie could not be played". Any ideas?

    downloaded latest software - seems to have done the trick. sorry for being a daftie

  • Listener actually up as seen from backend but from console gets error

    Hi
    My SCAN listener is shown running from backend but is shown down from console.
    response for listener shows below error.
    Any suggestions/hints
    Thanks
    LSNRCTL for Linux: Version 11.2.0.2.0 - Production on 06-JUNE-2011 11:44:54 Copyright (c) 1991, 2010, Oracle. All rights reserved. Welcome to LSNRCTL, type "help" for information. LSNRCTL> Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1))) TNS-12541: TNS:no listener TNS-12560: TNS:protocol adapter error TNS-00511: No listener Linux Error: 2: No such file or directory LSNRCTL>

    Thank you for your help.
    I am using a RAC database and this is the status
    srvctl status scan_listenerSCAN Listener LISTENER_SCAN1 is enabled
    SCAN listener LISTENER_SCAN1 is running on node oradb123
    SCAN Listener LISTENER_SCAN2 is enabled
    SCAN listener LISTENER_SCAN2 is running on node oradb124
    SCAN Listener LISTENER_SCAN3 is enabled
    SCAN listener LISTENER_SCAN3 is running on node oradb124
    srvctl config scan_listenerSCAN Listener LISTENER_SCAN1 exists. Port: TCP:1730
    SCAN Listener LISTENER_SCAN2 exists. Port: TCP:1730
    SCAN Listener LISTENER_SCAN3 exists. Port: TCP:1730
    [ oradb469:/home/oracle ]
    srvctl config scanSCAN name: oemcrsp-xyz.net, Network:
    1/10.180.5.0/255.255.255.0/eth0
    SCAN VIP name: scan1, IP: /oemcrsp-xyz.net/10.180.5.186
    SCAN VIP name: scan2, IP: /oemcrsp-xyz.net/10.180.5.187
    SCAN VIP name: scan3, IP: /oemcrsp-xyz.net/10.180.5.185

  • Download movie from itunes- get error message -42110; unable to play

    I downloaded a rental movie from iTunes, but when I tried to play it, it would not play, and said there was an error -42110.
    Any suggestions?

    Try this http://support.apple.com/kb/TS3297

  • I can't send to Flickr direct from IPhoto get error

    Help with sending to Flickr from iphoto

    As you've already been told MMe has been defunct since last June.  This website by Roger Wilmut describes several alternative photo sharing sites that you can use to replace the MMe Galleries: Missing in iCloud page 4.
    Another option is to obtain your own website hosting account and use iWeb's Photo page layout or Album layout to create your own personal website and photo galleries.  Examples of the two are in these demo pages: Using an iWeb Album Page as an Alternative to MobileMe Galleries and Using an iWeb Photo Page as an Alternate to a MobileMe Gallery.
    This may be of help to you in getting a hosting service: Life After MobileMe.
    OT

Maybe you are looking for