sorry, I'll try explain myself a little better. I should have said they'd be four entities. It's been a long day...
-Servers-
ServerID (PK)
HostName
IP
-Services-
ServiceName (PK)
Port
-Paring-
ServerID (FK)
Service (FK)
So the paring table will match what server hosts what service(s). I now need a forth table that will list service dependencies. Something along the lines of:
-Dependencies-
ServerA (FK)
ServerB (FK)
Will an entity allow me to have to FK fields going to the same field in another entity? Is there a better way of acheiving this?
Note: There'll probably be more fields per entity, this is just a basic example.
Thanks
