How to exlcude tablespaces in Grid space usage monitoring

Hi all,
Here is my issue I need to exclude let say UNDO tablespases from begin monitored by Grid (space used and space free), one way is to select all other tablesapces that I do want to monitor but what If I have few hundred production databases and each have a number tablespaces, , is there way to exclude the tablespaces using wild card
ie ! %UNDO%.
Thanks Tom

I believe this is explained in ML Doc 392268.1 (How to - Exclude a Tablespace From The Tablespace Used (%) Metric)
HTH
Srini

Similar Messages

  • How do I check which colour space my monitor uses?

    When I go to Sys Prefs > Displays > Color and open the currently-used profile it says (among other things):
    Space: RGB
    Platform Apple
    Is the colour space used Apple RGB? I also don't find this info in System Information or Color Sync.
    I wish to assign Adobe RGB to harmonise with my scanning program. How do I assign another profile?
    TIA
    Philip

    Hi Danny,
    You can use the methods below to get the version/service pack level:
    1) Manage a webserver instance and click on "About this server"
    2) Look at the startup message in an error log
    3) ./start on the start script
    4) ./ns-httpd -v in the /<server root>/bin/https/bin directory

  • Monitor tablespace space usage, excluding UNDO

    Hi
    I tried to setup a monitoring template that enables me to monitor the space usage of all tablespaces but UNDO. It seems to me that Grid Control does not provide this built-in feature and I cannot customize. It monitors ALL tablespaces usage.
    If I create RULE, then I need to check all tablespaces names except UNDO. I have almost 200 databases. If doing that, it consumes huge amounts of time.
    Any solutions???
    Any input is appreciated.
    Kevin

    The current setting is
    Tablespace Space Used (%)
    UNDOTBS > 101 101 None Every 5 Minutes
    All others > 5 10 None Every 5 Minutes
    Does that mean that if UNDOTBS is 101% full, which never happens, I will get email.
    OEM will not evaluate the second condition if the first condition dissatisfies. If that is the case, I shall never get email.
    Then I think I shall reverse the order. When I tried to use [Reorder] button, I cannot reverse the order. Probably, OEM considers [All Others] as the last execution conditionl.
    Kevin

  • Hi.  I have Snap To Grid and By Kind enabled in Lion but it's not working.  When I trash an icon, instead of snapping the remaining icons to the By Kind grid, a space is left where the trashed icon was.  Any suggestions on how to get Snap To Grid working?

    Hi.  I have Snap To Grid and By Kind enabled in Lion but it's not working.  When I trash an icon, instead of snapping the remaining icons to the By Kind grid, a space is left where the trashed icon was.  Any suggestions on how to get Snap To Grid working?

    Where are you talking about the Desktop?
    I don't see where it is possible to set both Snap to Grid and By Kind they seem to be mutually exclusive.
    And then
    If I have Snap to grid set I get the behavior you describe. If I have By Kind set the icons stay together and close up the space from the deleted icon.
    regards

  • How to set threshold value for single tablespace in grid control 11g

    Hi,
    I want to set the threshold value for a single tablespace in grid control 11g,
    please provide me a navigation path.

    Sandy wrote:
    Can you please provide me the full navigation path?go to Targets --> Databases
    Select the Database you like to set this alert for
    Select link Metrics and Policy Settings

  • Host disk space usage

    Is there a way to get a report of available disk space for a host?
    We do not autoextend our tablespaces, so whenever we need to add more space
    , we have to shell into the OS (Unix) and run a "df -k" to see what mount points have space available.
    Is it possible to have the OEM Grid send us this info via notification and how?
    Thanks.
    Message was edited by:
    kaapie
    I found an answer: Table/View for Filesystem Space Available Metric?

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Oracle 11.2.0.3 - Lob space usage

    Hi Everyone,
    I would like some advise about how to interrupt LOB space usage given the following statistics. And would appreciate any feedback on whether my understanding of the following is correct:
    We have a table with BLOB column which is located on a LOB segment.
    This the DDL to create the table and the LOB:
    CREATE TABLE BLOB_TEST
      TEST_ID      NUMBER  NOT NULL,
      TEST         BLOB
    LOB (TEST) STORE AS (
      TABLESPACE  USERS
      ENABLE      STORAGE IN ROW
      CHUNK       8192
      RETENTION
      NOCACHE
      LOGGING
          STORAGE    (
                      INITIAL          64K
                      NEXT             1M
                      MINEXTENTS       1
                      MAXEXTENTS       UNLIMITED
                      PCTINCREASE      0
                      BUFFER_POOL      DEFAULT
                      FLASH_CACHE      DEFAULT
                      CELL_FLASH_CACHE DEFAULT
    TABLESPACE USERS
    RESULT_CACHE (MODE DEFAULT)
    PCTUSED    0
    PCTFREE    30
    INITRANS   10
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                NEXT             1M
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                BUFFER_POOL      DEFAULT
                FLASH_CACHE      DEFAULT
                CELL_FLASH_CACHE DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    The statistics for this table is as follows:
    The size of the test blob is:
    A.
    select sum(dbms_lob.getlength (test))/1024/1024 mb  from BLOB_TEST
    = 4860 mb
    Space above HWM ( using dbms_space.unused_space):
    B.
    TOTAL_BLOCKS = 778368
    TOTAL_BYTES = 6376390656
    UNUSED_BLOCKS = 0
    UNUSED BYTES = 0
    LAST_USED_EXTENT_FILE_ID = 12
    LAST_USED_EXTENT_BLOCK_ID = 3383296
    LAST_USED_BLOCK = 8192
    Space below HWM (using dbms_space.used_space):
    C.
    TOTAL_BLOCKS = 778368
    TOTAL_BYTES = 6376390656
    UNUSED_BLOCKS = 0
    UNUSED BYTES = 0
    LAST_USED_EXTENT_FILE_ID = 12
    LAST_USED_EXTENT_BLOCK_ID = 3383296
    LAST_USED_BLOCK = 8192
    Unformatted Blocks = 0
    FS1 Blocks = 0
    FS2 Blocks = 0
    FS3 Blocks = 0
    FS4 Blocks = 0
    Full Blocks = 777114
    Using the above, this is what I'm interrupting and need your help on this to make sure that this is right.
    From A, the total size of the test blob data is:  4806 MB.
    From B, the amount of free space ABOVE HWM is 0. This is because there is 0 in the unused_blocks.
    From C, the amount of free space BELOW HWM is 0, because all the FS's are 0 and so is UNUSED_BLOCKS as well.
    The amount of full blocks = 777114 blocks. This means that 615168 blocks (from 4806MB) is for data.  The rest is for undo space as there is 0 for free space?
    In addition to this, 778368 - 777114 = 1254 blocks = 9.8 mb (approx) of? I'm not sure what is this.
    Am I on the right track here?
    Thanks

    Pavel wrote:
    Hello!
    I have Oracle 11.2.0.3 on Aix 64bit installed and see symptoms of bug 13443029 ,
    have I downgrade to 11.2.0.2 to appling the patch for fixing this bug ?
    README for *13443029*
    Patch Details
    Oracle Database 11g Release *11.2.0.2.0*
    ORACLE DATABASE Patch for Bug# 13443029 for AIX5L Platforms
    Released: 13 Jan, 2012Thanks and regards,
    PavelOpen SR . you will get help and send you patch if they think its need that .

  • PARALLEL LOAD - SPACE USAGE

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-13
    SCOPE
    8.1.6 이상의 Standard Edition 부터 지원이 되는 기능입니다.
    Subject: Parallel Load - space usage.
    I have put together a short summary of how Parallel Load handles
    storage allocation in 7.1 which I am going to send to a customer.
    This could also quickly turn into a bulletin or PR entry
    (if one doesn't already exist).
    I'd appreciate if people could review and give corrections/enhancements.
    Here is how storage allocation works with parallel loads.
    For each parallel loader session, Oracle
    1) creates a temporary segment with the INITIAL and NEXT
    from the table that is being loaded, and in the datafile
    designated by the FILE option.
    2) When a load is complete, the final extent used by that
    parallel load is trimmed back to the last block which it
    used.
    3) Lastly, the extents belonging to the temporary segments
    are then converted to extents belonging to the table
    being loaded.
    This creates a couple of problems:
    * If your INITIAL and NEXT are different for the table,
    then you will end up with multiple extents sized the
    same as INITIAL, which doesn't follow general table
    growth patterns.
    * Extent sizes are not predictable for the last extent of
    each load. This can lead to tablespace fragmentation.
    What to do about this?
    * Size INITIAL and NEXT to be the same.
    This will eliminate the first problem listed.
    * Oracle 7.2 will have a feature in to specify the storage
    parameters used by the parallel load (bug 187319):
    OPTIONS (STORAGE=(MINEXTENTS n
    MAXEXTENTS n
    INITIAL n K
    NEXT n K
    PCTINCREASE n))
    * Enhancement Request 236552 has been filed to allow the
    user to select no trimming of the extents.

    Hi Karen,
    The number of workprocess (Dialog/Background) could be reduced also by selecting the loading options in InfoPackage.
    In InfoPackage Processing tab, there are various loading options,
    PSA & Then into data target (Package by Package) - This option uses only one process at a time. One data package is lifted from the Source System by a background process to PSA, and then the same process lifts it from PSA to datatarget.
    PSA & data target in parallel (Package by Package) - This option uses two process at a time. One data package is lifted from the Source System by a background process to PSA, and then another process lifts it from PSA to datatarget. The first process same time, gets busy in lifting another package from Source System to PSA.
    The first option is good, but takes more time to load data than the second one, so there is a tradeoff.
    Also it is good if you use another process in process chain to activate the ODS instead of setting it up on automatic activation.
    Please let me know if you need any more help.
    Regards,
    Pankaj

  • Files icons size is 512 x 512 with maximum grid space???

    After updating from Snow Leopard to Lion all my files in the folders is rearranged and files icons size is 512 x 512 with maximum grid space. I adjusting each folder icon size back to normal but after reopening that folder all files is out of order again.  Is anybody experience same issue?
    Also I have brand new battery in my 17" MBP and OS Lion eat battery like a cake.

    I believe this has been brought up many times, aand no solution has been found.
    More Like This According to ASC
    File Vault Resize
    Re: Icon view in Finder - larger maximum icon size?
    dock applications smaller icons
    Re: change size of icons on Dock grid view
    Re: anyone know how to get lion to calculate all hd sizes in grid view?

  • When i sync my iPhone it says that there is 2.0 gb of photos on it...when there clearly ISNT!! how do i free up this space to use?

    When i plug my phone into sync it it is reading in the lower bar that i have 2.0GB of photos on my phone and when i go under the usage on my phone it is saying the same thing...but under the app there are no photos what so ever!! how do i free up this space to be able to use it?

    Why is this so difficult to figure out?
    The message is quite clear.  The size of the iTunes library is larger than the space available on the device.
    Stop attempting to sync the entire library to the device.
    Select the desired content to sync to the device.
    Sync.

  • Disk space usage by table

    Hi all,
    how do I determine disk space usage by table1, table2 ?

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I fill the unused space?

    Hi there,
                I have an issue whereby I can not get the screen to use the unused space on the side of my presenter area.
    I have a big gray empty section on the right hand side and this makes my charts too small in the middle.
    Can any one tell me how to use the entire space available?
    I have tried to resize the screen resolution , tried using presenter area only tried clicking and dragging it wider but cant seem to get it to fill the gray area on the right hand side.
    I have attached a chart to show you what I mean.
    Thanx

    Hi there,
                Thanx for the answer...the problem is my members do see this area...that screen shot was sent to me from a member.
    They all can see that gray area which is why I am trying to fix it.
    I am a complete newbie to this software and so am still trying to make head or tail of the multitudious manuals and tutorials...
    would it be possible for you to post a step for step how to maximize the area seen by the members? I have attached a chart here sent to me from the same member of another connect pro room that uses all the space, have a look at their space usage...its fills the box and their off stage area on the right is very much smaller than mine.
    thanx

  • How do I reclaim the unused space after a huge data delete- very urgent

    Hello all,
    How do I reclaim the unused space after a huge data delete?
    alter table "ODB"."BLOB_TABLE" shrink space; This couldn't execute with ora 10662 error. Could you please help

    'Shrink space' has requirements:
    shrink_clause
    The shrink clause lets you manually shrink space in a table, index-organized table or its overflow segment, index, partition, subpartition, LOB segment, materialized view, or materialized view log. This clause is valid only for segments in tablespaces with automatic segment management. By default, Oracle Database compacts the segment, adjusts the high water mark, and releases the recuperated space immediately.
    Compacting the segment requires row movement. Therefore, you must enable row movement for the object you want to shrink before specifying this clause. Further, if your application has any rowid-based triggers, you should disable them before issuing this clause.
    Werner

  • Audio Files space usage:  noise versus silence

    Continuing on from my recent Disk Usage thoughts:
    I've noticed that we arm a Logic track connected to a microphone, and begin recording the microphone from the very start of the song, even if the singer doesn't actually start singing until, say, bar 8.
    So in the Audio Region, we see a flatline waveform for the first 8 bars before they start singing.
    Turning my thoughts to disk space usage:
    I've just read the section in the manual that says 1 minute of monophonic audio recorded at 16-bit dynamic resolution and 44.1 kHz frequency consumes 5 Mb of hard disk space.
    Does 8 bars of silence use the same amount of disk space as 8 bars of singing? (I assume so - silence would be represented by, at 16-bit dynamic resolution, 16 digital zeros, whereas a sample of noise would 16 ones and zeros)
    Moving on - let's assume that a singer has just sang on a track and I have an Audio Region that shows the first 16 bars as being silent. If I'm correct, using the scissors tool and removing the first 16 bars of the Audio Region does not affect the underlying audio file (my understanding: Audio Regions are simply pointers to an underlying file).
    So how would I remove silence from the start of an underlying audio file? Do something in the Sampler (double clicking the Audio Region brings up something I think is called the Sampler)?

    Does 8 bars of silence use the same amount of disk space as 8 bars of singing?
    Yes, in this case.
    Audio Regions are simply pointers to an underlying file).
    Yes.
    So how would I remove silence from the start of an underlying audio file?
    Adjust the region to your liking, go to audio window, select unused, delete (just removes files or regions from session)
    Then select the file and hit optimize or select the file's used regions and create new, then delete old later.
    This is safer than optimizing the file, but ore steps.
    J

  • Videos Disk Space Usage

    Good morning,
    When I go to 'About this Mac' I see it says I've got 81 GB of videos on my Mid 2013 MacBook Air (OS X Yosemite 10.10.1), but I am sure I don't have that many, also because when I click on the videos folder in Finder it shows I've got about 10 GB of videos. I've deleted all my iTunes movies, even the folders on iTunes Media. How can I free this space?
    Thank you,
    Luis García

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for