vote up 0 vote down star

I was wondering if it is possible to create a super-type sub-type relationship in Oracle Designer. I would like to create something like this:

alt text

Thanks.

flag

67% accept rate

2 Answers

vote up 2 vote down check

In entity relationship diagrams subtypes are created by creating a new entity inside an existing entity like this example from InformIT.com:

ERD Diagram

This shows that ORDER has subtypes PURCHASE ORDER and SALES ORDER, i.e. every ORDER is either a PURCHASE ORDER or a SALES ORDER.

Subtypes can be nested to any depth.

Although this example doesn't show any, subtypes can also have their own attributes and relationships.

link|flag
Ok, that makes sense. I also found something called arcs. Do arcs perform the same function as what you mentioned above? – vrish88 Mar 21 at 16:59
No, arcs represent alternative relationships - e.g. an ORDER LINE may be for purchase of a PRODUCT or for purchase of a SERVICE (but not both). – Tony Andrews Mar 21 at 17:35
vote up 0 vote down

Note that if you're working in the Design Editor on the physical model, you have to implement as actual tables.

But take a look at the documentation for the Foreign Key property "Arc", which might help some. You can set it so that exactly 1 of several foreign keys can have a value.

For example, you might set up FK's from your supertype table to each subtype table. Then enforce that exactly one can have a value by using that property and generating the TAPI for the tables. (The drawback is that you'd have to insert the subtype information before the supertype.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.