Adding host name and the name of tablespace in the alarm e-mail

I'm trying to figure out how I can put the host name and the name of the table space in the e-mail alarms.

Rule name: _DBO - use of Tablespace

Scope of the rule: DBO_Cust_DBO_Cust_Tablespace_pct2 where nom_tablespace! like '% UNDO % '.

Tried the following queries to run the query Condition and did not

return scope.get("tablespace_name").get ("value")

return scope.get("tablespace_name").get ("name")

Do you have any suggestions on how to display the host name and the name of tablespace in the alarm email?

Using scope: DBO_Tablespace

hostname = scope.get('monitoredHost/name')

tablespaceName = scope.get ('tablespace_name')

Kind regards

Brian Wheeldon

Tags: Dell Tech

Similar Questions

  • I've been locked out of my email for a month! I remember the answer to my secret question and the default e-mail is the same address!

    I've been locked out of my email for a month! I remember the answer to my secret question and the default e-mail is the same address!

    Looks like you're talking about Hotmail? If so, please ask here.

    Windows Live Solution Center Forum Hotmail Portal
    http://windowslivehelp.com/product.aspx?ProductID=1

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • Storm blackBerry Smartphones and the alarm reset alarm screen

    I have a Storm 9530 with Verizon that I bought in February.  My phone works through a BES at work, but it's my personal phone.  I use my phone every day to wake up and, until last week, I never had problems.  At some point, setting the alarm on my phone started to challenge on the eve and he continued to do so through today.  For example, my alarm Wednesday was from 06:00 (the last day it worked correctly).  Wednesday night, I set my alarm to be awakened at 6:30 the next morning my phone alarm went off at 6:00, and the wallpaper in the home screen has been reset.  My alarm Friday from 06:30 was also and it went very well, but the wallpaper has reset.  Friday night, I set my alarm at 7:15, but it exploded at 6:30.  Saturday night, I set my alarm Sunday morning from 07:45 and the alarm went off at 07:15.  I talked to Verizon first Friday and they had put me on level vers.148 (I utilisais.75 with no problems) and setting the alarm continued to reset.  I spoke with a different tech Verizon today and they said it's a problem with BES pushing some type of reset on the phone.

    I'm new on display and thought that maybe someone could point me in the right direction.

    It seems that your BES profile is messed up. Can perform a backup, do a security wipe and perform a selective backup only the important things. Stay away from the options database. Download your IT Department to remove yourself from the BES, turn off your profile and you readd. Then re-enable the BES.

  • Adding more than one host ESX and the upgrade at the same time.  What is the order of preference of the operations here?

    We are budgeting for more licenses and hardware for 2014 and want to do immediately in January.  I am trying to decide what is the best order of operations for adding two vmware hosts additional to our current installation of vsphere and also upgrade our vsphere / esx 4.1 u3 for the latest and best.

    We have 3 Dell PowerEdge R710 running ESX 4.1 U3.  In this vmware cluster, there is a vcenter server 4.1 U3 virtual machine handle this.  The three servers are about 90% memory used so we add 2 additional servers.  Probably the Dell PowerEdge r.620 since we get up 2 in the space of a 710.  Storage is on a san EMC NX4 NFS which will become too but not yet, let's just deal with the vmware part.

    When adding additional r.620 2, should I install ESX 4.1 on them and join them to the existing cluster and THEN pass vcenter and each one esx?  I ask precisely because 90% of use on 3 current servers, I need 2 other servers to support the update operations take place.  They would be able to repel vmotioned vm while each host receives an upgrade at the same time.

    So which is the best way to go about adding of the hosts and the upgrade?  Would I add as 4.1, then they would be available as targets vmotion and so I have room to start the hosts one upgrade at a time?

    If I update vcenter to the latest version, it is comparable backwards and can manage the 4.1 hosts, but also hosts 5.x?  I guess version 5.5 is the last one I would get from VMWare?  It is right of ESXi, then, how is this ESX ESXi 5.5 4.1 upgrade?  How much storage space do I need for ESXi 5.5, as I'm dechatoiement out of these r.620 Dell and need to know what hard drive to put in.

    The steps that you must follow

    -Updated vCenter Server

    -Upgrade of the ESX hosts (because we do a updating of the material we will install 5.5 on our new guests and add them to the cluster and then dismantle our existing)

    -Upgrade VMWare tools

    -Update data warehouses

    ESXi 5.5 has these storage requirements:

    • Installing ESXi 5.5 requires a boot device is at least 1 GB in size. When booting from a local disk or SAN/LUN iSCSI, a 5.2 GB drive is necessary to allow for the creation of the VMFS volume and a scratch 4 GB partition on the boot device. If a smaller drive or logical unit number is used, the installation program attempts to allocate a region scratching on a separate local disk. If a local drive is not found, the scratch partition (/ scratch) is located on the disk virtual ESXi host, linked to the/tmp/scratch. You can reconfigure /scratch to use another drive or logical unit number. For best performance and memory optimization, VMware recommends that you leave no /scratch on the ESXi host ramdisk.
    • To reconfigure / scratch, see Configure the Scratch Partition of vSphere Client vSphere Installation and Installation Guide.
    • Because of the sensitivity of the I/O devices, USB and SD, the installation program does not create a partition scratch on these devices. Therefore, there is no tangible benefits to the use of the great features of USB/SD that ESXi uses only the first 1 GB. When installing on USB or SD, tent Setup devices to allocate a region scratching on a local disk or the data store. If no disk is local or data store, /scratch is placed on the virtual disk. You must reconfigure /scratch to use a persistent data store after the installation.
    • In Auto deploy facilities, Setup attempts to allocate a region scratching on a local disk or the data store. If no local disk or data store is found /scratch is placed on the virtual disk. You must reconfigure /scratch to use a persistent data store after the installation.
    • For environments that start from a San or use Auto Deploy, it is not necessary to assign a separate logical unit number for each ESXi host. You can co-locate areas scrape for several hosts ESXi on a single LUN. The number of hosts assigned to a single LUN must balance the size of the LUN and behavior I/O virtual machines.
  • Network host adapter and the status of the connection

    Does anyone know the property of the object to get the host 'Link Status' network adapter?

    I can get the name of the NETWORK adapter and the speed duplex but nothig on the status of the connection

    Thank you

    You can not get the status of link directly (as far as I know).

    You can detect the status of "link down" through the linkSpeed in PhysicalNic object property.

    You can use something like this

    (Get-VmHost  | Get-View).Config.Network.Pnic | %{
         if($_.LinkSpeed -eq $null){
              Write-Host $_.Device "Link down"
         }
    }
    

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Windows sharing does not host and guests, but between physical and host computers and the guests.

    Hi, I have a bit of a

    a bizarre with windows shared folders network, I am about to format and rebuild the host, but I figure why not ask you chaps, cos I would lov to see why it does not work.

    So I have a 64-bit Windows XP workstation host 7 but I also uninstalled and tried vm player 3.

    My many comments from winxp ops, vista32 and even a win7 can do all of the windows network shares but cannot share with the host country, they see the host in the "mshome" workgroup and can even ping, but when I try to connect to share on the host I get "host is not reachable. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have permissions.  The specified network name is no longer available. »

    My laptop (win7) and two other physical computers desktop (Windows XP & vista home) can see the host and can use the shared windows resources.

    The host can see the guest in the working group operating systems and I can ping, but once again impossible to use actions.

    I connect to the host, all comments and physical workstations with the same user name and password

    All guests are running in bridge. All firewalls and virus progs are disabled.

    If quick recap

    • You can take and provide each other actions and physical work stations, but not the host

    • The host can take and give shares with physical computers, but not guests

    • Physical computers can give and take action with guests and the host.

    If anyone has an idea about it, I would lov to hear it.

    See you soon

    This sounds like a manifestation of this problem of networking:

    http://communities.VMware.com/message/1409994#1409994

  • Host communication and the VM

    Hello

    My name is Todd.

    I have a laptop running Fedora 10 with VMWare Server 1.0.9 installation and operation of a Windows Server 2003 Virtual Machine.

    I'm doing some tests and I need to have the ability to host (Fedora 10) machine and the machine virtual (Windows Server 2003) to communicate with each other without using an external DHCP server.

    I am able to get them to communicate when there is a DHCP server present, but I need them to communicate internal when my laptop is not connected to a network.

    I tried to assign static addresses to the host and the virtual computer by using the same subnet, but they are unable to communicate.

    How can I get both communicate with each other without having to plug into a network?

    Here I made a DHCP server on my laptop and go in this way?

    Or can I use VMWare built to the DHCP server for this?

    I should also mention that I have the virtual machine using a bridged network design

    Any help would be greatly appreciated

    See you soon

    Todd

    Hi tood,.

    I do not now remember in VMWare Server, because I use my computer... but you must select in the network instead of bridge configuration configuring 'Host' only (if it's in the gentle vmware server)

    Otherwise there is a kind of terminals for LAN adapters: dummy terminals of LAN cables) which creates a loop when you plug it in to your local network connection: the pc will think that you have a cable connected and if you have a static IP on both machines in the same network... it will work

    I hope this will help

    Concerning

    If you find this or any other answer useful please consider giving points by checking the answer useful or appropriate.

  • When I add a bookmark, I get hundreds of multiple entries for the same bookmark in the recently added bookmarks folder and the bookmark tab. Difficulty?

    Adding a results of bookmark in 100's of entries for this bookmark on the Bookmarks tab and in the recently added bookmarks folder. The only way to remove them is to click and delete each separate entry? Any idea what is happening or how to fix it? Thank you.

    Start Firefox in Safe Mode {web link}
    While you are in safe mode;

    Type of topic: preferences #advanced< enter > in the address bar.

    Under Advanced, select General.
    Find and stop using hardware acceleration.

    Search web sites secure. Are there problems?

  • How to share between the host drive and the virtual machine in the car?

    I wanted to use my virtual XP to print using my old printer that the printer driver can only support XP. But I can't find a way to link my host and the virtual drive, because my file is located in the host drive.

    1 change the settings of the virtual machine

    2. go to the Options tab

    3. Select shared folders

    4. Select always enabled

    5 Add the folder that you want to use

    6. Select map as a network drive in Windows prompt

    If you find this information useful, please give points to "correct" or "useful".

  • Adding file control and the data file

    Hello

    I need to edit and add a control file and the data file to a database but its controlfile max and max datafiles parameters are reached. Is there any other step rather than create trace control file backup and change the db file and trace in nomount commissioning, please let me know.

    Oracle version: 10g
    platform: solaris.

    N °

  • When you delete an email, often both enamel stressed I want to delete and the following e-mail are both deleted, not one only. How to change that?

    When I delete an email which is highlighted and displayed on my screen, several times but not always, the following e-mail that is displayed is also deleted. It just started doing this a few weeks ago. How to return to the removal of all email that appears? I appreciate all help.

    Try a new/other mouse. Looks like yours is to give a double click when you just click.
    If you use the DEL key on the keyboard is only the removal of a message?

  • Problem with updates of security for MS Office Outlook 2003 (KB973705) and the Outlook junk mail filter (974771 KB)

    I had problems trying to install the update of security for MS Office Outlook 2003 (973705 KB) and update for MS Office Outlook 2003 Junk e-mail filter (974771 KB). I get the error code 646.

    First of all. What is this code? I looked around and could not know what it means. In the second place. I neither use or as Outlook and would like to know short of reinstalling Office, how can I disable / remove Outlook or disable updates for it?

    Hello rwhard, welcome.

    My suggestion would be to insert your disk in Microsoft Office, and then try to perform an automatic repair. Try this:

    1. click on START
    2. click on "Control Panel."
    3. double-click on "programs & features".
    4. click on "Microsoft Office...". "and select Edit
    5. Select "repair".... "in the context menu and go through the wizard
    6. after the repair, restart your computer and try to update again

    If this does not work, I would say that simply hide you the update if you are not using Outlook.

    1. click on START
    2 type "Windows Update" (without the quotes) and press enter
    3. search for updates, and then click to view will want as an option so that you can manually select the updates to be applied
    4 right-click the two updates, then select "hide."
    5. There is no button apply, so it just close the window, and then restart your computer

    Let us know if it works,

    Thank you! Ryan Thieman
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Z5 - connection to Smartband-SWR10 - and the alarm do not start schedule

    Hello

    In the last month, I knew that my phone and smartband guard abandon the connection. On the phone it shows like eather and x on the smartband icon, or SmartBand apps that said 'Connection' without that nothing happens. Sometimes just turn of the smartband at other times I need to restart the phone to get the connection to the top and the race.

    I have all the altest SW for Z5 (32.0.A.6.200) - SmartBand (05.00.12 - 1.7.0.873) and Lifelog (2.9.A.3.8)

    Since I use the smartband to wake me up in the morning, it's very enoying it does not work. So far I managed to wake up by myself...

    The phone is in charge all night and in the cradle, with the converted sound. The phone is on, with the exception of notifications. The phone is set to vibrate and make a soft noise. The Smartband is set to vibrate.

    If the connection is droped overnight, neighter the phone nor the smartband gives an indication of the alarm.

    I knew that the smartband and the phone vibrates, but there is no sound from the phone. Another version is that the phone is vibrating and making a noise, but the smartband does not vibrate.

    Before going to sleep, I check that the phone is set to the minimum, and that the connection to the smartband is OK.

    Good ideas to fix this problem?

    Hi again

    I didn't have any problems, fell to connedtions, after my Sunday relocations. So I think that the question could have been between LIfelog and Smartband software issue, but I'm not sure.

    So in short I belive the solution to my problem was to - uninstall both SmartBand and Liflog, to ensure that there is no software problems. Hope this might help others with the same problem.

  • code and the confirmation e-mail

    Hello

    How much time takes to receive the email confirmation of the purchase and the code? I did a school plan but I have still no product in my adobe ID. Why is this?

    Thank you

    1-2 days working pst after you submit verification of your qualification status, Adobe Creative Cloud training FAQ

  • where to find the host, port, and the sid for a database in oracle 11g?

    Hello

    I'm a newbie DBA. Earlier I had one task of creating user in pre prod DBs. the user has requested the creation of user name and granting the required roles and provide TNS entries also.

    I created the user and granted the required roles. Now my confusion is to provide the TNS entries. Weather shud provide listener.ora and tnsnames.ora?

    Help, please.

    Weather shud provide listener.ora and tnsnames.ora?

    You will need to provide details of tnsnames.ora.

    Also read Help! I can & #8217; t connect to my database & #8230. Ed Stevens, s/n

    HTH

    Anand

