Accuracy Rules

Accuracy Rules

x


Accessing your Catalog

To get started using the Data Catalog, log in using the address and credentials provided by your Data Catalog service user or administrator.

To access your catalog, please follow these steps:

  1. Open Google Chrome web browser.

  2. Navigate to:

  1. Enter following email and password, then click Sign In.

Username: [email protected] (mapped to Business Steward role)

Password: Welcome123!


x

x

Valid Email Addresses

Scenario: Email addresses must follow standard format patterns.

Business Rule Configuration:

Rule Name: Email_Format_Accuracy
Description: Validates email addresses follow RFC-compliant format
Data Quality Dimension: Accuracy
Schedule: Daily
Target: Person.EmailAddress

SQL Query:

SELECT 
    COUNT(*) AS total_count,
    SUM(CASE 
        WHEN EmailAddress LIKE '%_@__%.__%' 
        AND EmailAddress NOT LIKE '%[^a-zA-Z0-9.@_-]%'
        THEN 1 ELSE 0 
    END) AS scopeCount,
    SUM(CASE 
        WHEN EmailAddress NOT LIKE '%_@__%.__%' 
        OR EmailAddress LIKE '%[^a-zA-Z0-9.@_-]%'
        THEN 1 ELSE 0 
    END) AS nonCompliant
FROM Person.EmailAddress

x

x

x

x

x

Last updated

Was this helpful?