dbo.SXAAMRule 
Default Table Name  SXAAMRule 
Definition  When VWF is not installed at that time rules related to Activity property are saved in this table. Every rule has rule name, rule description, rule sql definition and a unique identifier named RuleUID associated with it. 

dbo.SXAAMRule Columns 
ColumnName  Domain  Datatype  NULL  Definition 
Build    int  NO  Identifies the build number and patch level of the software that inserted/updated this row. The format is the Build number followed by 3 digits for the patch level which is typically 000. The build number is tied to specific versions of the software, e.g. Sunrise 15.3 is Build 5021, Sunrise 16.3 is Build 5503. 
TouchedBy    varchar(50)  NO  Information about the user that last updated the row. This will typically be the UserID (IDCode from CV3User table) and may be prefixed with an environment identifier followed by an underscore, e.g. b96d2bf5_jongmore. 
TouchedWhenUTC    datetimeoffset(3)  NO  The date and time that the row was last updated including the time zone offset from UTC, for example 2015-01-30 04:55:04.372 -05:00. The date and time is based on the Enterprise Time Zone. 
CreatedBy    varchar(50)  NO  Information about the user that created the row. This will typically be the UserID (IDCode from CV3User table) and may be prefixed with an environment identifier followed by an underscore, e.g. b96d2bf5_jongmore. 
CreatedWhenUTC    datetimeoffset(3)  NO  The date and time that the row was created including the time zone offset from UTC, for example 2015-01-30 04:55:04.372 -05:00. The date and time is based on the Enterprise Time Zone. 
Active    bit  NO  Denotes whether the row is active or not, 0 means the row has been soft deleted or deactivated. 
MSRowVersion    timestamp  NO  Optimistic lock identifier using rowversion datatype. 
RuleID(PK)    bigint  NO  Auto generated unique primary key value. 
RuleName    nvarchar(255)  NO  Name of the rule to be used. 
RuleSQLDefinition    nvarchar(max)  NO  This specifies the sql condition of the rule. This value is formed using the conditions used in the rule. Right operator of the rule condition is a comma separated values of either user name or security group. This has effect of creating little "Or"s in that one condition line. And operator is used in between two condition lines. 
RuleUID    uniqueidentifier  NO  This is the unique identifier associated with the rule. This value is referred into the activity table. 
RuleDescription    varchar(1000)  YES  Detail description of the rule. 
MSReplrowguid    uniqueidentifier  NO  Unique GUID used to support merge replication. 

dbo.SXAAMRule Primary and Unique Keys 
Key Name  Key Type  Keys 
SXAAMRulePK  PrimaryKey  RuleID