the number of games of beckup and their size in a backup

Hello
is there a query to display the number of beckup games and their size in a backup? For example, I want to know how many backup sets I had in my last backup dekdak? I can't see them on the type.

Thank you very much

See if that helps you

http://oracledbasupport.co.UK/2008/06/05/RMAN-backup-reports/

You can customize

Tags: Database

Similar Questions

  • In photoshop CS5 (bridge) I could select all the images and their size still before turning them into JPEG files. I can't find a way to do it in CC

    In photoshop CS5 (bridge) I could select all the images and their size still before turning them into JPEG files. I can't find a way to do it in CC

    Hi Tanuj.

    I actually understand it. Not the best user friendly system. Where as before (CS5), I just had to go to crop tool and choose the dimensions and the inches now it in the window. Just really complicated for nothing.

    Thanks anyway Tanuj

    Melanie

  • determine the number of Monday, Tuesday, Wednesday and Thursday

    Hello all;

    I want to determine the number of Monday, Tuesday, Wednesday and Thursday from January 1, 2011 to March 14, 2011. How can I go to write.

    Any help is appreciated.

    Thank you.

    Hello

    Here's one way:

    WITH     parameters     AS
    (
         SELECT     DATE '2011-01-01'     AS start_date
         ,     DATE '2011-03-14'     AS end_date
         FROM     dual
    )
    ,     all_days     AS
    (
         SELECT     TO_CHAR ( start_date + LEVEL - 1
                   , 'fmDay'
                   , 'NLS_DATE_LANGUAGE=ENGLISH'     -- If necessary
                   )     AS weekday_name
         FROM     parameters
         CONNECT BY     LEVEL     <= end_date + 1 - start_date
    )
    SELECT       weekday_name
    ,       COUNT (*)     AS cnt
    FROM       all_days
    WHERE       weekday_name     IN ( 'Monday'
                        , 'Tuesday'
                      , 'Wednesday'
                      , 'Thursday'
                      )
    GROUP BY  weekday_name
    ;
    

    Published by: Frank Kulash, March 14, 2011 14:06

    I just saw your second message. Thanks for posting this; It may be useful to see your code, even if this does not work.
    It sounds like you have the CONNECT BY part properly, but you do a lot of difficult operations on dates. Oracle provides several very useful date manipulation functions, as well as the DATE arithmentic. Beware of excessive conversion of DATE in VARCHAR2, or vice versa. For example

    to_char(to_date(...
    

    It almost never be in Oracle.

  • determine the number of Monday, Tuesday, Wednesday and Thursday in a month

    Hello all;

    I'm still trying to think and understand it. Y at - it a syntax that you can use to determine the number of Mondays, Tuesdays, Wednesdays and Thursdays for a month for a given year, taking into account leap years.

    Thank you.

    Hello, welcome to the forums.

    Something like this should do it:

    with day_tab as (
    select mon_dt + level - 1 dt,
           to_char(mon_dt + level - 1, 'DY', 'NLS_DATE_LANGUAGE=''ENGLISH''') dy
      from (select trunc(to_date(m || '/' || a, 'MM/YYYY'), 'MM') mon_dt
              from (select &v_month m, &v_year a from dual))
    connect by mon_dt + level - 1 <= last_day(mon_dt))
    select count(*) cnt_tot
      from day_tab
     where dy in ('MON', 'TUE', 'WED', 'THU');
    

    Run the example:

    SQL> var v_month number
    SQL> var v_year number
    SQL> exec :v_month := 2;
    
    PL/SQL procedure successfully completed
    v_month
    ---------
    2
    
    SQL> exec :v_year := 2000;
    
    PL/SQL procedure successfully completed
    v_year
    ---------
    2000
    
    SQL> with day_tab as (
      2  select mon_dt + level - 1 dt,
      3         to_char(mon_dt + level - 1, 'DY', 'NLS_DATE_LANGUAGE=''ENGLISH''') dy
      4    from (select trunc(to_date(m || '/' || a, 'MM/YYYY'), 'MM') mon_dt
      5            from (select :v_month m, :v_year a from dual))
      6  connect by mon_dt + level - 1 <= last_day(mon_dt))
      7  select count(*) cnt_tot
      8    from day_tab
      9   where dy in ('MON', 'TUE', 'WED', 'THU');
    
       CNT_TOT
    ----------
            17
    
    v_month
    ---------
    2
    v_year
    ---------
    2000
    
    SQL> 
    

    If by chance you want to see a number of days of the week just to use a group of:

    SQL> with day_tab as (
      2  select mon_dt + level - 1 dt,
      3         to_char(mon_dt + level - 1, 'DY', 'NLS_DATE_LANGUAGE=''ENGLISH''') dy
      4    from (select trunc(to_date(m || '/' || a, 'MM/YYYY'), 'MM') mon_dt
      5            from (select :v_month m, :v_year a from dual))
      6  connect by mon_dt + level - 1 <= last_day(mon_dt))
      7  select dy,
      8         count(*) cnt_tot
      9    from day_tab
     10   where dy in ('MON', 'TUE', 'WED', 'THU')
     11   group by dy;
    
    DY     CNT_TOT
    --- ----------
    WED          4
    TUE          5
    THU          4
    MON          4
    
    v_month
    ---------
    2
    v_year
    ---------
    2000
    

    If you want to list these days, with a number by day of the week:

    SQL> with day_tab as (
      2  select mon_dt + level - 1 dt,
      3         to_char(mon_dt + level - 1, 'DY', 'NLS_DATE_LANGUAGE=''ENGLISH''') dy
      4    from (select trunc(to_date(m || '/' || a, 'MM/YYYY'), 'MM') mon_dt
      5            from (select :v_month m, :v_year a from dual))
      6  connect by mon_dt + level - 1 <= last_day(mon_dt))
      7  select dt,
      8         dy,
      9         count(*) over (partition by dy) cnt
     10    from day_tab
     11   where dy in ('MON', 'TUE', 'WED', 'THU');
    
    DT          DY         CNT
    ----------- --- ----------
    21/2/2000   MON          4
    7/2/2000    MON          4
    28/2/2000   MON          4
    14/2/2000   MON          4
    17/2/2000   THU          4
    3/2/2000    THU          4
    24/2/2000   THU          4
    10/2/2000   THU          4
    29/2/2000   TUE          5
    8/2/2000    TUE          5
    1/2/2000    TUE          5
    15/2/2000   TUE          5
    22/2/2000   TUE          5
    23/2/2000   WED          4
    9/2/2000    WED          4
    2/2/2000    WED          4
    16/2/2000   WED          4
    
    17 rows selected
    v_month
    ---------
    2
    v_year
    ---------
    2000
    

    Published by: fsitja on July 5, 2010 13:49

  • I want to develop an application Live TV for BlackBerry PlayBook. Please guide where can I find the specifications such as width, height, and icon sizes and design factors etc.

    I want to develop an application Live TV for BlackBerry PlayBook. Please guide where can I find the specifications such as width, height, and icon sizes and design factors etc.

    Guideleines of the user and the specifications on the sizes of icons etc to BlackBerry PlayBook OS Applications

    OK, I downloaed the pdf below for UI guiderlines

    UI_Guidelines_BlackBerry_PlayBook_Tablet_2_1.PDF

    Ok

  • PowerCLI - get the number of cores per processor and number of Sockets

    Greetings,

    We are responsible to give a list of all our virtual machines with their host name, the number of CPUs, the BONES and the number of cores per processor for verification.

    I immediately said that this would not be a problem with PowerCLI. However I seem to have more trouble with it than expected.

    Get the number of CPUS is not a problem, but the time wherever I want to divide the number of cores and the number of sockets, it seems to hit a dead end.

    I found the following entries of the community concerned:

    Re: vSphere 5. Casings of vCPU and cores per CPU (PowerCLI) bug

    Machine virtual access avancΘs | VMware vSphere Blog - VMware Blogs

    Parameters to retrieve and set Advanced Configuration (VMX) VM

    But neither seemed to give me the right input. The advanced configuration settings do not appear to contain the number of cores/sockets and Get-View and Get - VM normal controls do not seem to differentiate between carrots and the power outlets and just give the number of processors.

    Because we need these settings for a check I doubt I'm the first to need this information. Does anyone have an idea how to get this information?

    Please note that it is the number of cores and casings of a VM, not an ESXi host.

    Thanks in advance,

    Bram

    $result = @)
    $vms = get - view - ViewType VirtualMachine
    {foreach ($vm to $vms)
        $obj = new-object psobject
        $obj | Add-Member - MemberType NoteProperty-name name - value $vm. Name
        $obj | Add-Member - MemberType NoteProperty - name CPUSocket-$vm.config.hardware.NumCPU value
        $obj | Add-Member - MemberType NoteProperty - name Corepersocket-$vm.config.hardware.NumCoresPerSocket value
        $result += $obj
      
    }
    $result
  • Number of points and the number of plots for table and graph

    Hi guys,.

    Can someone explain to me why I get when I run the number Vi 1 2 plots for each table and graph with 6 points, but when I run vi 2 I get 4 locations with 1 point each run assuming that the same logic applies to two screws

    Thank you.

    When wiring of the paintings in the graphics, it is assumed that each line are several points of land.

    You must convert the 2D table or right-click on the graphic and select "convert table.

  • After I download and install a form of internet gambling it will not let me play. There is an error message that says the name of games stopped working and his tent to find a solution and you informed when the solution is found.

    After I download and install games since the game first, big fish games and try to read a message box if poster indicating the name of the game has stopped working and that his search for a solution and you inform that a solution is found.  Here are the games I bought on these sites.  Games I buy in stores and install work. Am I missing a driver or something?

    Hi Knbrown,

    Welcome to Microsoft Vista answers Forum!

    Most of the online games use Java and Flash Player. If Java or Flash Player is not updated, you can get this error message.

    I suggest that you install the latest version of Java and Flash Player and make sure if you are able to play, you can see the link to download the latest version and install it by selecting the appropriate operating system:

    http://get.Adobe.com/flashplayer/

    http://www.Java.com/en/download/index.jsp

    If the problem persists, I suggest that you check with the manufacturer of games for assistance, you can check the link: http://bigfishgames.custhelp.com/app/home

    Let me know if it worked.

    Thank you, and in what concerns:
    Swathi B - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Windows 7 and vista limit the number of files to select and print or open to 15. Need a work around to push this limit.

    Windows 7 (and Vista) when you select more than 15 files in Explorer, the 'Print' and 'Open' selections under the 'File' menu disappear.  This is very annoying, because I work with a lot of text files and selecting them 15 at once is heavy and prone to errors.  I need a work around to raise this limit to about 60.  I never had no problem to do under XP or previous editions of windows.  I have a fast computer or memory but windows 7 won't let me use it: it of like buying a ferrari and the merchant sends a padlock on the accelerator and said "...". you will son... This is for your own safety! "It's very frustrating.

    Maybe, it's a limitation of the program that you use to open the files. I use Windows Live Photo Gallery, and even if I select more than 500 files at the same time, the open and print commands can be used.

    By the way: the number of places of a Ferrari is very limited. ;-)

  • Where are the built-in games like FreeCell and Solitaire on Windows 8?

    What happened to freecell, spider solitaire, solitaire regular, hearts, Spades, etc. which was available on earlier versions of Windows?  They are not on Windows 8.

    The built-in games that were in previous versions of Windows are not available in Windows 8. Instead, there are a few free games available on the Windows Store product Microsoft applications (in your Start Menu). Card by Microsoft games are called Microsoft Solitaire Collection. There is also Microsoft Minesweeperand Microsoft Mahjong . You should note that these are different from what you had previously.

    You can also search applications game 3rd party on the Windows store.

  • How wany instances and their sizes

    Hi all
    How can I find the number of instances installed on my server linux at the os level and their respective sizes?
    your help is appreciated, thank you.
    OS: Linux 5.7 rhel

    Published by: 938946 on April 15, 2013 22:31

    Ask DBA_DATA_FILES, DBA_TEMP_FILES, V$ LOG and V$ CONTROLFILE for sizes of each type of file oracle.

    Hemant K Collette

  • What happened to the ability to manage my favorites and save them as a backup to import later for the same or another PC?

    Prior to version 4 of Firefox, I had a function I made much use of available. Management of bookmarks allowed me to save my favorites in a file on the hard drive and use for purposes of backup or transport to another PC.

    What happened to this function?

    It's still there, just changed menu item name. Choose "Show all bookmarks" in the bookmarks menu. It opens the same window to 'Manage Boomarks'.

  • I would like to know how to clear the number of games you played when you play says number of plaid of games and not won matches. How do you get this back to zero?

    TRIE to deleate the numbers

    Hi lonabelle,

    It really depends on the game.  Many of the staistics provided standard games with Windows, including Solitare, can be deleted by clicking on the game-> statistics-> Reset.

    Hope this helps,

    Barbara

  • While the graphics of games download scrambled and freezes Satellite A200-1j0

    Hello

    I have a problem of great graphics with my laptop. Its a Satellite A200-1j0 with HD 2600 running vista 32 bit.
    When I start a game, only the graphics are scrambled and the nb freezes.

    I have been using the nb for casual games, since I bought it (1 year ago) without any problem.
    But a few days, a few games (hl2, far cry 2) started my freezing system rarely and at random times.
    Today, I've updated the drivers from the Toshiba site and it got worse.

    It happens now in almost all games, and, as soon as the graphics appear after loading screens.
    Windows will run without problems, however.

    Here are some pictures of the laptop when the graphics get scrambled

    http://I487.Photobucket.com/albums/rr237/doomlover_gr/DSC00103.jpg
    http://I487.Photobucket.com/albums/rr237/doomlover_gr/DSC00104.jpg

    Doesn't look good I agree with Akuma.
    Check if the BIOS and driver graphics card to day helps.
    If that does not solve the graphics problem then ASP support is necessary.

  • How can I do a folio which is part of the private sector for my client and their staff (about 20 people)?

    Hi, I have a subscription to creative cloud and have created a folio ipad DPS for my client. They want to distribute this folio to their employees (about 20 people) and it is not public prefers.

    I can do this with my CC subscription or do I need a business account?

    For 20 people? Use the Adobe Content Viewer.

Maybe you are looking for