Maybe you are looking for

  • Satellite Pro 6100 has no Wlan

    Installed xp on a Satellite Pro 6100 and it has no wireless network adapter in the Device Manager to all, and it does not appear in "Found new hardware" or whatever it is.I downloaded the drivers, but I can't put anywhere.

  • Properties assistant DAQ does not open

    We use version 8.0.1 LV with daqmx version 8.7.1. Win Xp with a PCI-6025E, SCB-100 card is attached. I can measure the thermistor in the SCB-100 in the measurement and automation for the hardware seems to work OK. The problem is to use Daqmx in LV I

  • Shockwave and vista

    I recently bought a laptop with vista pre installed microsoft and to play games that I need to install adobe shockwave player what I did only to find out that vista has not started it and now I want to know how microsoft canjustify the fact that some

  • Lightroom on mobile with Windows 8

    HI, I have Adobe Photograper plan and I would use my lighroom and all functions of large additional synchronization to my PC, also on my tablet.  my tablet is a surface of microsoft pro 3 with Windows 8. I can only find Apps for Andorid and IOS. Is t

  • Recommendations for re - write

    We are modernizing Apex 3.2 4.2 soon and I think that it is a good time to review the design of applications.Our applications contain many tabular forms and updated and updated reports, insert, clear code occupies in the packages. For the moment, the