Search Results school_of_interest_id




Overview

IGS.IGS_SS_INQUIRY is a table in the Oracle E-Business Suite 12.1.1 / 12.2.2 schema owned by IGS (the Student Systems / self-service product family). Per the ETRM metadata, the table "Holds Selfservice Staging Inquiry records" and is flagged Obsolete. It resides in the APPS_TS_INTERFACE tablespace with PCTFREE 10, a placement consistent with its role as an interface/staging object rather than a transactional core table. Records are populated by self-service recruitment and admissions channels (typically web inquiry forms), then staged for downstream processing before being resolved into the institution's operational student records.

Despite its obsolete designation, the table remains physically present and VALID, and is still referenced by several dependent child tables, which is why legacy reports, customizations, and extensions may continue to query it. From a Data Vault modeling perspective, the mined FK structure classifies this object as hub-leaning: INQ_INQ_ID acts as a durable business key for the inquiry event, while descriptive and flexfield attributes behave satellite-like. This classification is a heuristic suggestion, not a physical design mandate.

Because the table is obsolete, Oracle no longer recommends new development against it; persisted data typically represents historical self-service inquiry traffic retained for audit or migration purposes.

Key Information Stored

Common Use Cases and Queries

Typical usage centers on inquiry volume analysis, source attribution, and staging validation before migration. A count of inquiries by date:

SELECT TRUNC(inquiry_date), COUNT(*) FROM igs.igs_ss_inquiry GROUP BY TRUNC(inquiry_date) ORDER BY 1;

Attribution reporting joins person and source data:

SELECT i.inquiry_date, i.inquiry_source_type_id, i.how_knowus_id FROM igs.igs_ss_inquiry i WHERE i.inquiry_date BETWEEN :p_from AND :p_to;

A integrity check for orphaned staging rows uses the FK join to the person table:

SELECT i.inq_inq_id FROM igs.igs_ss_inquiry i, igs.igs_ss_inq_person_all p WHERE i.inq_person_id = p.inq_person_id (+);

Because the table is obsolete, assess row counts and last update timestamps before relying on it in production reporting.

Related Objects

  • IGS.IGS_SS_INQ_PERSON_ALL — Parent table; joined on INQ_PERSON_ID to resolve the inquiring person's details.
  • IGS.IGS_SS_INQ_INFO_REQ — Child table referencing INQ_INQ_ID; holds additional information requests.
  • IGS.IGS_SS_INQ_PROG — Child table on INQ_INQ_ID; captures programs of interest per inquiry.
  • IGS.IGS_SS_INQ_USET — Child table on INQ_INQ_ID; stores associated user/test data.

These children inherit the hub-leaning model: the inquiry ID is the shared key, and the surrounding columns supply contextual detail. Any migration or archival effort should account for all three child tables to preserve referential integrity.

  • TABLE: IGS.IGS_SS_INQUIRY 12.1.1

    owner:IGS,  object_type:TABLE,  fnd_design_data:IGS.IGS_SS_INQUIRY,  object_name:IGS_SS_INQUIRY,  status:VALID, 

  • TABLE: IGS.IGR_IS_INQUIRY 12.1.1

    owner:IGS,  object_type:TABLE,  fnd_design_data:IGS.IGR_IS_INQUIRY,  object_name:IGR_IS_INQUIRY,  status:VALID, 

  • 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'. ,