Search Results igs_pe_mtch_set_data_all
Overview
IGS_PE_MTCH_SET_DATA_ALL is a configuration table within the Oracle E-Business Suite Student System (IGS) product family. Its documented purpose is to describe the data required for duplicate match set criteria. In operational terms, the table stores the individual data elements that participate in a duplicate-detection rule, together with the matching behaviour applied to each element. A "match set" defines how the institution identifies potential duplicate person records; each row in IGS_PE_MTCH_SET_DATA_ALL defines one attribute of that rule and how strictly it must agree.
The object carries an Oracle "Obsolete" product designation in the current release, and the ETRM implementation notes record that it is not implemented in the reference database. It should therefore be treated as a legacy or de-supported data structure in EBS 12.1.1 / 12.2.2 environments rather than an actively maintained table. Where it exists, it remains subject to the standard multi-org column ORG_ID and the standard WHO audit columns.
The ETRM metadata offers the heuristic Data Vault classification of "standalone." The natural modeling suggestion is that this table behaves as a satellite-like descriptor of the match set header, since it carries no downstream dependents of its own and its identifying information is supplied by its parent match set. This classification is inferred from FK structure only and should be validated against the actual implementation.
Key Information Stored
The documented physical schema contains 13 columns. The most significant are:
- MATCH_SET_DATA_ID — the surrogate primary key, enforced by IGS_PE_MATCH_SET_DATA_PK and also carried by unique index IGS_PE_MTCH_SET_DATA_U1. This is the business-key candidate for the row.
- MATCH_SET_ID — foreign key to IGS_PE_MATCH_SETS_ALL, identifying the parent duplicate match set to which this criterion belongs.
- DATA_ELEMENT — the person attribute being evaluated for duplication (for example a name or identifier element).
- VALUE — the literal or pattern value against which the data element is compared.
- EXACT_INCLUDE — flag controlling whether an exact match on this element qualifies as a duplicate.
- PARTIAL_INCLUDE — flag controlling whether a partial match on this element qualifies.
- DROP_IF_NULL — flag indicating whether the criterion is discarded when the element is null.
- ORG_ID — the operating unit / organization partitioning column.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns recording row provenance and change history.
Common Use Cases and Queries
Typical use is to inspect or report on the criteria that make up a given duplicate match set, and to audit how aggressively duplicate detection is configured.
- List all data elements for a match set:
SELECT data_element, value, exact_include, partial_include, drop_if_null FROM igs_pe_mtch_set_data_all WHERE match_set_id = :p_match_set_id ORDER BY match_set_data_id; - Identify match sets that rely on partial matching:
SELECT match_set_id, data_element FROM igs_pe_mtch_set_data_all WHERE partial_include = 'Y' AND org_id = :p_org_id; - Detect potentially weak criteria where null values suppress the check:
SELECT * FROM igs_pe_mtch_set_data_all WHERE drop_if_null = 'Y'; - Join to the header to produce a readable rule listing:
SELECT h.match_set_name, d.data_element, d.value FROM igs_pe_match_sets_all h, igs_pe_mtch_set_data_all d WHERE h.match_set_id = d.match_set_id;
These queries support configuration review, migration validation, and troubleshooting of duplicate-identification outcomes during student or person data conversion.
Related Objects
- IGS_PE_MATCH_SETS_ALL — the parent table; joined on MATCH_SET_ID = MATCH_SET_ID, supplying the match set header and name.
- IGS_PE_MATCH_SET_DATA_PK — the primary key constraint on MATCH_SET_DATA_ID.
- IGS_PE_MTCH_SET_DATA_U1 — unique index enforcing MATCH_SET_DATA_ID uniqueness.
- IGS_PE_PERSON / person-registry tables — the duplicate detection executed by these rules is applied against person records, making this table an input to person de-duplication rather than a dependent of it.
- IGS_PE_* match and duplicate APIs — the runtime duplicate-matching processes that consume the criteria defined here.
-
Table: IGS_PE_MTCH_SET_DATA_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the data required for duplicate match set criteria , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_MTCH_SET_DATA_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA_ALL, object_name:IGS_PE_MTCH_SET_DATA_ALL, status:VALID, product: IGS - Student System , description: This entity describes the data required for duplicate match set criteria , implementation_dba_data: IGS.IGS_PE_MTCH_SET_DATA_ALL ,
-
SYNONYM: APPS.IGS_PE_MTCH_SET_DATA_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_MTCH_SET_DATA_ALL, status:VALID,
-
VIEW: APPS.IGS_PE_MTCH_SET_DATA
12.1.1
-
APPS.IGS_PE_MTCH_SET_DATA_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_PE_MTCH_SET_DATA_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA_ALL, object_name:IGS_PE_MTCH_SET_DATA_ALL, status:VALID,
-
PACKAGE: APPS.IGS_PE_IDENTIFY_DUPS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PE_IDENTIFY_DUPS, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_MTCH_SET_DATA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_MTCH_SET_DATA_PKG, status:VALID,
-
View: IGS_PE_MTCH_SET_DATA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA, object_name:IGS_PE_MTCH_SET_DATA, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_MTCH_SET_DATA ,
-
PACKAGE BODY: APPS.IGS_PE_DUP_PERSON
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_DUP_PERSON, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_MTCH_SET_DATA_PKG
12.1.1
-
View: IGS_PE_MTCH_SET_DATA
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PE_DUP_PERSON SQL Statements
12.1.1
-
VIEW: APPS.IGS_PE_MTCH_SET_DATA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA, object_name:IGS_PE_MTCH_SET_DATA, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_002, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_DUP_PERSON
12.1.1
-
APPS.IGS_PE_DUP_PERSON dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
APPS.IGS_PE_MTCH_SET_DATA_PKG dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PE_MTCH_SET_DATA_PKG dependencies on IGS_PE_MTCH_SET_DATA_PKG
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_PE_MTCH_SET_DATA
12.1.1
-
APPS.IGS_PE_MTCH_SET_DATA_PKG dependencies on IGS_GE_GEN_003
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_INTERFACE_DTL_DSCP_V
12.1.1
-
APPS.IGS_AD_IMP_002 SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_INTERFACE
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_002
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,