How can we generate the report of backup,tablesapcefrom OEM / RMAN

How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
1.)we need generate the report of tablespace used,free, archive...
2.)How can we generate the Backup status report also

user13584223 wrote:
How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
1.)we need generate the report of tablespace used,free, archive...There are DBA_* views that expose the necessary information. They are documented in the Reference Manual.
2.)How can we generate the Backup status report alsoThere are rman commands that give that. They are documented in the Backup and Recovery User's Guide.
=================================================
Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
Go to [url tahiti.oracle.com]tahiti.oracle.com.
Locate the link for your Oracle product and version, and click on it.
You are now at the entire documentation set for your selected Oracle product and version.
<b><i><u>BOOKMARK THAT LOCATION</u></i></b>
Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab (for 10.x) or the "Master Book List" link (for 11.x) you will find the complete documentation library.
Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
Do the same with the SQL Reference Manual.
Do the same with the Utilities manual.
You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
Then set yourself a plan to dig deeper.
- Read a chapter a day from the Concepts Manual.
- Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
- Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
- When you have finished reading the Concepts Manual, do it again.
Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
=================================

Similar Messages

  • How can we generate the reports in html or text file formats?

    Hi,
    Is there any package that can help in creating HTMLDB reports in .txt files or .html files? (Similar to TEXT_IO in Oracle Forms)
    How can we generate the reports in html or text file formats from HTMLDB?
    Thanks in Advance
    Renjith

    Hello all.
    Bi Publisher is great, but has a very high price tag. It's even more expensive than Forms & Reports Services. We are considering APEX to replace Forms & Reports on the web, but the reporting limitations are still a problem.
    I wonder if there is another option.
    Thanks

  • How can we put the report which is generated by the program into spool??

    How can we put the report which is generated by the program into spool??
    I had generated a file in Unix which had the report but now the requirement has changed.
    Regards,
    Shashank.

    Hi Shashank,
    If the program is executed in the background and it has the write statement then the spool will automatically generated.
    Reward points if useful.
    Regards,
    Atish

  • How can I put the report generated by a program into a File?

    Hi all,
       How can I put the report generated by a program into a File?It can be in TXT format or excel format which ever is possible.
    I need to export this file to memory,How can I do that??
    Regards,
    Shashank.

    Hello Shashank,
    Please ignore my previous answer... Ofcourse it works...
    There are several ways to do this...
    two of them are
    1. List -> Save -> File and press enter..
        it will ask for the format, then path where to save it. Just give the path.
    2. Using function module 'GUI_DOWNLOAD'.
    I'm giving the example bellow which explains the usage of both GUI_UPLOAD and GUI_DOWNLOAD.
    To do this... you need to have folder with name 'TEST' and a .txt file in it with name 'test'. And contents of it are :
    TEST1             ,BOT 
    TEST2             ,BOT 
    TEST3             ,BUT 
    with spaces.
    REPORT zssr_bdc .
    DATA: BEGIN OF g_t_itab OCCURS 0,
            matnr LIKE mara-matnr,
            maktx LIKE makt-maktx,
          END OF g_t_itab.
    DATA: g_t_bdcdata TYPE TABLE OF bdcdata.
    DATA: path TYPE string,
          path1 type string.
    path = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test.txt'.
    path1 = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test1.txt'.
    *contents of test.txt    *
    *TEST1             ,BOT  *
    *TEST2             ,BOT  *
    *TEST3             ,BUT  *
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename = path
      TABLES
        data_tab                      = g_t_itab.
    LOOP AT g_t_itab.
      WRITE:/1(18) g_t_itab-matnr, 20(40) g_t_itab-maktx.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       filename = path1
       filetype                      = 'ASC'
      TABLES
        data_tab                      = g_t_itab.
    Now you will get one .txt file with name 'TEST1.TXT' in the TEST folder.
    <b>REWARD POINTS IF IT IS HELPFUL</b>
    Regards
    Sasidhar Reddy Matli

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • How Can we improve the report performance..?

    Hi exports,
    I am learning the Business Objects XIR2, Please let me know How Can we improve the report performance..?
    Please give the answer in detailed way.

    First find out why your report is performing slowly. Then fix it.
    That sounds silly, but there's really no single-path process for improving report performance. You might find issues with the report. With the network. With the universe. With the database. With the database design. With the query definition. With report variables. With the ETL. Once you figure out where the problem is, then you start fixing it. Fixing one problem may very well reveal another. I spent two years working on a project where we touched every single aspect of reporting (from data collection through ETL and all the way to report delivery) at some point or another.
    I feel like your question is a bit broad (meaning too generic) to address as you have phrased it. Even some of the suggestions already given...
    Array fetch size - this determines the number of rows fetched at a single pass. You really don't need to modify this unless your network is giving issues. I have seen folks suggest setting this to one (which results in a lot of network requests) or 500 (which results in fewer requests but they're much MUCH larger). Does either improve performance? They might, or they might make it worse. Without understanding how your network traffic is managed it's hard to say.
    Shortcut joins? Sure, they can help, as long as they are appropriate. [Many times they are not.|http://www.dagira.com/2010/05/27/everything-about-shortcut-joins/]
    And I could go on and on. The bottom line is that performance tuning doesn't typically fall into a "cookie cutter" approach. It would be better to have a specific question.

  • How can I change the report query source on the fly

    I am new to Bi Publisher,
    I have a user that wants to select certain columns in the table then have bi publisher make a pdf on just those columns
    without making different reports for each of there choices, how can i make the report variable?
    Thanks,
    Doug

    Hi Doug,
    You can also use lexical parameters to determine the columns in a Data Template (or Oracle Report)... taking it to the extreme the major components of a BI Publisher data template could be dynamic.... something like:
    select &select_clause
    from &from_clause
    where &where_clause
    Regards,
    Gareth
    http://garethroberts.blogspot.com
    http://www.virtuate.com

  • HT3965 i have an old phone backup but named the same as current phone.  how can I rename the older phone backup?

    i have an old phone backup but named the same as current phone.  how can I rename the older phone backup?

    I'm about to buy a new phone.  last time when I had repairs, I have to restore so I can get my numbers, etc on the new phone, and when I do, there are two phones with same name (actually in 4 lines).  I restored from the one that came up, but it turned out not to be the most current information.  So I'm told I can rename the others (dont' know if deleting can be done) so that I always know which one to choose.  When restoring, it does not show the date, so I don't know which one to choose.

  • How can we generate a report in master data?

    hi,
    can we generate a report in master data,if yes pl give me the procedure, i am un able to get it.
    thanks & regards
    venkat

    Hi,
    Once we make the MAster infoobject as the data target, then we can create the report on the master data. to make the IO as Data target , you just need to mention the tick mark for<i> Infoprovide</i> check box  in the <i>MAster data /Texts</i> tab page of the IO.
    help says that:
    <i>InfoProvider:
    This indicator specifies whether the characteristic is an InfoProvider.
    If you want to use a characteristic as an InfoProvider, you have to assign an InfoArea to the characteristic. The system displays the characteristic in the InfoProvider tree in the Data Warehousing Workbench. You can use the characteristic as an InfoProvider in reporting and analysis.
    You can only use a characteristic as an InfoProvider if the characteristic contains texts or attributes.
    You can define queries for the characteristic (more precisely, for the master data of the characteristic) if you are using a characteristic as an InfoProvider. In this case, on the Attributes tabstrip, you are able to switch-on dual-level navigation attributes (navigation attributes for navigation attributes) for this characteristic in its role as InfoProvider.</i>
    With rgds,
    Anil kumar Sharma .P
    IBM-India.

  • How can I print the contacts in Backup Assistant?

    To have a hard copy of all my contacts, how can I print the contacts in my Backup Assistant?

    The Backup Assistant only allows you to print each contact card separately.  The simplest way to get all the contacts printed out is to Export them all to a csv file (Excel) and delete or hide the fields you don't need before printing (there are a lot of extra fields.
    Click the checkmark to expand the box, then click the three vertical dots to get the choice to Export all.

  • How can I move the report's axis

    Hi, I need to change the axis of the report. Now I get this kind of report: (link, in case you don´t see it)
    And I would like to get this one: (link, in case you don´t see it)
    How can I change the data in order to get the second one???
    Thanks a lot.

    Easy. Change the number in the album name after you rip the CD. Say the disc titles are Beethoven's Complete Works, DIsc 1; Beethoven's Complete Works, DIsc 2; and so on through Beethoven's Complete Works, Disc 60. Add the 0 before the single digit in the first 9 names, so that it will then be Beethoven's Complete Works, Disc 01; Beethoven's Complete Works, Disc 02; etc. They will then sort in sequence Disc 01 to Disc 60. Or Disk 001, ..., DIsk 010, through Disc 140 or whatever in a really big set.
    Example from a 100-disc Beethoven set:

  • How can I use the report CRMC_ORGMAN_SWITCH_TO_ENH_MODEL

    Dear all,
    I want to change the CRM organization from stardard version to enhanced version.Acoording to the help document, we must using the report CRMC_ORGMAN_SWITCH_TO_ENH_MODEL.But neither this transaction code nor this program in CRM system.Do you have any suggestion, Thank you very much.
    The help document is "http://help.sap.com/saphelp_crm60/helpdata/en/32/4473211b7778428efebc865e351cb4/content.htm"

    Hi
    Please check if you do have the authorization for transaction
    CRMC_SWITCH_ORGMODEL.
    Transaction CRMC_SWITCH_ORGMODEL switches the organizational
    structure being used in CRM to a new model. This process is irreversible
    and therefore an accidental execution of the transaction should be
    avoided. This may be the reason why you can not execute the report.
    For further details review note 0635401 and the check if following notes
    are valid for you.
    650001,635339,635182
    Hope it can help you.
    Best Regards,
    ZhaoJie

  • How can i view the Streams process through 10g OEM

    I have successfully configured OEM on Oracle 10.1.0.3
    My question is:
    How can i view the Streams processes and queues so that i could monitor its functionality.
    In 9i Java Console OEM I was able to monitor Streams using the <Distributed> tab but I don't find any such option in 10g. Please help.
    Thanks in Advance.
    Regards,
    Raj

    There's a message on the Database Administration page of EM10g.
    "TIP      Use the Enterprise Manager 10g Java Console to manage Streams, Advanced Replication, Advanced Queues, XML Database, Spatial and Workspace."
    At present there is no way through the EM10g Web Interface, and I understand the Java version which comes with 10g doesn't contain any 10g new features.
    So I am still using OEM 9.2 in addition to EM10g
    Thanks,
    Alan...

  • How can I reprint the report?

    Dear Team,
    I have a requirement,
      I have going to print the custom report (label print) once pick confirm has been done automatically.
      If due to some reason (printer is not working or report not printed properly, or labels are not printed properly) have to reprint the same report.
    how can we achieve this requirement. ?
    My report will generate the pdf output. If Its stores in server how can we re use and print that same pdf. or do let me know if you have any other options.
    Thanks & Best Regards,
    Sathiya

    Hallo Sathiya,
    You can try this,
    Find the last Concurrent which had the issue
    printer is not working or report not printed properly, or labels are not printed properly
    Using the Copy Option/Button in the New Submit Request Form, Re Run your report with the same parameters.
    Thanks

  • How can i make the report previewer show a PDF file instead of HTML?

    Hi there,
    i made a report which can be called within a form by a button. This report is a PDF-report.
    I also have an option in the application to start the report from the menu. Then i get the Launch Report Form by Headstart. Here i can fill in for Desformat (in the options) PDF and Output to PREVIEW. Still it generates me a HTML report in my browser. How can i make it work so that the PREVIEWER will show me a PDF-report instead of the HTML?
    Kind regards,
    Dave

    You can not use PREVIEW as output type in webbased forms/reports. Try using as output type CACHE or FILE.

Maybe you are looking for

  • Wrong exe

    Hi Experts, Our IT programmer has built addon application exe and addon installer exe using vs2005 in server that has x64 OS platform. He have created ard file. When installing the addon in the client, the error message is "wrong executable digital s

  • Problems copying files to another compuer...

    I am using a iMac, and want to copy files over to a 13" Macbook Pro occasionally. It worked up to about a week ago ( Dont know what updates were installed ), and now I cant do this. When I try to drag a document over (mostly PDFs) It gives me a dialo

  • How to create multiple tables SQL in toplink?

    Table A { field1, field2, field3 Table B { field1, field2, field3 select a.field1,a.field2,b.field3 from a,b where a.field1=b.field1 and a.field2=b.field2 How can I create dynamic sql in toplink as Hibernate HQL? Is there any simple method?Use multip

  • Send PDF  attachment through mail

    i have one PDF document on my desktop, i want to sent that PDF as attachment to mail through SAP. can anybody have idea how to get?

  • Related to website

    hello, want to know once i create the registration form how do i take them to a new page like this website or facebook or a amazon that once people register they have there own page and can design there page and also have different categories and stu