How to check the size of rman backups to tape

instead of asking tsm person to check, how do I check how big is a rman backup sent to tape?

query to find the backupset sizes
SQL> select ctime "Date"
  2       , decode(backup_type, 'L', 'Archive Log', 'D', 'Full', 'Incremental') backup_type
  3       , bsize "Size MB"
  4  from (select trunc(bp.completion_time) ctime
  5          , backup_type
  6          , round(sum(bp.bytes/1024/1024),2) bsize
  7     from v$backup_set bs, v$backup_piece bp
  8     where bs.set_stamp = bp.set_stamp
  9     and bs.set_count  = bp.set_count
10     and bp.status = 'A'
11     group by trunc(bp.completion_time), backup_type)
12  order by 1, 2;
Date      BACKUP_TYPE    Size MB
03-JUL-10 Archive Log       7.31
03-JUL-10 Full             29.81
03-JUL-10 Incremental    2853.85
04-JUL-10 Archive Log       3.59
04-JUL-10 Full              7.45
04-JUL-10 Incremental       3.05

Similar Messages

  • HELP !!! How to check the size of an object in Photoshop ?

    Hello,
    I'm using Photoshop CS 3 to design a website. I used several shapes such as rectangle, line or ellipse of different size. Probably it is a stupid question but I don't know how to check the size of an existing rectangle. I tried free transform tool that selects my rectangle but doesn't show its size. Then I made a selection with rectangular marquee tool but I see nowhere the size of the selected area.
    If you know the name of such a tool please help me !
    Have a nice day !

    Web images are all pixels. View at 100% at pixel view. that is your exact size

  • How to find total size of RMAN backup files?

    Hi there
    env: Oracle 10gR2, RHEL 64bit
    My client has a production database where rman backups are taken: Level-0 backup every Sunday and Level-1 Monday thru Saturday.
    I have very limited access to this production database because it is being managed by third party and they won't provide me my required info (not sure why). I do not have access to their rman repository. To connect to the database I have to login to an intermediate server and then login to the database server. I have no access to Enterprise Manager. So in short, my access is limited. I want to gather the information on total size of rman backup files - both for a Level-0 and Level-1 backups separately. I understand that this info can be retrieved from rman repository. Are there any data dictionary views/tables where I may get this info?
    Best regards

    Hi,
    Have you searched in  forum check this:https://forums.oracle.com/thread/1097939
    HTH

  • How to know the size of a backup piece

    my 51gb database took 7 hours to backup to tape, before it finished, I checked it at the state of piece6..., wondering how big is a piece so I know how many been backed up and how many left, so that I can estimate the finish time.

    Hi,
    my 51gb database took 7 hours to backup to tapeYou have a rate 2Mb/s very slow.
    how many been backed up and how many left
    SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
           ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
    FROM   V$SESSION_LONGOPS
    WHERE  OPNAME LIKE 'RMAN%'
    AND    OPNAME NOT LIKE '%aggregate%'
    AND    TOTALWORK != 0
    AND    SOFAR <> TOTALWORK;
    so that I can estimate the finish timeIf you are using 10g or above..
    Use the query below to check how much already backed and calculate your rate MB/s
    COL in_size  FORMAT a10
    COL out_size FORMAT a10
    SELECT  TO_CHAR(START_TIME,'DD-MM-YYYY HH24:MI:SS') START_TIME,
            TO_CHAR(END_TIME,'DD-MM-YYYY HH24:MI:SS') END_TIME,
         -- SESSION_KEY,
           INPUT_TYPE,
           COMPRESSION_RATIO,
           INPUT_BYTES_DISPLAY in_size,
           OUTPUT_BYTES_DISPLAY out_size
    FROM   V$RMAN_BACKUP_JOB_DETAILS
    WHERE TRUNC(START_TIME) = TRUNC(SYSDATE)
    ORDER BY SESSION_KEY;Levi Pereira

  • How to check the size of an info cube?

    Dear all
    Is there any t-code which can be used to see the total disk space occupied by a specific cube?
    I know ST14 can be used for the TOP 30 cubes and stuff.
    but my cube is not in top 30.....so how should i see the total size of my cube in bytes?
    please help me...i need it urgently
    Please dont recommend the SAP note on Sizing...i have it...the caliculation gave me wrong answer!
    Total Points assured!!!!
    Edited by: reddy reddy on Jan 27, 2008 9:34 AM

    Hi,
    we can calculate the size of the info cube.using this information
    Each keyfiure occupies 10 Bytes of memory
    Each Char occupies 6 Bytes of memory
    So in an Infocube the maximum number of fields are 256 out of which 233 keyfigure, 16 Dimesions and 6 special char.
    So The maximum capacity of a cube
    = 233(Key figure)10 + 16(Characteristics)6 + 6(Sp.Char)*6
    In general InfoCube size should not exceed 100 GB of data.
    While considering sizing, you must consider factors like years of data rewuired for reporting, acceptable repsonse time, database limitations, archiving options, etc.
    pl read this document:
    [https://websmp209.sap-ag.de/sizing]
    Hope this helps,
    regards
    CSM Reddy

  • How to check the size of flash memory that are used by each applications ?

    I'm using yxplayer as secondary media player.
    2 weeks ago, this program always fails to start up.
    So, I have uninstalled this program and reinstalled newer version.
    After reinstallation, it works well. But all the video clips that I have
    Copied to this application have gone away... And It seems the
    Flash memory that was used by older version did not returned
    To free space.
    Is there any tool to check the usage of internal flash of ipad in detail ?

    Hi,
    Is there any tool to check the usage of internal flash of ipad in detail ?
    Not memory, but storage space.
    Connect your iPad to your computer. Launch iTunes. Select the Summary tab. Storage space available at the bottom of the iTunes page.
    iOS devices do not support Flash.
    Carolyn

  • How to check the information in a backup device?

    for example, if I have a disk dump device, then I use this device for backup, maybe full backup, maybe log backup, maybe incremental backup or even backup different database to this dump device.
    Then I can I extract the information about how many different type of backup in this device? any command can list the all backup info?

    Disk dump devices are typically useful for dumps to a tape drive, ie, the tape drive address rarely (if ever) changes ... so an operator just has to switch out tapes on a regular basis while the regularly scheduled jobs dump to the same device every time.
    For filesystem-based dumps you're better off skipping the use of dump devices and just generate a dump file name on the fly.
    Keep in mind that you do NOT have to dump to a dump device.  You can dump straight to a file ...
    ===========================
    dump database mydb to "/dump_dir/MYDS.mydb.20140321.211537.dbdump"
    ===========================
    ... and you can even go so far as to build the dump command 'on the fly' with T-SQL, eg:
    ===========================
    declare @dumpcmd varchar(500), @dbname varchar(30)
    select  @dbname = db_name()
    select  @dumpcmd = 'dump database '+@dbname+' to "/dump_dir/'+@@servername+'.'+@dbname+'.'+
               convert(varchar,getdate(),112)+'.'+
               str_replace(convert(varchar,getdate(),108),':',null)+'.dbdump"'
    exec(@dumpcmd)
    ===========================
    NOTE: I'm not sitting at an ASE at the moment so you'll need to doublecheck the syntax of the above T-SQL.

  • How to increase the size (Length and width)  of check box

    Hi All,
    I have to increase the size of ( width and length) of check box, I have revised to check box topic in dev guide but didnt find any clue, i have also tried to use CCStyle class but that is also not working, I would appreciate if some can help me out on this. Thanks in advance , let me know if any clarification required.
    Thanks
    Pratap

    Hi Pratap ,
    I honestly don't know how to increase the size
    But i am giving you an alternate solution : we can create two Images with check box type 1 ) with checked
    2 ) with unchecked . ( you can create image of any size ) and get them displayed on OAF screen dynamically using switcher case .
    Dynamically displaying image will give the illusion of check box being checked and unchecked .
    keep this image moved to following media directory
    eg : /oraapp/mfgtestcomn/java/oracle/apps/media .
    Implement the switcher case , add the fire action to this Image Column , create a transient attribute and attach to this
    column . Depending on the value returned by transient attribute display the image on the column .
    Let me know if its not clear .
    Keerthi

  • How can I check the size of the spool in my system?

    Hi,
    I need to check the size of the spool in my system. How can I check that?
    Let me know please.
    Much Thanks!

    I am not sure if you are looking for this...
    In Sp01 check your spool no and click on 'Request attributes'(a hat kind of icon). and in TemSe Attributes tab you will see the size in bytes.
    Award points if it helps.

  • How to check the objects size in DBA_RECYCLEBIN

    Hi All,
    I want to purge dba_recyclebin, before that i want to check the size of all objects residing in dba_recyclebin.
    I am using below query to goup by tablespace.
    SELECT TS_NAME, SUM(SPACE*1024)/1024/1024/1024 AS "Size in GB" FROM DBA_RECYCLEBIN GROUP BY TS_NAME order by 2 desc
    Kindly inform me is the correct way to check it. for example if the 10gb space is shown from this query, will i able to see 10GB free space after purging. Kindly confirm
    Thanks
    Krishna

    I am using below query to goup by tablespace.
    SELECT TS_NAME, SUM(SPACE*1024)/1024/1024/1024 AS "Size in GB" FROM DBA_RECYCLEBIN GROUP BY TS_NAME order by 2 desc
    As I mentioned, the SPACE field is in terms of BLOCKS rather than bytes.
    First confirm your database block size using
    SQL> show parameter db_block_size
    then modify the query as
    SQL> SELECT TS_NAME, SUM(SPACE*<DB_BLOCK_SIZE>)/1024/1024/1024 AS "Size in GB" FROM DBA_RECYCLEBIN GROUP BY TS_NAME order by 2 desc;
    I am quite sure the db_block_size in your database is 8192.
    Since you have used 1024 instead 8192 as the block size, you are seeing the difference in DBA_RECYCLEBIN and DBA_SEGMENTS

  • How to check the verity version in our PeopleSoft Installation?

    How to check the verity version in our PeopleSoft Installation? I am not sure if the verity is installed or not and also if installed what is the version?

    yes. it says the version is 5.0.1
    Is there any difference in installation or configuration when the app and web server are in same machine and when the app and web server are installed in different servers?
    ============================================
    D:\fs840\webserv\peoplesoft>mkvdk
    mkvdk - Verity, Inc. Version 5.0.1 (_nti40, Jul 23 2004)
    Usage: mkvdk [<option>...] <filespec>...
    Where <option> can be a VDK switch, or any of:
    -about Show the collection's about resources
    -autodel Delete bulk insert file when no longer needed
    -backup <dir> Specify collection backup location
    -bulk Submit bulk insert file(s)
    -charmap <name> Specify the character map to VDK
    -collection <path> Specify the collection (required)
    -create Create the collection
    -credentials <user> Specify user[:passwd][:domain][:mailbox]
    -datapath <path> Specify VDK datapath
    -datefmt <fmt> Specify date format to VDK
    -debug Enable debugging output
    -delete Delete documents
    -description <desc> Set the collection's description
    -diskcache <num> Set VDK's disk cache size (kbytes)
    -extract Extract field values from text
    -help Print this usage information
    -insert Insert documents (default)
    -locale <locale> Specify the locale to VDK
    -logfile <file> Save output in a log file
    -loglevel <num> Set the VDK output level for the log
    -mailboxes This option is depracated. Use the credentials option inste
    ad
    -maxfiles <num> Set VDK's maximum number of open files
    -maxmemory <num> Set VDK's maximum memory usage (kbytes)
    -mode <mode> Set the indexing mode
    -modify Modify fields using field/value pairs from a bulkfile
    -nohousekeep Disable housekeeping
    -noindex Disable indexing
    -nolock Turns off locking (dangerous)
    -nooptimize Disable optimizations
    -nosave Don't save collection work list
    -noservice Prevents servicing of submitted work
    -nosubmit Don't submit work to VDK
    -numdocs <num> Number of documents to insert from bulk insert file(s)
    -numpages <num> Synonym for diskcache for backward compatibility
    -offset <num> Specify offset into bulk insert file(s)
    -online Flag for online Bulk Modify
    -optimize <spec> Optimize the collection
    -outlevel <num> Set the VDK output level
    -persist Service the collection forever
    -purge Remove all documents from collection
    -purgeback Purge in the background
    -purgewait <secs> Specify delay before purge
    -quiet Suppress all non-error messages
    -repair Repair the collection
    -servlev <spec> Advanced option for overriding service level
    -sleeptime <secs> Interval between service calls for persist
    -style <dir> Specify style directory for create
    -submit Synonym for noservice for backward compatibility
    -synch Perform work synchronously
    -topicset <path> Specify VDK topic set
    -update Update documents
    -vdkhome <path> Specify VDK home
    -verbose Output more information
    -words Build word assist list
    -wordindex Build word assist index
    The <spec> for -optimize is a hyphenated string of:
    maxmerge Perform maximal merging of partitions
    squeeze Recover space from deleted documents
    vdbopt Build optimized VDB's
    spanword Create word list spanning all partitions
    ngramindex Create ngram index into spanning word list
    maxclean Really clean (not for read-write)
    readonly Make the collection read-only
    tuneup Fully optimize for read-write use
    publish Fully optimize for read-only use
    The <spec> for -servlev is a hyphenated string of:
    search Enable search and retrieval
    insert Enable adding and updating documents
    optimize Enable opportunistic collection optimization
    assist Enable building of word list
    housekeep Enable housekeeping of unneeded files
    delete Enable document deletion
    backup Enable backup
    purge Enable background purging
    repair Enable collection repair
    dataprep Same as search-index-optimize-assist-housekeep
    index Same as insert-delete
    Error: must specify collection
    mkvdk done
    D:\fs840\webserv\peoplesoft>

  • How to estimate recovery time from rman backup

    how to estimate recovery time from rman backup?
    The database is of size 800GB.
    the approximate time to backup is 8- 10 hours.

    "Recovery time" is : RESTORE DATABASE time + RECOVER DATABASE time.
    RESTORE can be done
    a. in parallel with multiple channels if your backup was created as multiple backupsets
    b. using incremental backups
    c. whether the backups are on
    i. disk
    ii. tape
    Alternatively, if you have a Recovery Area with an Incrementally Update backup of the database, you can SWITCH DATABASE almost immediately
    RECOVER depends on
    a. how many archivelogs (in terms of size, not necessarily number) need to be applied
    -- this depends on
    i. transaction volume
    ii. the "freshness" of the backups (how recent the backups are)
    b. whether required archivelogs are available on disk (which can be the case if the database backup itself is a very recent backup and archivelogs since then haven't been deleted {whether they have been backed up or not}) OR whether they need to be restored from
    i. disk backup
    ii. tape backup

  • How to I find out if rman backup that was done is Rman Cold backup or Rman

    Hi,please help me I have backup set ,that is backupset that have rman data backup and autobackup that have control file,I want to restore this backup but I don't know how the backup was done .please advice me how to check if this was Rman cold backup or rman hot backup.I have pfile that is extracted from database before backup was taken.

    Hi Thanks for the update,I checked the v$backup_set on the other database ,but it does not tell me whether ithe backup was Rman cold backup in which database was mounted or Rman hot backup ,now I have to do the restore but I don't know what type of backup do I have please assist.
    Edited by: user1022397 on 2010/11/11 4:40 AM

  • How will check the space taken by a single table in a tablespace ?

    How will check the space taken by a single table in a tablespace ?
    dba_segments is giving the same values even if I truncate the table?
    Pls reply

    I need to know how can we find out the size of the table in the tablespace.use user_segments (bytes) column.
    How much bytes it has taken ?value from user_segments, bytes column
    If u delete records will the space be used for another table in same tablespace?No, it keep the space in the same table for future usage.
    How can we free that space ?truncate or drop the table and reduce the size from tablespace, if you want to reclaim the space from the tablespace, OS level.
    Jaffar

  • How to initilize the size of rows in an jtable in run time

    i am trying to retrieve data from a oracle database and display them in an jtable ,but i could not figure out how to increase the size of the table based on the number of records fetched in runtime. i also want to add checkbox for each enrty made in the jtable such that by cheching the box ,i could select the data and process it in futher frames. i use an netbean5 version for design.kindly give me giudence.

    Best thing to do is write your own table model and a Cell Renderer for the check box.
    Please follow the "How to use tables" tutorial.
    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

Maybe you are looking for

  • How to download file from application server to local file using tcode

    Hi, I want to download one report output in application sever(/temp/xxx) to local. But downloaded excel sheet improper format. In downloaded excel sheet having one complete record(12 fields)  in one cell. I want to separate it each field in each cell

  • How do I create an association in Folder Options?

    How do I create an association in Folder Options? I tried to start using the free version of Photoshop to organize pictures and (hopefully) set up the screen saver to view a group of pictures instead of them being randomly selected as Windows XP does

  • Cannot externalize security to shared services

    After installing brand new essbase 11 and migrating applications from essbase 7, we have cannot externalize security. Only some applications get created under essbase in shared services Application Group folder. EAS console gets the following error (

  • Photos in iphoto library not imported

    Whenever I start up iphoto, an error message appears "58 photos have been found in the iPhoto Library that were not imported. Would you like to import them?" When I click no, the following message appears: "The photos have been placed in the folder/.

  • Using 2 Monitors for PShop and Dreamweaver

    Hi, I use two monitors with an extended desktop. If only Photoshop OR Dreamweaver are open, everything is fine. I typically have whatever I'm designing on my main monitor and all of the tool pallettes on the right monitor. The problem is when I have