可能会导致循环或多重级联路径。请指定 ON DELET…

2018-06-17 22:39:44来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

错误提示:可能会导致循环或多重级联路径。请指定 ON DELETE NO ACTION 或 ON UPDATE NO ACTION,或修改其他 FOREIGN KEY 约束。

原因:自表连接(同一张表自己连接自己)不允许级联删除和级联更新。

一、sql语句

create table DataClass (
   CID                  nvarchar(6)          not null,
   ParentID             nvarchar(6)          null,
   CNAME                nvarchar(50)         not null,
   ENAME                nvarchar(50)         not null,
   DISCRIB              nvarchar(200)        null,
   DATATYPE             smallint             null,
   constraint PK_DATACLASS primary key (CID)
)
go

create unique index IX_DataClass on DataClass (
ENAME ASC
)
go

alter table DataClass
drop constraint FK_DataType_self
--报错:可能会导致循环或多重级联路径。请指定 ON DELETE NO ACTION 或 ON UPDATE NO ACTION,或修改其他 FOREIGN KEY 约束。
--alter table DataClass
--   add constraint FK_DataType_self foreign key (ParentID)
--      references DataClass (CID)
--         on update cascade
--go

--改为:
alter table DataClass
   add constraint FK_DataType_self foreign key (ParentID)
      references DataClass (CID)
         on update NO ACTION
go

 

二、发现

on update NO ACTION 其实可以省略,因为默认有这种机制。

内容如下:

USE [Ecology]
GO

ALTER TABLE [dbo].[DataClass] WITH CHECK ADD CONSTRAINT [FK_DataType_self] FOREIGN KEY([ParentID])
REFERENCES [dbo].[DataClass] ([CID]) 
GO

ALTER TABLE [dbo].[DataClass] CHECK CONSTRAINT [FK_DataType_self]
GO

 

sqlserver自动省略了 on update NO ACTION


sql约束可以修改为:
alter table DataClass
   add constraint FK_DataType_self foreign key (ParentID)
      references DataClass (CID)
go

在PowderDesigner中,也不用设置。

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:csharp: Setting the value of properties reflection

下一篇:C# json反序列化 对象中嵌套数组 (转载)