I'm designing a database schema, and I'm stuck on one part. Below is a simplified version of my schema. Could someone please explain why the following SQL:
CREATE TABLE Users (
UserID INT NOT NULL PRIMARY KEY,
FName VARCHAR(64) NOT NULL,
LName VARCHAR(64) NOT NULL,
UName VARCHAR(64) NOT NULL UNIQUE,
PWord CHAR(32) NOT NULL,
Role VARCHAR(13) NOT NULL
);
...
CREATE TABLE Sale (
SaleID INT NOT NULL PRIMARY KEY,
Book INT NOT NULL REFERENCES Books(BookID) ON DELETE NO ACTION,
Merchant INT NOT NULL REFERENCES Users(UserID) ON DELETE CASCADE,
Upload DATETIME NOT NULL,
Sold BIT NOT NULL,
Price DECIMAL(10, 2) NOT NULL,
Condition VARCHAR(9) NOT NULL,
Written BIT NOT NULL,
Comments VARCHAR(8000) NULL
);
...
CREATE TABLE Purchases (
PurchaseID INT NOT NULL PRIMARY KEY,
Buyer INT NOT NULL REFERENCES Users(UserID) ON DELETE CASCADE,
Merchant INT NOT NULL REFERENCES Users(UserID) ON DELETE NO ACTION,
Sale INT NOT NULL REFERENCES Sale(SaleID) ON DELETE CASCADE UNIQUE,
Time DATETIME NOT NULL
);
... results in this error, and how I can overcome it:
Msg 1785, Level 16, State 0, Line 38
Introducing FOREIGN KEY constraint 'FK__Purchases__Sale__25869641' on table
'Purchases' may cause cycles or multiple cascade paths. Specify ON DELETE
NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.
I would like to keep the ON DELETE CASCADE
for the Purchases.Sale
attribute, if possible.
Thank you for your time.