Table not found after complete tablespace recovery

Hello Everyone, Table not found even after tablespace restored and recovered. Please loot at this if you got a minute.
SQL> conn reddy/reddy
Connected.
SQL> select table_name from user_tables where tablespace_name='REDDY';
TABLE_NAME
RECORDS
EMP
SQL> select * from emp;
ENAME E_NUM ESAL E_ID
jim 1001 40000 25
sam 1002 30000 27
kim 1003 35000 30
phil 1005 25000 37
sam 1006 32000 40
james 1009 43000 45
6 rows selected.
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
[oracle@RHELSRV ~]$ rman
Recovery Manager: Release 10.2.0.1.0 - Production on Wed Jul 4 21:05:37 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
RMAN> connect target/
connected to target database: ORCL (DBID=1314955841)
RMAN> backup tablespace reddy;
Starting backup at 04-JUL-12
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=115 devtype=DISK
channel ORA_DISK_1: starting full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
input datafile fno=00008 name=/u01/app/oracle/oradata/orcl/reddy01.dbf
channel ORA_DISK_1: starting piece 1 at 04-JUL-12
channel ORA_DISK_1: finished piece 1 at 04-JUL-12
piece handle=/u01/app/oracle/flash_recovery_area/ORCL/backupset/2012_07_04/o1_mf_nnndf_TAG20120704T210605_7z8rq6pb_.bkp tag=TAG20120704T210605 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:07
Finished backup at 04-JUL-12
Starting Control File and SPFILE Autobackup at 04-JUL-12
piece handle=/u01/orabackup/c-1314955841-20120704-01 comment=NONE
Finished Control File and SPFILE Autobackup at 04-JUL-12
RMAN> exit
Recovery Manager complete.
[oracle@RHELSRV ~]$ expdp dumpfile=emp.dmp logfile=emp.log directory=dpump tables=emp
Export: Release 10.2.0.1.0 - Production on Wednesday, 04 July, 2012 21:07:21
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Username: reddy
Password:
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Starting "REDDY"."SYS_EXPORT_TABLE_01": reddy/******** dumpfile=emp.dmp logfile=emp.log directory=dpump tables=emp
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 64 KB
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
. . exported "REDDY"."EMP" 6.070 KB 6 rows
Master table "REDDY"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
Dump file set for REDDY.SYS_EXPORT_TABLE_01 is:
/u01/orabackup/emp.dmp
Job "REDDY"."SYS_EXPORT_TABLE_01" successfully completed at 21:08:07
[oracle@RHELSRV ~]$ sqlplus
SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jul 4 21:08:21 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Enter user-name: reddy
Enter password:
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> drop table emp;
Table dropped.
SQL> select table_name from user_tables where tablespace_name='REDDY';
TABLE_NAME
RECORDS
SQL> conn /as sysdba
Connected.
SQL> alter tablespace reddy offline;
Tablespace altered.
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
[oracle@RHELSRV ~]$ rman
Recovery Manager: Release 10.2.0.1.0 - Production on Wed Jul 4 21:09:39 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
RMAN> restore tablespace reddy;
Starting restore at 04-JUL-12
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 07/04/2012 21:09:56
RMAN-12010: automatic channel allocation initialization failed
RMAN-06171: not connected to target database
RMAN> connect target/
connected to target database: ORCL (DBID=1314955841)
RMAN> restore tablespace reddy;
Starting restore at 04-JUL-12
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=109 devtype=DISK
channel ORA_DISK_1: starting datafile backupset restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
restoring datafile 00008 to /u01/app/oracle/oradata/orcl/reddy01.dbf
channel ORA_DISK_1: reading from backup piece /u01/app/oracle/flash_recovery_area/ORCL/backupset/2012_07_04/o1_mf_nnndf_TAG20120704T210605_7z8rq6pb_.bkp
channel ORA_DISK_1: restored backup piece 1
piece handle=/u01/app/oracle/flash_recovery_area/ORCL/backupset/2012_07_04/o1_mf_nnndf_TAG20120704T210605_7z8rq6pb_.bkp tag=TAG20120704T210605
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 04-JUL-12
RMAN> recover tablespace reddy;
Starting recover at 04-JUL-12
using channel ORA_DISK_1
starting media recovery
media recovery complete, elapsed time: 00:00:01
Finished recover at 04-JUL-12
RMAN> exit
Recovery Manager complete.
[oracle@RHELSRV ~]$ sqlplus '/as sysdba'
SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jul 4 21:10:42 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> alter tablespace reddy online;
Tablespace altered.
SQL> conn reddy/reddy
Connected.
SQL> select table_name from user_tables where tablespace_name='REDDY';
TABLE_NAME
RECORDS
Thanks in Advance!!!!

Hi,
As you performed complete recovery you did see the table resotred. You can use TSPITR
recover tablespace reddy until time "to_date('04-JUL-2012 21:07:00','dd-mon-rrrr hh24:mi:ss')" auxiliary destination ''xxxxxx';
Read http://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmtspit.htm#BRADV009
Anand

Similar Messages

  • Error - Table not found

    Hi Guys,
    Error - TABLLE NOT FOUND
    We are working on discovery server which comes preconfigured from SAP.
    I am able to work on the standard repositories like products available on this server for syndication and importing, but when I am trying to create the new repository I am getting the error TABLE NOT FOUND. Getting this error after entering the DBMS Server, Login Details and Repository Name and Port details.
    Thanks,
    MS

    Hi colleagues
    You should check follow:
    - DBMS-user can connect to DBMS from your workstation(where you run SAP MDM Console)
    - DBMS-user has premissions(grants) according to "installation guide".
    - restart SAP MDM Server
    - update DBMS Settings
    - create new repository
    Regards
    Kanstantsin

  • Status 29: Error in ALE service : Entry in outbound table not found

    IDoc: 0000000003560240 Status 29: Error in ALE service
    Entry in outbound table not found
    No partner profile (outbound parameter) could be found using the following key:
    /0000000000/LS//YHROT_XXM_IN////
    This refers to the key fields in table EDP13:
    RCVPRN  Partner number
    RCVPRT  Partner type
    RCVPFC  Partner function
    MESTYP  Logical message
    MESTYP  Message code
    MESCOD  Message function
    TEST    Test indicator
    Procedure
    Please check the EDI partner profiles.
    But The IDOC befor this and after this is successfully run.
    And even after reprocessing also it is giving same error.
    After checking Contorl record, we found that there is no data in receipant Info in Partner Tab.
    What would be the issue.
    Please suggest. 
    Thanks & Regards,
    Monika

    Hi ,
    Thanks for your reply.
    We are using one custom message type.
    I would like to give you example of exact scenario.
    Suppose my IDOC has large amount of segments then ,
    It is dividing as
    1st IDOC : Control record ....header and data segments
    2nd IDOC : only data segment
    3rd IDOc : only data segment
    4th IDOC : data segment and Trailer.
    In this way, I am getting all my 4 IDOCs in error.
    What should be d reason?
    your help will be grateful.
    Hi Everyone,
    any update?
    Edited by: Monika.Dhumal on Feb 14, 2012 11:49 AM

  • Outbound IDOC - Entry in outbound table not found - urgent urgent urgent

    Hi ABAP Guru
    Need Serious help. I created Outbound idoc. Custom message type, basic type etc. I created partner profile as well. But when I see my idoc in WE05 I see following error.
    Entry in outbound table not found
    Diagnosis
    No partner profile (outbound parameter) could be found using the following key:
    /WEBM/LS//ZBSID////
    This refers to the key fields in table EDP13:
    RCVPRN  Partner number
    RCVPRT  Partner type
    RCVPFC  Partner function
    MESTYP  Logical message
    MESTYP  Message code
    MESCOD  Message function
    TEST    Test indicator
    Anyhelp will be greatly appreciated. urgent.

    Hi Subodh ,
    You can check whetther u have released idoc and message type after u have created them. Once u have released these idoc and message types , you can use them in your scenario or they will not will be available .
    U can refer to below link to check on various parameteres at time ALE-IDOC scenario
    (1) /people/raja.thangamani/blog/2007/07/19/troubleshooting-of-ale-process
    (2) /people/kevin.wilson2/blog/2006/11/13/ale-scenario-development-guide
    (3)http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    (4) idoc
    (5)http://help.sap.com/saphelp_erp2005vp/helpdata/en/78/2178a651ce11d189570000e829fbbd/frameset.htm--
    --This is for Message Control. See the Left Pane in this web page to get the ALE implementation for BAPI's also.
    (6)/people/kevin.wilson2/blog/2005/12/07/changing-fields-in-an-idoc-segment - Converson Rules Guidelines
    I hope this wud solve ur problem.
    Regards
    Note: Reward if useful

  • Dump : Table not found in oracle database

    Hi,
    I am doing a program regarding analysis of tables belonging to archiving objects.In my program i am calling a RFC function module . 'DB02_ORA_TABLE_INDEX_ANALYSIS . But it is giving the dump for native sql statement .
    --- Oracle block size ----------------------------------------------
      exec sql.
        select value from v$parameter where name like 'db_block_size%'
               into :block_size
      endexec.
    Dump is table not found in database.
    Could please let me know what setting i am missing...
    Thanks in advance.....
    Sudhakar

    Hi,
    the view V$PARAMETER must be accessed through  SAP/Oracle Database Monitor lets you view the active Oracle database parameters and the contents of the init.ora file.
    Alternatively, you can use transaction st04.  You need to apply SAP Note 706927 before using the database monitor.
    Hope this information is help to you.
    Regards,
    José

  • Table not found error while importing table defintion in PI 7.1?

    Hi Guys,
    I am trying to import the table structure from DB2 as an external defintion but i am getting the error table not found.
    There are no connection issues with the DB2 and CC is good. Are there any additional settings i need to perform to import the table?
    any help or suggestions would be really appreciated
    Thanks,
    Srini

    Hi Srinivas,
    I think you want to do JDBC lookup.. you must have created the JDBC receiver communication channel. As your communication channel is correct and still you are getting Table not found error.. Check following steps.
    - Check that your Communication channel is activated and working fine.
    - Check that the ID which you are using in JDBC receiver is having proper authorization to import the table definition.
      Just check with all authorization.
    I think the problem is with insufficient authorization to User ID used on JDBC communication channel.
    Thanks,
    Bhupesh.

  • Getting idoc error - Entry in outbound table not found- in outbound scenari

    hi,
    while generating idoc for outbound idoc to file scenario - i am getting error
    "Entry in outbound table not found" (29 - error in ALE service)
    Diagnosis
    No partner profile (outbound parameter) could be found using the following key:
    /C100/KU//WP_EAN////
    This refers to the key fields in table EDP13:
    RCVPRN  Partner number
    RCVPRT  Partner type
    RCVPFC  Partner function
    MESTYP  Logical message
    MESTYP  Message code
    but already entry has been maintained in partner profiles for the corresponding message.
    same setup is working for other message types. pls let me know what might be the problem

    Hi,
    Check whether partner name is correct or not in WE20/outbound parameters undoer Logical System.
    Regards,
    Sreenivas.

  • "Error in function: Add Table not found [131-183]" - TDS Addon Version 3.16

    While loading TDS Addon Version: 3.16 I am getting the undermentioned error:
    "Error in function: Add Table not found [131-183]"
    SAP B1, 2005B, PL 39.
    It also shows the message that it is successfully installed. When I try to access any of the screen the above messge pops up.
    This is very urgent kindly help me out.
    Edited by: Philip Eller on May 16, 2008 8:50 AM
    Edited by: Philip Eller on May 30, 2008 8:41 AM*

    Dear,
    The addon is a third party addon which was developed by CitiXSys. so the support is provided by the partner who developed the addon.
    Go to the vendor Citixys for further support will give you a quick reply.
    Regards
    Apple

  • Viewing form in Preview Mode Failed. Error: Table not found  [131-183]

    Hi,
    I have created a user form in screen painter in SBODemo. Created UDT, UDF & Registered UDO through my SDK code.
    Everything works fine.
    But when i run my addon on any other DB, and open my custom form it gives an error : Table Not Found.
    I have checked the UDT's , UDF's & my UDO, all are in place and getting created in the DB.
    I tried checking the Form again in screen painter everything is in line. But when i try preview in screen painter it gives an error
    Viewing form in Preview Mode Failed. Error: Table not found  [131-183].
    I can't figure out the issue, i have checked my codes & forms many times.
    Regards
    John

    hi john smith,
    Check your screen painter, probably some fields are defined without the "@" character in front.
    for fields, check the "U_".
    nd.Q

  • CS6 photoshop not found after downloading and putting in serial number

    CS6 photoshop not found after downloading and putting in valid serial number. Only extended version shows up as available. How do I just download CS6 photoshop only??
    Thanks!

    Nowhere during the installation does it give me the option to select the previous version I purchased! This is a new install on a new computer because my other computer no longer works. There is no option for me to select CS6 PS (NON EXTENDED) on the download from Adobe! When I install it only installs the extended version and tells me my serial number is valid but not for the extended. When you provided the link to the page that has the downloads, all that loads is the extended version. Can you please give me a link to the CS6 (not extended) so I can get back to work? I also was able to get the hard drive out of my computer that no longer works and put it on my new computer I'm trying to install CS6 on and the installer gave me NO OPTIONS to enter my old serial#.
    This is beyond frustrating!!!! I have a computer go out on me, and have to buy a new computer, then when I try to install CS6 PS it will not install. In the meantime I'm trying to keep my small business going to stay in business. I can't call any one from adobe. All I can do is send emails to get this resolved and wait.
    Please please help me!

  • Urgent 2nd request CS6 photoshop not found after downloading and putting in valid serial #

    CS6 photoshop not found after downloading and putting in valid serial number. Only extended version shows up as available. How do I just download CS6 photoshop only?? only the CS6 PS extended version shows up as downloaded.
    I have no idea how this forum works or weather or not this has been posted let alone answered. Can someone from Adobe please help me asap
    Thanks!

    check your duplicate post.  there are two responses.

  • Entry in outbound table not found

    i am using we19 trying to do standard outbound processing for idoc mbgmcr02
    i use  receiver Port internal and partner abc01
             sender  Port -
      and partner abc02
    in we20  is set up partner
    abc01   type ls   in outbound parameter area i see  mbgmcr
    now in 19 when is use as receiver  partner abc01  i get the following error
    entry in outbound table not found
    /abc01/ls//mbgmcr   message no 400   id E0
    can anyone direct me to what i am doing wrong?????????????????/

    Hi Janice,
    See these..
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/71/9bbdde2f66454bb9771170369bae81/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/2d/f371e4d24a11d289810000e8216438/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/dc/6b80c243d711d1893e0000e8323c4f/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/f0/08ef0d06b111d286e2080009b98822/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/0b/2a6620507d11d18ee90000e8366fc2/frameset.htm
    cheers,
    Prashanth

  • Entry in inbound table not found

    There is a typical problem here. R3 is recieving IDOCs from other (SRM) systems.
    But the sender's(SRM) partner name is not there in R3. The present IDOCs are getting failed with status 56 and message " Entry in inbound table not found" Please help me out..

    Sending partner (number) is not there...so U cannot have partner profile..

  • Entry in outbound table not found, Error message no. EO400

    I have created Partner profile and include message in partner profile.  when i have generated IDOc (we60), that time, it is given error ( Entry in outbound table not found---- Error Msg no. EO400).
    Please suggest me solution for the same.
    Kunjan shah

    Hi Kundan,
    can u be more specifidc about ur requirement.So that i can help u out.What all the configs u have done and what is method ur using for generationg outbound idoc.
    Regards,
    nagaraj

  • Entry in outbound table not found E0 400

    Hi all,
        Can anyone please help me with the below error which i am facing in ALE IDOCS.
    status 29: Entry in outbound table not found E0 400
    I am unable to see my port name in the created IDOC and the basic type is incorrectly called.
    may I know what settings need to be verified.
    Thanks in advance.

    SAP checks the IDoc control record for outbound IDoc against EDP13 (outbound partner profile table). EDP13 is updated when you create outbound partner profile parameter in WE20
    Check if you have created the partner profile outbound parameter in WE20 correctly to match your outbound IDoc control record.
    SAP checks partner number, port, partner function of the receiver along with message type, message code and message function. They all should match between WE20 outbound partner profile parameter for your message type and the IDoc control record (EDIDC) segment.
    This is the SAP code that throws the error message you mentioned
    read table q_edidc index 1.
      select single * from edp13
                      where rcvprn eq q_edidc-rcvprn
                      and   rcvprt eq q_edidc-rcvprt
                      and   rcvpfc eq q_edidc-rcvpfc
                      and   mestyp eq q_edidc-mestyp
                      and   mescod eq q_edidc-mescod
                      and   mesfct eq q_edidc-mesfct
                      and   test   eq q_edidc-test.
      if sy-subrc ne 0.
        concatenate q_edidc-rcvprn '/' q_edidc-rcvprt '/' q_edidc-rcvpfc '/'
                    q_edidc-mestyp '/' q_edidc-mescod '/' q_edidc-mesfct '/'
                    q_edidc-test into text.
        condense text no-gaps.
        message a400(E0) with text(50).
      endif.

Maybe you are looking for