How to find contents of Backuppiece ?

Dear Experts,
Where I can find the contents of a backuppiece.
Thanks in advance.

Thanks Mseberg for your reply.
I believe RC_% views can use only on recovery catalog. Is there any other way to find/list the backup piece contents.
Eg:
List backup command is listing all the details of the backup details including contents.
Backup Piece name +RECO01/lcbt04u/backupset/ora_arc_lcbt04u_20120725_2rnh0mi0_1_1_789600832*
BS Key Size Device Type Elapsed Time Completion Time
6115 376.00K DISK 00:00:00 25-JUL-12
BP Key: 6125 Status: AVAILABLE Compressed: YES Tag: DAILY_ARC_25JUL2012_2102
Piece Name: +RECO01/lcbt04u/backupset/ora_arc_lcbt04u_20120725_2rnh0mi0_1_1_789600832
List of Archived Logs in backup set 6115
Thrd Seq Low SCN Low Time Next SCN Next Time
1 5286 1501116915 25-JUL-12 1501117660 25-JUL-12
2 5205 1501116921 25-JUL-12 1501117656 25-JUL-12
but when i try the list backup piece, it is showing only backup piece name and availability, not showing the contents. and i dont find the content info on v$backpack_piece. is there any way to find the contents of particular backup piece other than RC_% views?
RMAN> list backuppiece '+RECO01/trtdb/backupset/ora_arc_trtdb_20120725_2rnh0mi0_1_1_789600832';
using target database control file instead of recovery catalog
List of Backup Pieces
BP Key BS Key Pc# Cp# Status Device Type Piece Name
6125 6115 1 1 AVAILABLE DISK +RECO01/trtdb/backupset/ora_arc_trtdb_20120725_2rnh0mi0_1_1_789600832
Regards,
Abk
Edited by: 865605 on Jul 29, 2012 9:01 PM

