Multidomain MDM
- Multidomain MDM 10.5 HotFix 3
- All Products
Rule Type
| WHERE clause
| Examples
| Result
|
---|---|---|---|
Existence Check
| WHERE S.ColumnName IS NULL
| WHERE S.MIDDLE_NAME IS NULL
| Affected columns will be downgraded for records with middle names that are null. Records that do not meet the condition are not affected.
|
Domain Check
| WHERE S.ColumnName IN ('?', '?', '?')
| WHERE S.Gender NOT IN ('M', 'F', 'U')
| Affected columns will be downgraded if the Gender is any value other than M, F, or U.
|
Referential Integrity
| WHERE NOT EXISTS (SELECT <blank>’a’ FROM ? WHERE ?.? = S.<Column_Name>
WHERE NOT EXISTS (SELECT <blank> 'a' FROM <Ref_Table> WHERE <Ref_Table>.<Ref_Column> = S.<Column_Name>
| WHERE NOT EXISTS (SELECT DISTINCT 'a' FROM ACCOUNT_TYPE WHERE ACCOUNT_TYPE.Account_Type = S.Account_Type
| Affected columns will be downgraded for records with Account Type values that are not on the Account Type table.
|
Pattern Validation
| WHERE S.ColumnName LIKE 'Pattern'
| WHERE S.eMail_Address NOT LIKE '%@%'
| Downgrade will be applied if the e-mail address does not contain an @ character.
|
Custom
| WHERE
| WHERE LENGTH(S.ZIP_CODE) > 4
| Downgrade will be applied if the length of the zip code column is less than 4.
|