Views [dbo].[OutstandingAlertView]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created11:10:04 AM Wednesday, March 07, 2007
Last Modified5:37:28 PM Monday, May 04, 2009
Columns
Name
server_addr
probe_addr
rsrcIndex
rsrcOtherIndex
rsrcType
fieldIndex
fieldDescShort
unit
value
threshold
severity
thresholdType
IntervalDateTime
IntervalDuration
endTime
alertDuration
Permissions
TypeActionOwning Principal
GrantSelectuniadmin
SQL Script
CREATE VIEW OutstandingAlertView AS
SELECT * FROM AlertView WHERE endTime IS NULL
    AND severity > 0
    AND IntervalDateTime > (SELECT MAX(start_time) FROM SessionLength)
GO
GRANT SELECT ON  [dbo].[OutstandingAlertView] TO [uniadmin]
GO
Uses