Search Results inq_race_id
Overview
The IGS.IGR_IS_RACE table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Institutional Research (IGS) product family. Its primary function is to store race and ethnicity information for an inquirer, which typically refers to a prospective student or contact within the admissions and recruitment modules. The table acts as a junction entity, linking a person (inquirer) to one or more standardized race codes, thereby enabling the institution to capture and report on demographic diversity within its applicant pool. Its storage in the APPS_TS_INTERFACE tablespace suggests its role in processing and staging data related to external interactions or data imports.
Key Information Stored
The table's structure is designed to track race information with full auditability. The most critical columns include:
- INQ_RACE_ID: The system-generated, unique primary key for each record, populated from a sequence.
- PERSON_ID: A mandatory foreign key that uniquely identifies the inquirer, linking to the person master (e.g., IGR_IS_PER_ALL).
- RACE_CD: A mandatory code representing a specific race or ethnicity classification, as defined within the application's lookup values.
- STATUS: Indicates the processing or import status of the record, which is crucial for data integrity during batch operations.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Provide full audit trail capabilities.
- Concurrent Program Columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE): Track the last concurrent request that modified the record, essential for debugging and process tracking.
Common Use Cases and Queries
This table is central to demographic reporting and compliance. A common operational use case is validating or listing the race information for a specific inquirer, often during application review or for generating diversity reports. The unique constraint on PERSON_ID and RACE_CD ensures an inquirer is not assigned the same race code multiple times. A typical query to retrieve all race information for a person would be:
SELECT race_cd, status, creation_date
FROM igs.igr_is_race
WHERE person_id = :p_person_id
ORDER BY inq_race_id;
For reporting on the distribution of races among inquirers, a summary query joining to the person table would be used. The STATUS column is frequently queried to identify records pending processing (e.g., STATUS = 'PENDING') or those that failed import during data loads from external systems.
Related Objects
The table maintains defined relationships with other EBS objects, primarily through foreign key constraints. The documented relationship is:
- Foreign Key Reference: The PERSON_ID column in IGR_IS_RACE references a corresponding person identifier in the IGR_IS_PER_ALL table (or a similar person master). This enforces referential integrity, ensuring every race record is associated with a valid inquirer record.
- Primary Key Reference: The table's primary key, IGR_IS_RACE_PK (on INQ_RACE_ID), is referenced by other objects within the IGS schema, as indicated by the dependency information. These are typically child tables or views that require a unique link to a specific race record.
-
TABLE: IGS.IGR_IS_RACE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_IS_RACE, object_name:IGR_IS_RACE, status:VALID,
-
Table: IGS_RC_IS_RACE
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the Race information of an inquirer , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_IS_RACE
12.1.1
product: IGS - Student System , description: Stores the Race information of an inquirer , implementation_dba_data: Not implemented in this database ,
-
Table: IGR_IS_RACE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_IS_RACE, object_name:IGR_IS_RACE, status:VALID, product: IGS - Student System , description: Stores the Race information of an inquirer , implementation_dba_data: IGS.IGR_IS_RACE ,
-
Table: IGR_IS_RACE
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the Race information of an inquirer , implementation_dba_data: Not implemented in this database ,
-
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'. ,