How to create your own alarm for agents of the oracle

Hello

I have about 100 agents to oracle

I have been asked to keep an eye on the UNDO tablespace

I used the rule of tablespaces that does the job but has a warning and a value critical low

I can't change these values

Then I look at creating the same rule as for storage space, but only to the UNDO tablespace where I could put different values for warnings and criticisms

Thank you for your help

Concerning

Courteous Philippe

Radio-Canada/Radio-Canada company

SR. DBA / admin Foglight.

Hello

what I suggest, is to copy the existing rule DBO - used Tablespace percentage, give it a name to identify it is a custom rule and change the scope of the rule so that it applies only to the UNDO tablespace:

Scope:

DBO_Tablespace where the content = "UNDO."

Because there is a custom rule that he will not be in the dashboard global admin. So I would create new registry custom variables to contain your thresholds based on the following:

DBO_TablespaceStorage-AllocatedUsedPct_Low

DBO_TablespaceStorage-AllocatedUsedPct_Medium

Then, modify the conditions of the rule to use these variables.

for example, putting warning

From:

condition = (#DBO_allocated_space_used_pct_for_rules # > = registry("DBO_TablespaceStorage-AllocatedUsedPct_Low"));

Return DBWC_RacAndSingleInstanceRuleFilter (scope, "BOD - Tablespace used percentage", "2", status);

TO:

#DBO_allocated_space_used_pct_for_rules # > = registry("DBO_TablespaceUNDOStorage-AllocatedUsedPct_Low")

Also update the message to your needs.

Tags: Dell Tech

Similar Questions

  • How to create my own PDF for others to fill in and sign? I bought the deluxe membership and I can't understand it.

    Please let me know how to create a fill and a sign. I just bought the subscription and the only thing it allows me to do is to download a file to fill in and sign, or convert to pdf format. I need to create my own complete and sign for my teaching and administrative staff.

    What exactly did subscribe you?

    Adobe PDF package can convert documents to PDF.

    Adobe FormsCentral can create forms to fill in zero or models.

    Adobe Acrobat can do both and more.

  • How to create your default desktop for all / some users?

    Using Vista business I want to create a desktop computer by default for all users. How can I do this?

    I have a machine that has a dozen accounts. Can I retroactively apply this desktop computer to some existing accounts?

    Thanks for thehlp

    Joe

    Discussions on the topic "Change the profile by default in Vista"
    http://social.technet.Microsoft.com/forums/en-us/itprovistasetup/thread/62ed66ad-71cd-43C3-83c0-5303d77176b8/
    by Heather

    "How to make a standard profile w / user by default.
    http://forums.techarena.in/Vista-Help/1065679.htm
    by Darrell Gorter [MSFT]

    How to create the default profile for Vista
    http://help.Lockergnome.com/Vista/create-Vista-default-profile--ftopict15825.html
    Darell Gorter mentioned here only taken methods supported to change the default user profile:
    "How to customize the local default user profile when you prepare a
    image of Windows Vista, Windows Server 2008, Windows XP, or Windows Server 2003"
    http://support.Microsoft.com/default.aspx?scid=KB; EN-US; 959753
    but when you go on the link says the Tip system is not for Vista, on Windows Vista title is missing.

    I hope I could help

  • How to create a single payment for invoices from the two suppliers who are related parties

    We use R12.1

    We have two suppliers; A and B, which are related parties.

    Purchase orders are sent to and the goods are received from A and B separately.

    A single payment is made to B.

    It is possible to do A do B failure to pay to the vendor for A and related B. This average bills of both A and B can be paid to B. But these bills and payments must be separated.

    Our requirement is to create a single payment for the invoices of both A and B.

    Hello

    I assume that you are already aware of and using the third-party beneficiary. See the Note 1674071.1, third party payments (check only), which describes a limitation in the use of third-party payments and making payments in a single cheque.

    Kind regards

    Cheryl

  • BlackBerry smartphones, create your own emoticons for BB Messenger

    Hey guys,.

    Just ask: is it still possible?

    Not possible yet...

  • Create your own smart shape for reactive projects

    Is it possible to create your own SmartShape for a sensitive project?

    I need to insert a button custom play/pause and thought I have insert a smart form (used as a button) on the first slide and timed for the rest of the project, but I would like the button to be my own and convert it to a smart form...

    For the time being reactive projects do not support forms free and personalized, crossing my fingers that they will soon be included. And maybe one day you'll be able to import the SVG as forms?

    When you say ' to be my own', why not use a picture of 'your' button and fill in the shape with this image? Rotate an Image in a button - Captivate blog

  • Create your own plugin/addon

    Some time ago I found a PDF by Jim Kring I believe, who gave all the throughs execution to create your own library, it appears in the palette, your own plugin and to do appears in the Tools menu, etc. Of course I don't bookmark and it was lost in cyber space. I found the site of NIs addon part, but all I want to do is create my own plugin to display either in the Tools menu or in the background. Someone can tell me where to start (or for this PDF would be nice too).

    Have a good weekend!

    Sorry I'm a little... little... slowwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww

    http://decibel.NI.com/content/docs/doc-5957

  • Create your own for hashset add() method

    Hello
    I am creating my own method for a hashset because I am pulling in data from another class.
    I did some tests with a junit and realize that my new method addPosition() does not work. Does anyone know where the problem lies?
    or if I write my wrongly junit test cases?
    Much appreciated!

    Note: position depends on an instrument, the price, the coast and the quantity called from another class... as can be seen in the junit.
    import java.util.HashSet;
    import java.util.Set;
    import java.util.Iterator;
    
    
    
    public class Portfolio  {
         
         Set<Position> post = new HashSet<Position>();
         
         protected Position _position;
         
         
         public Portfolio( 
                   Position position                   
              ){ 
              _position=position;
              }
         
         
         public void addPosition(Position position){
          post.add(_position);
         
         } }
    The code above is false as follows junit spent.
    public class test_Portfolio extends TestCase {
         public void test1() throws Exception{
    Portfolio portfolio = new Portfolio(null);
    Set<Position> post = new HashSet<Position>();
    assertTrue(post.isEmpty());
    assertTrue(post.size()==0);
    portfolio.addPosition(new Position(new Instrument (31),new Price(new Date(), new Dollars(80)), new Side(true) , new Quantity ((long)100)));
    portfolio.addPosition(new Position(new Instrument (21),new Price(new Date(), new Dollars(80)), new Side(true) , new Quantity ((long)100)));
    
    //The following assertTrue test passed, indicating that the new entry was not added. It should be a size()==2
    assertTrue(post.size()==0);
    //The following assertTrue tests passed, which should be what the above test should show if everything is added correctly
    post.add(new Position(new Instrument (31),new Price(new Date(), new Dollars(80)), new Side(true) , new Quantity ((long)100)));
    assertTrue(post.size()==1);
    post.add(new Position(new Instrument (21),new Price(new Date(), new Dollars(80)), new Side(true) , new Quantity ((long)100)));
    assertTrue(post.size()==2);
    }
    }
    Published by: 876247 on October 4, 2011 06:30

    876247 wrote:
    Does this mean that addPosition is not the link to the message?

    "Link to" means nothing in Java.

    You have an instance of your class portfolio. This object has a member variable named 'post' which is a reference to a value of Positions.

    Completely apart from that, your test method has a completely independent, independent local variable that just coincidentally happens to have the same name and type as this member variable to 'post' in the subject of your Position. If this confuses you, or if you were not aware that the two 'post' are completely foreign, then you'll want to study up on the differences between local variables and member variables. And as a proposal, you will probably need a refresher on members static vs static as well.

  • Create your own creations!

    Hello

    Im trying to create your own piece of art in flash work style.

    Try it Ive designed so that first select you one of the 3 buttons to choose what mud you want to use as a base.

    However, the next set of buttons refer to the color of this object, so there are 4 different (blue, red, pink and Brown) and the user selects one of by clicking on the appropriate button.

    However im strugling to figure out how do I know to which of the first options (what vase) the user has selected in the first place.

    Is there some kind of thing of time or line of a script that I could use to address this issue?

    Thanks for any help!

    If you use the calendar to display images, label executives with something suggestive.  for example, vase1 for the frame showing vase1.

    {yourvase1button.onRelease = Function ()}

    vaseLabel = "vase1";

    }

    then, at some point when you're ready to view vase1:

    gotoAndStop (vaseLabel);

  • Create your own ISO

    Using the USB Flash Drive install method / ISO to install Windows on the new Boot Camp partition.

    In OS X, prepared the USB like , flash drive.

    In OS X, when you download the ISO from the Microsoft Web site, it is automatically saved to the downloads folder.  Do you copy and paste the content of downloads folder on the USB flash drive?  There is an error message indicating that it cannot copy all of the files; is this correct?

    From the Apple website: create an ISO image for Windows - Apple Support installation media Boot Camp

    Create your own ISO

    Follow these steps to make a copy of your Windows DVD ISO or USB flash drive:

    4. Choose file > new Image, then select your Windows DVD or flash drive in the submenu.  [(Il y a trois choix dans la nouvelle Image: 1) (blank image, 2) Image Image in the folder, 3) of "Untitled".]  Which do you choose?]

    AppleTime wrote:

    Using the USB Flash Drive install method / ISO to install Windows on the new Boot Camp partition.

    In OS X, prepared the USB like , flash drive.

    In OS X, when you download the ISO from the Microsoft Web site, it is automatically saved to the downloads folder.  Do you copy and paste the content of downloads folder on the USB flash drive?  There is an error message indicating that it cannot copy all of the files; is this correct?

    2015 macs (based of your signature) do need an external Setup program. Please visit https://help.apple.com/bootcamp/assistant/6.0/#/bcmp173b3bf2 . If you manually build an installer, you will encounter installation problems. Are you unable to install Windows without a flash drive? You should put the entire folder downloads manually in the Flash Player, it may have more/more large files that can accommodate a FAT32 USB key.

    From the Apple website: create an ISO image for Windows - Apple Support installation media Boot Camp

    Create your own ISO

    Follow these steps to make a copy of your Windows DVD ISO or USB flash drive:

    4. Choose file > new Image, then select your Windows DVD or flash drive in the submenu.  [(Il y a trois choix dans la nouvelle Image: 1) (blank image, 2) Image Image in the folder, 3) of "Untitled".]  Which do you choose?]

    It is not required for your Mac. You have already an ISO from Microsoft. The goal is for Macs where the user has a physical DVD, but the model of Mac does not have an integrated optical drive.

    BCA must ask the location of the ISO (Documents is preferable downloads) and start download the support software and start the partitioning.

  • Photoshop Elements 12 - create your OWN custom shapes

    I was wondering if there was a way to create your own custom in Photoshop elements 12 shapes. Tutorials that I looked but I found only those for regular Photoshop in which they use the tool pen and paths window, something 12 elements do not seem...

    rm2425 wrote:

    I was wondering if there was a way to create your own custom in Photoshop elements 12 shapes. Tutorials that I looked but I found only those for regular Photoshop in which they use the tool pen and paths window, something 12 elements do not seem...

    Elements has much less features with vectors as the full Photoshop.

    That said, it is possible to create and work with your own shapes if you us different add-ons, in particular of the elements + (on items + , very affordable).

    Read the section 'Ways': paths

    To save your creations of vectors (for example with paths from selections), save your vector layer in a psd or tiff format that you can then use in new designs.

  • How to create a clean button for captioning

    Hello

    I created my own buttons for play, stop, etc the output. But I don't know how to create a button to display closed captioning.  I tried a few hours but I give up. What should I do? :

    First clik - captioning will appear.

    Second clik - captioning will disappear.

    And so on appear/disappear/appear/disappear

    Help please!

    Poul

    Take a look on: buttons in the form of rocking - Captivate 6 - Captivate blog

    Replace the variable cpCmndMute of cpCmndCC system and you will have the choice between different scenarios.

  • Adobe Muse (tutorial) how to create your first Web site isn't right?

    Hello

    I have a question I tried to follow the tutorials of bakery Katys (how to create your first Web site in adobe muse)

    now I'm after this one, Ant some things are not good, I think so.

    IM from Holland (so my English is not that good, but good enough to read, I hope, or my English sucks really...

    My next question is: wil someone do you Tutorial 2 and launch this project with me?

    I need to be sure if im wrong to the author of the tutorial, it's just frustration u get, I want to learn something and I do that sometimes I can't go further and then I'm looking at the screen for an hour

    You can fint the tutorial here http://helpx.adobe.com/pdf/muse_reference.pdf

    I would now like to soon

    TNX

    Please let us know if there is anything that you need help.

    Thank you

    Sanjit

  • How to create a file .eas for sprite sheets?

    Hello

    Does anyone know how to create a file .eas for sprite sheets.

    It looks like a data xml file that would normally correspond with a sprite sheet. I usually use automated sprite sheet software to create the xml data form. I don't see the option for .eas export file in the software of the packer of texture that I use.

    It would be convenient that Photoshop has the ability to export an eas... perhaps with a plugin.

    Thanks for your help.

    EAS file format is also a JSON format, but is specific on board animate. Currently, this spritesheet format can be generated from Flash Pro CC 2014.

    Spritesheets (image file with sprite of equal size stacked in the order) of other tools like packer of texture can also be imported in animate as the dialog box animate import Spritesheet support it. Production however you specify the rows/columns and parameters in the import of fill dialog box so that the sprites are created with precision.

    Plese do try it and let us know if it works for you.

    -Reynaud

  • How to create our own button to print the dashboard to PDF

    Hi Experts,

    Someone can tell me how to create our own button to print in PDF dashboards, and similarly to save, we create a button more. The one facing this type of requirement can.

    Thank you
    Malli

    CheminPortail = / shared, KeyBank, _portal, Test AND page = name1
    In your code below shud be the same portal path of your dashboard and page shud exactly equals name of the page you want to view in pdf format. It was just an example I gave you. Replace the 2 values and you are done

Maybe you are looking for