How to find flashback space

1) Could someone tell me the steps using GC how can I find how much flashback space I have allocated and how much is left.
2) Also if you can tell after removing old archives how can I reclaime space for flashback space.
Thx

Hi,
1) Could someone tell me the steps using GC how can I find how much flashback space I have allocated and how much is left.
Use v$recovery_file_dest and v$flash_recovery_area_usage.
2) Also if you can tell after removing old archives how can I reclaime space for flashback space.
Instead of removing old archives manually, set the retention policy in rman and depending upon the recovery windows the old archives will be obsolete and u can delete obsolete files through delete obsolete.
HTH
Regards
Jafar Ali

Similar Messages

  • How to find free space in a Tablespace?

    Hi,
    I have a limited access to objects in my database ( do not have access to many tables).
    I have been allocated 300GB of size in my tablespace which allows me to create my objects.
    Now, I want to find out how much of this tablespace size allocated to me have been used up. I do not have access to dba_data_files or dba_segments.
    Is there a way out for me? Could anyone show me a way please?

    This query will give you the required information but it makes use of DBA tables.
    SELECT B.TABLESPACE_NAME, TBS_SIZE SIZEGB, A.FREE_SPACE FREEGB
    from  (select tablespace_name, round(sum(bytes)/1024/1024/1024 ,2) as free_space
           from dba_free_space
           GROUP BY TABLESPACE_NAME) A,
          (select tablespace_name, sum(bytes)/1024/1024/1024 as tbs_size
           from dba_data_files
           group by tablespace_name) b
    where a.tablespace_name(+)=b.tablespace_name;
    However, you said that you are aware of your tablespace details so the above query can be modified to get the free space in your tablespace. Now I am using user_frees_space and not dba_free_space. Generally user* tables are and should be made accessible to the users.
    select  tablespace_name, round(sum(bytes)/1024/1024/1024 ,2) as free_space
    from    user_free_space
    where   tablespace_name = 'Your tablespace name'
    GROUP BY TABLESPACE_NAME;
    Ishan

  • How to find free space in an ArrayList...

    Hi,
    I have an ArrayList with data randomly assigned to different indexs of the ArrayList.
    I want to find out where the "gaps" are within the ArrayList... For Example There would be data in index 0,1,2,3,5 but not in index 4 . How would I go about finding this information.
    Thanks
    Chris

    jwenting wrote:
    kajbj wrote:
    Praveen_Forum wrote:
    I don't think we have to look into the free space's for ArrayList, as it is a dynamic growing arraylist you can just keep on adding the stuff in it takes care of filling all the empty spaces
    I am i right?No, it will not fill a gap.in fact it will, after a fashion.
    When you remove an item the remaining items are reshuffled to close the gaps.
    When you try to insert an item beyond the last position (so at list.size()+2 or greater) you will get an error, and the insert will fail.I was more thinking of a situation like this:
            strings.add("One");
            strings.add("Two");
            strings.add("Three");
            strings.set(1, null);
            System.out.println(strings);The element at index 1 will be null (a gap in my view), since remove won't cause a gap.
    Kaj

  • How to find free space in datafiles of perticular schema?

    hai,
    whats the query to find out free space in datafiles and index files related free space for perticular schmea?
    Regards
    dba

    There are lots of scripts available on Metalink which report free space in tablespaces/datafiles.
    Note: 1019999.6 - Script: To List Tablespace, Datafiles and Free Space
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1019999.6
    Note: 145531.1 - How to Determine Which Tablespaces Do Not Have Enough Free Space
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=145531.1

  • How to find remaining space left in the main window

    Hi Guys,
    In one of the smartform there is a MAIN WINDOW, in which a table will be displayed with 3 or 4 entries for each material. ( so that atleast 3 tables are displyed on a single sheet)
    Some times if the space  is not enough in the main window to display the contents of the table, the contents will be displayed in the next page. (Eg - 1 entry at the end of the page with the header at the end of the page and remaining entries int he next page with the header, which is satisfying the client's requirement)
    Problem is some times only header gets displayed at the end(end of the main windw), but so space is avaliable to display the contents, so the contents will be displayed in the next page with the header again,
    so the end user will be seeing a header at the end of the page with no contents,
    Is there any way to solve this(Not to dislay the header if the contents of the table cannot be displyed)
    Is there a way to find the remaining space in the main window dynamically so that if i am able to find the remaining space is JUST 1 LINE ( or CM  or INCHES), then I can put a condition for not displaying the header).
    Regards,
    Naveen.

    Hi,
    In smartforms, there is no other way to find the remaining height of the main window on a page.
    Hence, another way to solve this is to restrict the contents of the table with templates designed such a way that if there is header and items then display exactly a set of rows which would fit clearly on a page.
    Also make the folder as page protected.
    This is tedious but there is no other way i think as we also faced similar kind of issue.
    Regards,
    Ram

  • How to find Disk space information

    Hi...
    I want to know how or what API's to be used to get the disk information of the system that my programme is running.
    Thanks
    Sanesh

    what os are you using: i know of a tops script that runs in *nix, i wrote a java app to access that information.
    It shows load avg, disk free, mem free, uptime, and each fs disk free.
    I can post if u need this for *nix based apps.
    (Of course, this does distract from cross-platform stuff)
    newio

  • How to find free space in ASM

    Hi experts,
    we use oracle 11.1 rac and database with asm in redhat.
    I copied two query from online.
    query 1 as
    select name,total_mb,free_mb from v$asm_diskgroup;
    NAME TOTAL_MB FREE_MB
    DATA1 511993 132092
    FLSDISK1 1638394 712233
    but query 2 shows there are no space in ASM diskgroup
    QL> select d.name disk_name,g.name group_name,d.path,d.total_mb,d.free_mb
    2 from v$asm_disk d, v$asm_diskgroup g
    3 where d.group_number = g.group_number (+)
    4 ;
    DISK_NAME GROUP_NAME PATH TOTAL_MB FREE_MB
    FBDISK1 FLSDISK1 ORCL:FBDISK1 1638394 0
    DATADISK1 DATA1 ORCL:DATADISK1 511993 0
    which query do I need to use to check free space in asm diskgroup?
    Thanks
    JIm

    Hi,
    If you're looking freespace in diskgroup i believe you can use the first one
    second script is looking freespace per each disk
    Cheers
    FZheng

  • How to find the space used by a single table, a index on that table etc

    Can someone tell where to locate for the Extents used by a single table , index and other objects

    A large question implies a large answer, read the reference guide
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm
    and search dba_extents...
    Nicolas.

  • HOW to find out the tablespace space utilized by a patch after applying the

    someone has already applied the patch in test env before recording the tablespace size , so I cannot find out the figure in test env.
    So is there any general practice or general guidelines on it?
    hOW to find out the tablespace space utilized by a patch after applying the patch?
    Thanks & Regards,
    Sree.
    Edited by: 846579 on Mar 22, 2011 10:50 PM

    I think there is no direct way to determine what tablespace is utilized by a patch from the README file. You could check the content of the patch file and see what modules are affected (assuming there are changes and the database level), then query DBA_USERS (DEFAULT_TABLESPACE column) for those schemas which are updated by a patch. Or, you could check the size of the tablespaces before and after applying the patch and you will determine what tablespaces have been utilized (provided that the application services are down, and none of the application users is connected to the application).
    Thanks,
    Hussein

  • How to find the amount of free disk space on my pc....... in java of course

    how to find the amount of free disk space on my pc

    http://onesearch.sun.com/search/onesearch/index.jsp?qt=free+disk+space&subCat=siteforumid%3Ajava31&site=dev&dftab=siteforumid%3Ajava31&chooseCat=javaall&col=developer-forums

  • When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    OmniDiskSweeper is a free utility that checks HD space.
    FreeSpace cost $1 or is a free utility that checks HD space.
    SpaceControl is a free utility that checks HD space.

  • I don't see my hard drive in finder , i wanna know how much hard drive space i have.

    i don't see my hard drive in finder , i wanna know how much hard drive space i have.

    Check the settings in the General and Sidebar tabs of the Finder's preferences.
    (67071)

  • How can one find out how much hard drive space the apps and media are using?

    how can one find out how much hard drive space the apps and media are using?

    See Here  >  Where did my Disk Space go?
    And Here  >  The Storage Display

  • How to see available space in a blank dvd when burning in finder? It no longer display at the bottom of the finder window.

    How to see available space in a blank dvd when adding files in finder? It no longer displays at the bottom of the finder window.

    Choose Show Status Bar from the View menu.
    (113198)

  • How to find out how many space character in setence (string var) ?

    Dear all Master,
    I need Your help please.
    Topic:
    Script Editor.
    My System:
    -CUCM 7.0
    -UCCX 7.0 premium
    -Nuance recognizer 9.0
    Question:
    ABC = string var.
    ABC = "this is sample"
    2 space character in ABC string var.
    How to find out how many space character in ABC var ?
    Regards,
    Susanto

    Hi
    Create a int variable called whatever you want, then insert a SET step.
    Set the variable to the new int you created, and then paste this into the 'value' field:
    String[] myarray = teststring.split(" ");
    return myarray.length -1 ;
    Basically it splits the string into chunks each time it hits the " " character.
    This results in an array of the resulting chunks (i.e. words), which is one more than the number of spaces. -1 from that, and you have your int variable set to the number of spaces.
    Regards
    Aaron
    Please rate helpful posts...

Maybe you are looking for