Views [dbo].[anomalycommentview]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created12:32:06 PM Sunday, December 05, 2010
Last Modified12:32:06 PM Sunday, December 05, 2010
Columns
Name
ruleid
fullname
comment
score
active
id
SQL Script
CREATE VIEW "anomalycommentview" AS
       SELECT "a"."ruleid", "b"."fullname", "c"."comment", "c"."score", "c"."active", "a"."id"
       FROM "anomaly" "a", "secure_person" "b", "anomalychange" "c", "anomalylinkobject" "d", "personalias" "e"
       WHERE a.id = d.anomalyid AND d.objecttable = 'person' AND d.objectid = e.id AND e.personid = b.id AND c.anomalyid = a.id
GO
Uses