Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

     For each class, a student will have one of these records. This does not mean that the student is enrolled. For that, the field STDNT_ENRL_STATUS must be checked. If a student is enrolled, the status will be 'E'; if a student is waitlisted for a class, the status will be 'W'; if the student was enrolled and subsequently dropped the class, the status would be 'D'. Therefore, you must check the STDNT_ENRL_STATUS for 'E' to determine in which classes a student is enrolled or even if this is an enrolled student for the term.  

     STDNT_ENRL does not contain much is missing some class information, such as subject, catalog number or and description. For this detail, you must join STDNT_ENRL to CLASS_TBL, which contains that class information. Or, instead of using STDNT_ENRL, use the view CLASS_TBL_SE_VW, which joins STDNT_ENRL to CLASS_TBL for you.

...


E) Other related tables which contain important information are:

  1. ACAD_CAREER
  2. INSTITUTION
  3. STRM

Another field which should be considered as a key is STDNT_CAR_NBR, which is a key in ACAD_PROG. In our environment, a student may have multiple careers at the same institution, so this field is important.
STDNT_CAR_TERM keeps a running total of term and career information: term and career GPAs; term and career credits taken and passed for GPA, non-GPA, financial aid; academic level, etc. One important field is UNT_TAKEN_PRGRSS. A positive value in this field means that the student is enrolled. If the student is enrolled (STDNT_ENRL) in a three-credit class, UNT_TAKEN_PRGRSS will be three. If the student is enrolled (STDNT_ENRL) in four three-credit class, UNT_TAKEN_PRGRSS will be twelve. Of course, this is not always a reliable test of enrollment. A student could be enrolled in non-credit classes, and therefore be considered an enrolled student but UNT_TAKEN_PRGRSS would be zero.

 

 

 

  1. PROG_TBL – details about the program.
  2. ACAD_PLAN_TBL – details about the plan.
  3. ACAD_SUBPLAN - the subplan table, which gives the student's concentration.  ACAD_SUBPLAN is owned by ACAD_PLAN.  The six keys of ACAD_PLAN are the same as the first six of ACAD_SUBPLAN.  Subplans are optional, so you need to join ACAD_SUBPLAN to ACAD_PLAN with an outer join
  4. Other related tables which contain important information are:
  5. ACAD_PROG_TBL – details about the program.
  6. ACAD_PLAN_TBL – details about the plan.