If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > Insert multiple rows with a trigger that invoke a function

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-17-12, 21:21
all023 all023 is offline
Registered User
 
Join Date: Jan 2012
Posts: 1
Insert multiple rows with a trigger that invoke a function

Hello, I am having the following problem

Multiple rows to insert:
---------------------
insert into Customer(CustomerId,Name,Value)
select CustomerId,Name,Value
from CustomerTemp

Trigger in Customer table that invoke a function:
---------------------------------------------
alter TRIGGER [dbo].[Calculation] ON [dbo].[Customer]
AFTER INSERT
AS

update Customer
set Percentage = dbo.GetPercentage((select Value from inserted))
where CustomerId = (select CustomerId from inserted)


I'm getting the error for the multiple row.
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.

Is there a way to let me insert multiple rows, using the trigger that invoke a function ?
I am reading regarding cursor.

Please, thanks in advance for any help,

Regards, Paul.-
Reply With Quote
  #2 (permalink)  
Old 01-18-12, 04:13
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,280
Replace "update Customer
set Percentage = dbo.GetPercentage((select Value from inserted))
where CustomerId = (select CustomerId from inserted)" by
Code:
update U
set U.Percentage = dbo.GetPercentage(Inserted.Value)
FROM Customer AS U
	INNER JOIN Inserted ON
		U.CustomerId = Inserted.CustomerId
GetPercentage(), is that a User Defined Function?

But forget the trigger. Have a look at computed columns. I think that is what you really need.
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages

Last edited by Wim; 01-18-12 at 04:18.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On