Btw, about not possible, I'm able to run this:

ALTER TABLE Customer
CONSTRAINT someName FOREGIN KEY
(
    [AdressID]
    [Mandator]
)REFERENCES Adress(
    [AdressID]
    [Mandator]
)
GO


The two tables look like:

TABLE Customer(
  PK Mandator
  PK CustomerID

Name
AdressID   //<--- foregin key to Adress Table

)

TABLE Adress(
  PK Mandator
  PK AdressID

Street
PLZ
)

So, whats the diffrence here? This works under SQL 2000. I'm really
confused right now.
Thank you for any assistance so far.

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to