M
MikeC
The below tables have been added to an MSDE 2000 database. Two of the
tables, tblClassSchedule and tblRegistration, are children of tblEmployee.
tblRegistration also has a second relationship where it is a child of
tblClassSchedule.
I am having difficulty defining tblRegistration's *second* relationship in
MSDE 2000 because tblClassSchedule and tblRegistration are already related
to the same parent table. If I were building a Jet database, I would solve
the problem by adding another independent instance of tblEmployee to the
table relationships. I am unable to find a similar option in MSDE. I'm
assuming MSDE provides an alternative method to define the table's second
relationship. Can anyone tell me how to define tblRegistration's
relationship with tblClassSchedule in MSDE 2000?
1) tblEmployee
Fields:
EmployeeID (PK)
LastName
FirstName
etc.
2) tblClassSchedule
Fields:
SchedID (PK)
EmployeeID (FK) <-Here, employee is the instructor.
Description
etc.
3) tblRegistration
Fields:
RegID (PK)
SchedID (FK)
EmployeeID (FK) <-Here, employee is the student.
RegDate
etc.
tables, tblClassSchedule and tblRegistration, are children of tblEmployee.
tblRegistration also has a second relationship where it is a child of
tblClassSchedule.
I am having difficulty defining tblRegistration's *second* relationship in
MSDE 2000 because tblClassSchedule and tblRegistration are already related
to the same parent table. If I were building a Jet database, I would solve
the problem by adding another independent instance of tblEmployee to the
table relationships. I am unable to find a similar option in MSDE. I'm
assuming MSDE provides an alternative method to define the table's second
relationship. Can anyone tell me how to define tblRegistration's
relationship with tblClassSchedule in MSDE 2000?
1) tblEmployee
Fields:
EmployeeID (PK)
LastName
FirstName
etc.
2) tblClassSchedule
Fields:
SchedID (PK)
EmployeeID (FK) <-Here, employee is the instructor.
Description
etc.
3) tblRegistration
Fields:
RegID (PK)
SchedID (FK)
EmployeeID (FK) <-Here, employee is the student.
RegDate
etc.