【发布时间】:2016-02-09 07:43:27
【问题描述】:
我想在使用触发器插入后插入一条记录,但它不能正常工作。 它在会计表上。 首先我写了触发器,我得到了这个错误: INSERT 语句与 FOREIGN KEY 约束冲突 数据库中发生冲突 语句已终止。 然后我找到了密钥并在那个表上写了触发器,然后我得到了新的错误: 此 sqltransaction 已完成它不再可用 sql server 这是触发器:
USE [Sepidar01]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Alter TRIGGER [INV].[CrmSelectInsertVWInvoiceItems]
ON [INV].[InventoryDeliveryItem]
After Insert
AS
BEGIN
SET NOCOUNT ON;
DECLARE @CustomerCode varchar(40)
DECLARE @InvoiceRef INT
DECLARE @Price decimal(19, 4)
DECLARE @CreationDate datetime
DECLARE @Quantity decimal(19, 4)
DECLARE @GuID uniqueidentifier
DECLARE @KalaCode int
DECLARE @BaseInvoiceItem int
SELECT @BaseInvoiceItem=(BaseInvoiceItem) FROM INSERTED
select @CreationDate AS [inv.CreationDate],@CustomerCode AS [dl.Code],@Price
AS [invitem.Price],@Quantity AS [invitem.Quantity], @KalaCode AS [itemst.ItemStockID]
from [Sepidar01].[INV].[InventoryDeliveryItem] as invent
join sls.InvoiceItem as invitem
on BaseInvoiceItem =InvoiceItemID
join sls.Invoice as inv
on InvoiceId = InvoiceRef
join acc.dl as dl
on inv.CustomerRealName like dl.Title
join inv.ItemStock as itemst
on invitem.ItemRef = itemst.ItemRef
where invent.BaseInvoiceItem = @BaseInvoiceItem
SELECT @GuID AS [bartar_newpaitientId]
FROM [192.168.0.15].[Bartar_MSCRM].[dbo].[bartar_newpaitientBase] as newPatient
where newPatient.bartar_CustomerCode = @CustomerCode
INSERT INTO [192.168.0.15].[Test_MSCRM].[dbo].[bartar_callcenterreportBase]
([bartar_callcenterreportId]
,[OwnerId]
,[statecode]
,[CreatedOn]
,[bartar_Date]
,[bartar_patientName]
,[bartar_Brand]
,[bartar_Paste]
,[bartar_Bag]
,[bartar_ACC]
,[bartar_NextDateSales]
,[bartar_name])
VALUES
(NEWID(),'315BE87D-0035-E511-80B5-0007E9498006',0,@CreationDate,@CreationDate,@GuID,0,0,0,0,@CreationDate,'System')
END
那么我该如何解决这个问题呢?
【问题讨论】:
-
标记使用的dbms,以获得更好的关注! (该代码看起来根本不像 ANSI SQL。)
-
我在视图中使用它而不是插入,既没有给出任何错误,也没有插入任何数据
-
你的触发器坏了。它假定在
inserted中正好有一行。实际上,可以有 0、1 或 多个 行。更喜欢编写一个直接引用inserted的INSERT ... SELECT语句。
标签: sql sql-server-2008 triggers insert