Similar Messages

  • How to find content of a constraint etc.

    Hi,
    select constraint_name
    from user_constraints
    where table_name = 'EMP';
    shows to two constraints for the given table of EMP. Now, how to find CONTENT of each of these two constraints?
    Secondly, how to find if a particular column is nullable (programmatically, not from DBA tool set)? e.g. EMP.deptno
    Thirdly, why did I get the err msg of "inserted value too large for column"
    when executing the following command for data insertion to EMP as user, scott
    create SEQUENCE emp_sequence
    start with 8000 increment by 10;
    insert into EMP values (emp_sequence.NEXTVAL,'JOE','Researcher',null,null,null,null,null);
    Thanks a bunch.

    Thirdly, why did I get the err msg of "inserted value too large for column"Er, do the math...
    SQL> conn scott/tiger
    Connected.
    SQL> desc emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)
    SQL> select length('researcher') from dual
      2  /
    LENGTH('RESEARCHER')
                      10
    SQL>
    Secondly, how to find if a particular column is nullable (programmatically, not from DBA tool set)Don't like the sound of this, smells of dynamic coding. Anybody who can't figure out why they can't create an EMP record for a researcher probably ought not to be tangling with dynamic SQL just yet.
    Now, how to find CONTENT of each of these two constraints?The CONSTRAINT_TYPE tells you the sort of constraint: P=PRIMARY KEY, U=UNIQUE, R=FOREIGN KEY and C=CHECK. Only Check constraints have any content as such and you'll find that in the SEARCH_CONDITION. Note that this is a LONG column, so you may need need to SET LONG 5000 to see it in SQL*Plus.
    Cheers, APC
    P.S. In future please refrain from bundling unrelated questions into a single post. There is no charge for posting and it avoids the threads getting long and hard to follow.

  • How to find contents of ABAP proxy message

    we are using an ABAP proxy to send data including a document number from SAP to PI when a document is received on our SAP ERP system.
    it is possible under certain conditions that the proxy will not be processed, but the document has. I want to be able to check the messages sent to PI  to ensure that all the data has actually created a proxy message. How can I, if it is possible, find the data within the messages so I can determine if the whole process has completed OK.
    Put another way how do we know what data is in a message as listed under transaction SXMB_MONI ? The GUID in this transaction appears to relate to table SXMSPMAST but how can I find the information contained within that message so I can then link the message with the original document and then if necessary call the proxy again for that document ?
    Colin
    Edited by: Colin Heap on Oct 22, 2009 5:16 PM

    The problems I mentioned above seem to have been down to the xml messages themsleves rather than the coding found from Ravis' link however I made a few changes to the code to add more flexibility in the search parameter and also a TRY - ENDTRY to deal with the problem of abends when the SAP cannot interpret the message contents.
    please refer to the original BLOG ( Super Message Monitor for SAP XI ) by Alessandro Guarneri at the link in Ravis' post.
    I have then made the following changes. Please note that the field names used in my code are slighlty different to the original code to fit in with local coding practice however I think it will be easy for a programmer to interpret the changes
    1. Selection Screen 850 has been changed to use a SELECT-OPTION for the payload value. In Alessandros' code this is in INCLUDE ZXIMONI_RSXMB_SEL_MSG_SEL.
    * Super selection screen -------------------------------------------------- BEGIN
    TABLES: idxsndpor, idxrcvpor.
    SELECTION-SCREEN BEGIN OF SCREEN 0850 AS SUBSCREEN.
    SELECTION-SCREEN COMMENT 5(40) text-S98.
    * IDoc
    SELECTION-SCREEN BEGIN OF BLOCK idoc WITH FRAME TITLE text-s16.
    * Sender
    SELECTION-SCREEN BEGIN OF BLOCK idoc_snd WITH FRAME TITLE text-s14.
    SELECT-OPTIONS: s_snum FOR idxsndpor-idocnumber NO INTERVALS,
                    s_styp FOR idxsndpor-idoctyp    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK idoc_snd.
    * Receiver
    SELECTION-SCREEN BEGIN OF BLOCK idoc_rcv WITH FRAME TITLE text-s15.
    SELECT-OPTIONS: s_rnum FOR idxrcvpor-idocnumber NO INTERVALS,
                    s_rtyp FOR idxrcvpor-idoctyp    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK idoc_rcv.
    SELECTION-SCREEN END OF BLOCK idoc.
    * Payload
    SELECTION-SCREEN BEGIN OF BLOCK xp WITH FRAME TITLE text-s30.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (30) text-x01 FOR FIELD p_xpath.
    PARAMETERS: p_xpath TYPE text256.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (30) text-x02 FOR FIELD s_xvalue. 
    PARAMETERS: p_xvalue TYPE text256 NO-DISPLAY.                   
    SELECT-OPTIONS s_xvalue for p_xvalue.                                      
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK xp.
    SELECTION-SCREEN END OF SCREEN 0850.
    * Super selection screen -------------------------------------------------- END
    I'm having trouble entering the next piece of code for INCLUDE ZXIMONI_RSXMB_CUSTFILTERS  so will enter it in the next post.

  • How to find content in header

    I wanted to change the link located on our website.  I assumed this was coming from the master page, since it appears on every page on the site.  I have checked web parts, css and the master pages and lists that we are using, but I have not
    found it yet. What I am looking for is a reference to a link.  I found where it is formatted when I view the source code. But I have not been able to locate the actual contents!  Do you have suggestions on how I should be looking for this? 
    It appears in the header and located under div id"s4-bodycontainer". Where should I be looking?
    thanks
    mhoran

    it's a link the developer put in to MS outlook, which we don't want to show.  He's put other similar content on the home page, but they were based on a list. There is no list for the link I see for this content. I see the code in the source :
    <div id="s4-bodyContainer">
    <div id="mainbody">
    <div id="header">
    <ul id="headlk">
     <li>
       <a href="https....link  is here ></a>
    </li>
    </ul>
    mhoran

  • How to find the user who deleted the contents of DSO.

    Dear friends,
    Can u please tell me ,how to find the user who deleted the contents of the DSO.
    The user has deleted the complete contents of the DSO. We need to find the user ,date and time.
    regards,
    Vijai

    Hi,
    If the user has used the manage option to delete the contents of the DSO then the changed by field will be updated by the users name. In case a program is used for the deletion then it wont be the case.
    Regards
    Govind.

  • How do I find contents of PSA in BI 7.0

    I am using BI 7.0. How do I find contents of PSA? Only way I found:
    1.     Go to Monitor, Select the Request, Go to Detail tab, right Click to get Context Menu and select PSA maintenance. Is there a transaction code to get to PSA  or other ways of getting to PSA?
    THANKS A LOT.

    Hi Zigzagdna,
    Go to RSA15-->go to your data source>right click>manage->select the request you want to see in PSA, select the psa icon in the left bottom cornerSelect ok.
    Go to RSA15-->go to your data source->double click your data source-->on the application toolbar, there is an icon to switch on the technical attributes->click the icon->There will be an alphanumeric table name as PSA table->doucle click it ->On the application toolbar there is contents icon->run(after selections).
    Go to infopackage monitor on the application toolbar there is PSA icon. Click it to see the contents of the PSA loaded by this request.
    For you previous SQL eror while executing infopackage for loading copy cube.
    Try loading data with selections in infopackage. May be you are trying to fetch more data than the ABAP program used for loading at the background can handle.
    Hope this helps,
    Best regards,
    Sunmit.

  • How to find the contents of proc from top command

    I had a doubt related to how to find the contents of a procedure or the statements from the PID displayed in top command if it can be done from TOAD or
    sqlplus. If we can find out the details from top like:-
    21211 oracle 16 0 3228 1012 764 R 0 0.0 0:07.68 top
    1 root 16 0 1732 552 472 S 0 0.0 0:01.29 init
    say, what is the process with PID 21211 and 1 are doing?
    I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    Join v$process, v$session, and v$sql
    SQL> ed
    Zapisano file afiedt.buf
      1  SELECT p.pid, s.sid, s.serial#, sq.sql_text
      2    FROM v$session s,
      3      v$process p,
      4      v$sql sq
      5    WHERE s.paddr = p.addr
      6*   AND sq.address = s.sql_address
    SQL> /
           PID        SID    SERIAL# SQL_TEXT
            37        128          2 BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :
                                     2, :3); END;
            19        149       4566 SELECT p.pid, s.sid, s.serial#, sq.sql_t
                                     ext   FROM v$session s,     v$process p,
                                          v$sql sq   WHERE s.paddr = p.addr
                                      AND sq.address = s.sql_address
    SQL>Edited by: Łukasz Mastalerz on Feb 12, 2009 1:27 PM

  • How to find URL of pages in WAS for EP content admin

    I can browse to http://localhost:50100 and can get links for WD ,services and adminstration but when i check these links there is no url for uploading PAR files. The content administration is in some other link.Any idea which one it is and how to find the port for deployment of par .WD gets detected and uploaded in 3601 but not PAR .What is the std procedure for checking ports on this server
    Is SLD disabled  for preview version?
    George

    http://fully qualified Portal server:http port of SAP J2EE/irj/ i sthe address SO first issue is solved.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/89/c84440eff00272e10000000a155106/frameset.htm
    Can we change the url of this in WAS and how can we customise it in WAS  and how can we show a common page for all users (anonymous) where there is no login screen?
    George

  • How to find File Content converson error

    Hi All,
       If there is a problem with key field in the file content conversion, file is getting deleted from the source system, and SXMB_moni does not have any message, adapter monitor does not show any message, How to find the error?
    Thank you
    Ganges Leaves

    hi,
    do you see anything in the AFW message monitoring
    http://hostname:portnumber/MessagingSystem/monitor/monitor.jsp  
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • How to find a crm field in the bi content

    Hi all,
    in r/3 we have been using rsosfieldmap table to find the infoobject existing in the bi system and can u tell me how to find the crm field whether that particular infoobject is existing or not in the bicontent.
    Regards,
    Naveen

    HI Naveen,
    Check for the filed source table -- next find the data source used--> you can search in help.sap.com for the related BI content BW info objects
    Rsosfiledmap table is used to find the respective Bw filed to which its mapped. this table can be used only if the fileds are already mapped and exisintg in use in BW system.
    i guess u can use the same table to find the Bw info obejct(only if the CRM data source is replicated n used in BW system).
    Regards
    KP

  • How to find out web content files linked in folio through scripting

    Hi all,
    Please suggest me, how to find out web content files linked in folio through scripting.
    Regards,
    Moorthy

    @Moorthy – can you tell us a bit more? By mentioning "folio", I think you are referring to Adobe Digitial Publishing Suite (ADPS or short: DPS). If yes:
    1. Do you want to analyze Folio files *.folio and get the linked web content files?
    2. Or do you want to check an InDesign file with an overlay and check what files are linked as web content?
    3. Or something else?
    Where is your base problem?
    Packaging the InDesign files and copy/relinking the web content files after the packaging process?
    Uwe

  • How to find the business content cubes..

    Hi bw guru's,
       how to find the standard cubes and how to map the fields for our reuirements..can any one help me ..in this scenario..
    thanx in advance..
    uma reddy

    uma,
    help.sap.com is a reasonably good source of information on available business content.  For example, here is an overview of BC for NW2004s:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3d/5fb13cd0500255e10000000a114084/frameset.htm
    As you drill down you can often (but not always) find information on how the BI infoobjects map back to source system tables/fields.  For instance, this link shows this information for sales order header information under NW2004s:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3c/63073c52619459e10000000a114084/frameset.htm
    As you navigate you'll want to take care that you're looking at information related your system version and business content level.
    Hope this helps.
    Bob

  • How to find to recent changes to a content area during a period

    How to find recent changes (between monday and friday) to a Content Area (interms of new items, folders ..etc). ?
    does anyone has a sql script to find .
    My problems.
    We applied 30984 patch, but it is giving us lot of porblems. so we are going to rollback the change. But, we will loose all the changes between the day patch is applied to today. How to capture those changes and apply them after rolling back .
    thanks

    Subu,
    Query wwv_things using publishdate and updatedate for items and createdate and updatedate
    for folders (query wwv_corners for this).
    You will have to repost the items.
    How to find recent changes (between monday and friday) to a Content Area (interms of new items, folders ..etc). ?
    does anyone has a sql script to find .
    My problems.
    We applied 30984 patch, but it is giving us lot of porblems. so we are going to rollback the change. But, we will loose all the changes between the day patch is applied to today. How to capture those changes and apply them after rolling back .
    thanks

  • How to find the standard queries in business content

    hi
    pls explain how to find the standard queries in a business content
    assign full points

    Hi,
    Incase you want to know details about the standard queries, then the best source would be the help documenations on BI content:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/37/5fb13cd0500255e10000000a114084/frameset.htm

  • How to find the right primary key for DSO from Business Content

    According to best practice design, it is reccomended to make a  DSO where all fields from Business COntent Datasources are transferred.
    But, how to find the right primary indeks ?
    Any good suggestions ?
    For many of the Business Content dataflows there are not DSOs present, so ther e is no tip to get from the dokumentations as gfar as I have found.
    best Regards
    Ingrid

    Hi Ingrid,
    Your question will be perfect in case if you are going for a Custom cube.
    You will not have any problem when you create a Datasource in R/3 level even if it is been built on a single table or on view.
    Only point that you want to know how to design my Key fields in ODS.
    This will be purely depends at what level that you want to bring the data.
    Egg:-
    If you run the data source in RSA3 and check for Each GL if you have 10 liine items and you want all the 10 line items to be transfered to BW.
    In this case you need to check what is the unique combination of fields that is making this lineitems to exists as 10.then include all those fields into Your ODS Key Fields.
    This way you can have 10 records for that perticular GL in both sides, by which u will make sure that the data is been completely transfered.
    If in case if you clude your own Key fields then you will get the correct Total in report for each GL but you can't see all those 10 line items.
    For any case you need to figureout how many records that you want to take into BW based on that check the fields that makes it unique and then add them to ODS Keyfields that will solve your requirement.
    I think this will clear your doubt.
    Best Regards,
    VNK.

Maybe you are looking for

  • Error message in PL/SQL

    Hi, I've created a PL/SQL process source (on load - before header) which counts the records of a table. If the number of records is 1 or less the values of the table are to be inserted in the text fields of my HTML form. If there is more than one rec

  • How can i execute my swing project?

    i am new about java.. i am trying to do something with jbuilder.. but i can't have any exe file.. i want to know how the last users will use my programs.. do they have to write java commands?.. thanks..

  • Itunes won't recognise some music

    When downloading some albums for the internet, when I try and drag and drop them into my libary they just won't show up in there ???? any ideas. The file format is mp3 audio and they play fine in windows media player, but I can't get them onto itunes

  • My messages screen is blank after upgrading iPhone 5 to IOS 8

    I upgraded my iPhone 5 to IOS 8 this morning and now my messages screen is blank (white). I can see an incoming message on the screen when the phone is locked but disappears after unlocking. The Messages icon reflects an ever-increasing number of unr

  • WRT54G Not Found on EasyLink

    Ok, I was wondering if I might be able to get some help with my router. I have been having problems with my router not getting found during the setup process and when I go through the setup process, I do all the steps it tells me to and it still does