Profiler Object:Table-Based Statistics: Difference between revisions
No edit summary |
No edit summary |
||
Line 148: | Line 148: | ||
*Zip5 AND First Name AND Last Name AND PO Box (All have to match) | *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. | 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.) | ||
{{ Object Syntax | {{ Object Syntax |
Revision as of 19:04, 2 February 2015
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 empty values for all columns. An empty value is not Null, can contain spaces, and has no string or value.
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(); |