Profiler Object:Table-Based Statistics

From Melissa Data Wiki
Revision as of 02:46, 7 January 2015 by Admin (talk | contribs) (Created page with " ← Profiler Object Reference {| class="mw-collapsible" cellspacing="2" style="background-color:#f9f9f9; border:1px solid #aaaaaa; font-size...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

← Profiler Object Reference

Profiler Object Interface Navigation
Initialization
Object Information
Enumeration Listing and Parsing
Column Specification
Initiate Profiling
Data Input
Profiling
Table-Based Statistics
Column-Based Statistics
Column-Based String Statistics
Column-Based Numeric Statistics
Column-Based Date/Time Statistics
Column-Based Name Statistics
Column-Based State/Province Statistics
Column-Based Zip/Postal Code Statistics
Column-Based Country Statistics
Column-Based Email Statistics
Column-Based Phone Statistics
Iterators
Column-Based Value Frequency Table Iteration
Column-Based Value Length Frequency Table Iteration
Column-Based Value Pattern Table Iteration
Column-Based Value Date/Time Table Iteration
Column-Based Value SoundEx Table Iteration
Column-Based Word Table Iteration
Column-Based Word Length Table Iteration
Result Codes
Returned Result Codes
Result Codes


The table-based statistics should only be retrieved after ProfileData is called.

GetTableRecordCount

This function returns the number of records processed.

Syntax profiler->GetTableRecordCount();
C integer = mdProfilerProfilerGetTableRecordCount(profiler);
.Net integer = profiler.GetTableRecordCount();


GetTableRecordEmptyCount

This function returns the number of records with blank values for all columns. A blank value is not null and contains only spaces or no text at all.

Syntax profiler->GetTableRecordEmptyCount();
C integer = mdProfilerProfilerGetTableRecordEmptyCount(profiler);
.Net integer = profiler.GetTableRecordEmptyCount();


GetTableRecordNullCount

This returns the number of records having Null values for all columns.

Syntax profiler->GetTableRecordNullCount();
C integer = mdProfilerProfilerGetTableRecordNullCount(profiler);
.Net integer = profiler.GetTableRecordNullCount();


GetTableExactMatchDistinctCount

This function returns the number of unique records using an Exact Match matching critera. All data fields provided will be compared. Casing and punctuation will be ignored.

Syntax profiler->GetTableExactMatchDistinctCount();
C integer = mdProfilerProfilerGetTableExactMatchDistinctCount(profiler);
.Net integer = profiler.GetTableExactMatchDistinctCount();


GetTableExactMatchDupesCount

This function returns the number of duplicate records using an Exact Match matching critera. All data fields provided will be compared. Casing and punctuation will be ignored.

Syntax profiler->GetTableExactMatchDupesCount();
C integer = mdProfilerProfilerGetTableExactMatchDupesCount(profiler);
.Net integer = profiler.GetTableExactMatchDupesCount();


GetTableExactMatchLargestGroup

This function returns the size of the largest group of duplicate records using an Exact Match matching critera. All data fields provided will be compared. Casing and punctuation will be ignored.

Syntax profiler->GetTableExactMatchDupesCount();
C integer = mdProfilerProfilerGetTableExactMatchLargestGroup(profiler);
.Net integer = profiler.GetTableExactMatchLargestGroup();


GetTableContactMatchDistinctCount

This function returns the number of distinct records using Address, First Name and Last Name matching criteria.

The Contact Match matching rules used are:

  • Zip5 AND First Name AND Last Name AND Street Number AND Street Name (All have to match)
OR
  • Zip5 AND First Name AND Last Name AND PO Box (All have to match)

Note: The Profiler will parse data present in a single field such as an AddressLine or a FullName for matching purposes. (e.g., From an Address field containing “12 Main Street,” the Profiler will take the “12” as the Street Number and “Main” as the Street Name for its matching needs.

Syntax profiler->GetTableContactMatchDistinctCount();
C integer = mdProfilerProfilerGetTableContactMatchDistinctCount(profiler);
.Net integer = profiler.GetTableExactContactDistinctCount();


GetTableContactMatchDupesCount

This function returns the number of duplicate records using Contact Match described under GetTableContactMatchDistinctCount.

Syntax profiler->GetTableContacttMatchDupesCount();
C integer = mdProfilerProfilerGetTableContactMatchDupesCount(profiler);
.Net integer = profiler.GetTableContactMatchDupesCount();


GetTableContactMatchLargestGroup

This function returns the size of the largest group of duplicates using Contact Match described under GetTableContactMatchDistinctCount.

Syntax profiler->GetTableContactMatchDupesCount();
C integer = mdProfilerProfilerGetTableContactMatchDupesCount(profiler);
.Net integer = profiler.GetTableContactMatchLargestGroup();


GetTableHouseholdMatchDistinctCount

This function returns the number of distinct records using Address, and Last Name matching criteria.

The Household Match matching rules used are:

  • Zip5 AND Last Name AND Street Number AND Street Name (All have to match)
OR
  • Zip5 AND Last Name AND PO Box (All have to match)

Note: The Profiler will parse data present in a single field such as an AddressLine or a FullName for matching purposes. (e.g, From an Address field containing “12 Main Street,” the Profiler will take the “12” as the Street Number and “Main” as the Street Name for its matching needs.)

Syntax profiler->GetTableHouseholdMatchDistinctCount();
C integer = mdProfilerProfilerGetTableHouseholdMatchDistinctCount(profiler);
.Net integer = profiler.GetTableHouseholdContactDistinctCount();


GetTableHouseholdMatchDupesCount

This function returns the number of duplicate records using the Household Match matching strategy described under GetTableHouseholdMatchDistinctCount.

Syntax profiler->GetTableHouseholdMatchDupesCount();
C integer = mdProfilerProfilerGetTableHouseholdMatchDupesCount(profiler);
.Net integer = profiler.GetTableHouseholdMatchDupesCount();


GetTableHouseholdMatchLargestGroup

This function returns the size of the largest group of duplicate records using the Household Match matching strategy described under GetTableHouseholdMatchDistinctCount.

Syntax profiler->GetTableHouseholdMatchDupesCount();
C integer = mdProfilerProfilerGetTableHouseholdMatchDupesCount(profiler);
.Net integer = profiler.GetTableHouseholdMatchLargestGroup();


GetTableAddressMatchDistinctCount

This function returns the number of distinct records using Address only matching criteria.

The Address Match matching rules used are:

  • Zip5 AND Street Number AND Street Name (All have to match)
OR
  • Zip5 AND PO Box (both have to match)

Note: The Profiler will parse data present in a single field such as an AddressLine or a FullName for matching purposes. (e.g., From an Address field containing “12 Main Street,” the Profiler will take the “12” as the Street Number and “Main” as the Street Name for its matching needs.)

Syntax profiler->GetTableAddressMatchDistinctCount();
C integer = mdProfilerProfilerGetTableAddressMatchDistinctCount(profiler);
.Net integer = profiler.GetTableAddressContactDistinctCount();


GetTableAddressMatchDupesCount

This function returns the number of duplicate records using Address Match matching strategy decribed under GetTableHouseholdMatchDistinctCount.

Syntax profiler->GetTableAddressMatchDupesCount();
C integer = mdProfilerProfilerGetTableAddressMatchDupesCount(profiler);
.Net integer = profiler.GetTableAddressMatchDupesCount();


GetTableAddressMatchLargestGroup

This function returns the size of the largest group of duplicate records using Address Match matching strategy decribed under GetTableHouseholdMatchDistinctCount.

Syntax profiler->GetTableAddressMatchDupesCount();
C integer = mdProfilerProfilerGetTableAddressMatchDupesCount(profiler);
.Net integer = profiler.GetTableAddressMatchLargestGroup();