Schema Index

 

Table TD_TEACHING_GROUP in DWST@WHSE.ISC-AIT.UPENN.EDU

Tables
Teaching Group holds groups of schools which collaborate on particular courses and thus split the income from the course.
Col # Column Name Data Type Not Null? Data Def. Comments
1 TEACHING_GROUP_KEY INTEGER Y   The primary key of the table.
2 GROUP_DESC VARCHAR2(150 BYTE)     The description, containing a school code and a percentage for each school.

 

Indexes on TD_TEACHING_GROUP
Uniqueness Index Name Columns
UNIQUE SYS_C00511923 TEACHING_GROUP_KEY

 

Triggers on TD_TEACHING_GROUP
Trigger Name Status Triggering Event When Clause Trigger Type Body
TD_TEACHING_GROUP_PK_TRIG ENABLED INSERT   BEFORE EACH ROW
BEGIN

    SELECT TD_TEACHING_GROUP_PK_SEQ.NEXTVAL INTO :NEW.TEACHING_GROUP_KEY FROM dual;

   EXCEPTION
     WHEN OTHERS THEN
       -- Consider logging the error and then re-raise
       RAISE;
END ;

 

PK, UK, & Check Constraints on TD_TEACHING_GROUP
Name Type Condition Status Columns
SYS_C00511923 Primary Key   ENABLED TEACHING_GROUP_KEY

 

 

Granted Privileges on TD_TEACHING_GROUP
Column Grantee Grantable Privilege(s) Non-Grantable Privilege(s)
  ESTEMMLE   SELECT
  DWADMIN   ALTER, DELETE, INDEX, INSERT, REFERENCES, SELECT, UPDATE, ON COMMIT REFRESH, QUERY REWRITE, DEBUG, FLASHBACK
  YALINGX   SELECT
  DWST_SUPPORT   SELECT
  TUITION_DIST_RL   SELECT

 

--------- TD_TEACHING_GROUP does not reference any objects ---------

 

Objects which reference table TD_TEACHING_GROUP
Object Owner Object Name Object Type
DWST TD_COURSE_SECTION_GROUP Table (FK)
DWST TD_INSTRUCTOR_SECTION_FACT Table (FK)
DWST TD_STUDENT_REGISTRATION_FACT Table (FK)
DWST TD_TEACHING_SCHOOL_PERCENTAGE Table (FK)
DWST TD_TEACHING_GROUP_PK_TRIG Trigger