Help On Insert Trigger
Oct 5, 2007Hi,
I need to update a createdDt field,
with currentdate only when there is a insert in the table.
Please help me with how to do this.
Thanks
Hi,
I need to update a createdDt field,
with currentdate only when there is a insert in the table.
Please help me with how to do this.
Thanks
Table 1
First_Name
Middle_Name
Surname
John
Ian
Lennon
Mike
Buffalo
Tyson
Tom
Finney
Jones
Table 2
ID
F
M
S
DOB
1
Athony
Harold
Wilson
24/4/67
2
Margaret
Betty
Thathcer
1/1/1808
3
John
Ian
Lennon
2/2/1979
4
Mike
Buffalo
Tyson
3/4/04
5
Tom
Finney
Jones
1/1/2000
I want to be able to create a trigger that updates table 2 when a row is inserted into table 1. However I€™m not sure how to increment the ID in table 2 or to update only the row that has been inserted.
A
ID
Name
1
Joe
2
Fred
3
Ian
4
Bill
B
ID
1
4
I want to be able to create a trigger so that when a row is inserted into table A by a specific user then the ID will appear in table B. Is it possible to find out the login id of the user inserting a row?
I believe the trigger should look something like this:
create trigger test_trigger
on a
for insert
as
insert into b(ID)
select i.id
from inserted i
where
--specific USER
This problem is being seen on SQL 2005 SP2 + cumulative update 4
I am currently successfully using the output clause of an insert statement to return the identity values for inserted rows into a table variable
I now need to add an "instead of insert" trigger to the table that is the subject of the insert.
As soon as I add the "instead of insert" trigger, the output clause on the insert statement does not return any data - although the insert completes successfully. As a result I am not able to obtain the identities of the inserted rows
Note that @@identity would return the correct value in the test repro below - but this is not a viable option as the table in question will be merge replicated and @@identity will return the identity value of a replication metadata table rather than the identity of the row inserted into my_table
Note also that in the test repro, the "instead of insert" trigger actually does nothing apart from the default insert, but the real world trigger has additional code.
To run the repro below - select each of the sections below in turn and execute them
1) Create the table
2) Create the trigger
3) Do the insert - note that table variable contains a row with column value zero - it should contain the @@identity value
4) Drop the trigger
5) Re-run the insert from 3) - note that table variable is now correctly populated with the @@identity value in the row
I need the behaviour to be correct when the trigger is present
Any thoughts would be much appreciated
aero1
/************************************************
1) - Create the table
************************************************/
CREATE TABLE [dbo].[my_table](
[my_table_id] [bigint] IDENTITY(1,1) NOT NULL,
[forename] [varchar](100) NULL,
[surname] [varchar](50) NULL,
CONSTRAINT [pk_my_table] PRIMARY KEY NONCLUSTERED
(
[my_table_id] ASC
)WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF, FILLFACTOR = 70) ON [PRIMARY]
)
GO
/************************************************
2) - Create the trigger
************************************************/
CREATE TRIGGER [dbo].[trig_my_table__instead_insert] ON [dbo].[my_table]
INSTEAD OF INSERT
AS
BEGIN
INSERT INTO my_table
(
forename,
surname)
SELECT
forename,
surname
FROM inserted
END
/************************************************
3) - Do the insert
************************************************/
DECLARE @my_insert TABLE( my_table_id bigint )
declare @forename VARCHAR(100)
declare @surname VARCHAR(50)
set @forename = N'john'
set @surname = N'smith'
INSERT INTO my_table (
forename
, surname
)
OUTPUT inserted.my_table_id INTO @my_insert
VALUES( @forename
, @surname
)
select @@identity -- expect this value in @my_insert table
select * from @my_insert -- OK value without trigger - zero with trigger
/************************************************
4) - Drop the trigger
************************************************/
drop trigger [dbo].[trig_my_table__instead_insert]
go
/************************************************
5) - Re-run insert from 3)
************************************************/
-- @my_insert now contains row expected with identity of inserted row
-- i.e. OK
Hi
I am trying to use multiple insert for a table T1 to add multiple rows.
Ti has trigger for insert to add or update multiple rows in Table T2.
When I provide multiple insert SQL then only first insert works while rest insert statements does not work
Anybody have any idea about why only one insert works for T1
Thanks
In case of a bulk insert, the “FOR INSERT� trigger fires for each recod or only once?
Thanks,
I would like to have the value of a field to be set the return value of
System.Web.Security.Membership.GeneratePassword(12,4)
every time a a row is inserted.
Can you guide with this?
Do you have some similar sample code?
Thank you very much
I would like to have the value of a field to be set the return value of
System.Web.Security.Membership.GeneratePassword(12,4)
every time a a row is inserted.
Can you guide with this?
Do you have some similar sample code?
Thank you very much
Should a insert trigger fire my update trigger as well? it fires it automatically after the insert? Is this a bug?
View 1 Replies View RelatedI have to create a insert trigger that calls a stored procedure usp_a
I need to pass two parameters to this stored procedure, value coming from the row inserted...
What is the syntax? Any help will be appreciated?
Hi.
Replication is not an option for me so I am trying to creat a trigger that will basically copy any new record to another database. I am using an on insert trigger and I get all records from the table inserted to the new db not just the new record.
Any ideas?
Thanks.
Bill
I am trying to write a pre-insert trigger. I want a row to be deleted first and then have the new row inserted. The end result is an insert/update statement. If anyone knows how to do this or has a better way, let me know, Please.
View 3 Replies View RelatedI am trying to write an insert trigger for the following problem. I have a table that contains a field (amount) that contains currency amount. Each row could be a record from a transaction in a different country. I would like each record to be converted into U.S. currency as it is inserted. So I created an other table that contains that exchange rate. How can I create a trigger that does this?
Tax Detail Table Exchange Table
Account# int Country char
Description char ExchangeRate Money
Amount money
Country char
I am working with MSS 6.5. Any and all help will be greatly appreciated.
Fidencio Peña
MSSQL 6.5
Is there any way to change some columns on inserted lines in ON INSERT trigger?
My notice: I try to find something about it in SQLBOOKS, but I found nothing.
It's possibly not TRUEEE!!!!! It wants me to grumble.
Thank for your answer.
Really simple question - I have the following trigger for the INSERT event for Tbl_B:
CREATE TRIGGER calc_total ON [dbo].[Tbl_B]
FOR INSERT
AS
DECLARE @VATRate AS decimal(19,2)
SET @VATRate = (
SELECT Val
FROM Tbl_Numeric_Refs
WHERE Ref = 'VATRate'
)
UPDATE Tbl_B
SET [Total] = ((@VATRate / 100) * [PriceA]) + [PriceA],
[VATRate] = @VATRateHow can I restrict the UPDATE within the trigger to the record(s) being INSERTed? Or am I over-complicating things, and should use a simple UDF for this instead?
Is it possible to pick up the value that is being inserted within the scope of a trigger? For example, if I were to run the following
INSERT INTO people (firstname, lastname)
VALUES ('George', 'V')
Would it be possible to access these values in a trigger before they are inserted?
CREATE TRIGGER trigger1
ON people
FOR INSERT
AS
IF EXISTS (SELECT 1 FROM table1 WHERE firstname = <the value being inserted>) BEGIN
Print '1'
END
ELSE BEGIN
Print '2'
END
GO
Rightio - this is probably a simple question for you SQL afficionados.I have written a trigger to update a master table with a CreateDate field. Simple enough I thought but it updates this field when the existing record is edited as well - not so good.This is how it looks like:CREATE TRIGGER CreateDateON MasterFOR UPDATE ASDECLARE@idMaster intSELECT @idMaster = idMaster from Insertedupdate Masterset CreatedDate = getdate()where idMaster = @idMasterGOWell I know I can write an IF statement that will basically say if the field is not null then only update - fair enough - but is there a simpler way to do this? Is there a way I need to write my CREATE TRIGGER statement that ONLY makes it run when it is a NEW INSERT ONLY?THANKS!
View 8 Replies View RelatedHi, i'm a newbie in writting trigger and stored procedure, need to get help on this:
I cannnot find anyway to run the trigger before insert, anyway to do this?
Thanks.
So... dear friends
I want to insert values to a table without firing the foreign key Constraint.
I think one way is to insert values into the parent table first and then perform the initial insert.
Is this possible with an INSTEAD OF INSERT Trigger or another way? If yes can you make an example? I want to check for dublicate values in the parent table too!!
Thanx!
I have an EMPLOYEE table and DEPARTMENT table, i have to create one to many relationship where one employee can be in many departments, please guide me
create table employee (e_id INTEGER, e_fname varchar(30), e_lname varchar(30), d_id INTEGER references department(d_id))
create table department (d_id INTEGER, d_name varchar(30))
but here the problem would be while inserting into employee table since i have no primary key... do i need to use trigger to insert the right values.
I'm having table as below,
StudentEnroll_Thismonth
TransID(AutoNumber) | StudentID | Subject | TransDate
------------------------------------------------
1 | 0021 | A890 | 4/1/2008
2 | 0021 | A830 | 4/1/2008
3 | 0025 | A890 | 4/1/2008
4 | 0025 | A112 | 4/1/2008
5 | 0026 | A545 | 4/1/2008
.............
.............
99 | 0021 | A900 | 4/30/2008
100 | 0021 | A902 | 4/30/2008
101 | 0025 | A900 | 4/30/2008
*The table above contains what subject taken by student
Let's say, GETDATE()=5/1/2008
If execute Trans-SQL below,
INSERT INTO StudentEnroll_ThisMonth(StudentID,Subject,TransDate) values(0023,'B328',GETDATE())
How the trigger looks like to make sure the data in table shown as follow,
StudentEnroll_Thismonth
TransID(AutoNumber) | StudentID | Subject | TransDate
-----------------------------------------------------------
120 | 0023 | B328 | 5/1/2008
*All the previous month record move to StudentEnroll_PreviousMonth automatically
StudentEnroll_PreviousMonth
TransID(AutoNumber) | StudentID | Subject | TransDate
------------------------------------------------
..................
..................
..................
200 | 0021 | A890 | 4/1/2008
201 | 0021 | A830 | 4/1/2008
203 | 0025 | A890 | 4/1/2008
204 | 0025 | A112 | 4/1/2008
205 | 0026 | A545 | 4/1/2008
.................
.................
301 | 0021 | A900 | 4/30/2008
302 | 0021 | A902 | 4/30/2008
303 | 0025 | A900 | 4/30/2008
Anyone can help me to show the trigger?
Hi there,
After some head scratching and much research and trying I am unable to figure out how to do the following Insert Trigger. Maybe it shows a flaw in my database design?
I have a user front end where a user can assign a certain job to be done and assign it to one and only one shift and one or more equipments to do this job on.
When user clicks on Assign button it will insert rows into Jobs table via an insert stored procedure. Jobs table has following fields : ShiftID, and a JobEquipmentID since Job can be done on one or more equipment. This field, JobEquipmentID, will refer to a child table JobEquipment. What is the best approach to update this secondary table? I need to update JobEquipmentID but I do not have it until I update JobEquipment table? CRAZY!!! HELP
I'm new to triggers but basically what I want to do is the following, I have 2 databases name Prod and Dev In the Prod database I have a table call Sales I’m only interested in the Sale_ID field. On the Dev database I have a table call QMD and once more I’m only interested in the Sale_ID field. What I would like to do is as soon as a new record gets created in the Sales table located in the Prod database I would like to grab the Sale_ID and create a new record on the QMD table of the Dev database with the same Sale_ID, and leaving the other field blank of the newly created record.
Thank You
I have an Insert Trigger on the table
I would like to know what would happen when record gets inserted from GUI(using stored procedure).
1. Record gets inserted into table , then trigger fires and stored procedure sends output to GUI.
2. Record gets inserted stored procedure sends output and then trigger fires.
Thanks
Dear all,
I have a table named Messages with fields
Id numeric
SmsBody varchar(4000)
mobilenumber varchar(15)
Status char(1).
and also there is another table named MsgHistory with fields
Id numeric
MsgId numeric -- (will be the Id from table Messages)
SmsBody varchar(4000)
Status char(1).
I need to work a trigger if any new message (record) is inserted into table Messages, at the same time the trigger should execute to insert MsgId and SmsBody to table MsgHistory from table Messages.
How I can write trigger for this?
with regards
Shaji
Hello,I'm new with triggers and I can not find any good example on how todo the following:I have two tables WO and PM with the following fields:WO.WONUM, VARCHAR(10)WO.PMNUM, VARCHAR(10)WO.PROBLEMCODE, VARCHAR(8)WO.LABORGROUP, VARCHAR(8)PM.PMNUM, VARCHAR(10)PM.PROBLEMCODE, VARCHAR(8)PM.LABORGROUP, VARCHAR(8)When creating a new record on WO I need to create an INSERT TRIGGERthat will pass the data below from PM to WO when WO.PMNUM = PM.PMNUMPM.PROBLEMCODE to WO. PROBLEMCODE andPM.LABORGROUP to WO. LABORGROUPCould anybody please show me how to do this or point me to the rightdirection, any help will be greatly appreciated.Thanks!Martin
View 9 Replies View RelatedHiI have a table - DebtorTurnover - consisting of 5 fields (ID, Date,Turnover, VAT, Netturnover). I get a file which I have to import everyknow and then, with new data. In this file I only get values for (ID,Date, Turnover and VAT). The import is working fine with the importwizard.The problem is, that I want to have the Netturnover computed at thetime of insert to equal [Turnover-VAT], but I don't really know how toas I'm new to these triggers.Could anyone help me I would appriciate this.BR / Jan
View 3 Replies View RelatedHi,
I've a SMS gateway that inserts SMS message into a varchar column. However, when it receives a SMS with single quote, it fails to insert into the varchar column. E.g., It's a...How's life ?....
I need help to find a workaround. Is there a equivalent of Before Insert trigger ? Also realised that the locgical 'inserted' table cannot be updated.
Advice pls.
I have a table that has a unique ID field. When a new record is
inserted into the table I would like to insert the ID into 3 other
tables. I am new to triggers and am not sure how to handle
this. Any idea how the trigger would be written?
Hi,
I have SSIS package that takes in data from an excel file and transfers it to a sql 2005 table.
I have a trigger set on the table in the sql 2005 db. However the trigger does not work when the package executes.
Am I missing something ?
Hi there
Hoping someone could steer me in the right direction with a trigger I need to create on the database, I've not done one before. Despite reading a lot on the topic, I can't seem to get the syntax right.
I have a table called 'SLOC'. This table has a field called 'Lines_In_New'.
The data to be inserted into 'SLOC' may or may not have a value for the 'Lines_In_New' field.
I only wish to insert the rows that contain a value in this field. So I figured a trigger before insert would do the job.
Something like:
CREATE TRIGGER sloc_trigger
BEFORE INSERT ON SLOC
FOR EACH ROW
IF Lines_In_New is NOT NULL THEN
insert the row
END IF;
I probably have this completely wrong, but its the bit inbetween the IF statement that I'm struggling with.
Could anyone help me please, I'd be grateful. Thanks.
Hi,
I am almost going crazy with this. I have a table that I bulk insert into from another database using VS2005.
I need to change the data in the records before committing the values in the fields. To do that I created an (Instead of Insert) trigger.
The trigger basically check conditions using IF statements and accordingly does the appropriate action, which is simply switching values between two fields (swapping).
My problem is that when the trigger fires, the logic within the if statements seem to overlap or something. The whole table fields are swapped rather than only the targeted ones.
Please tell me what is the proper syntax for having multiple (IF THEN ELSE) statements within a trigger.
Here is the code to be more specific:
Code Snippet
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[dbo_fwdcalls]
ON [dbo].[calls]
INSTEAD OF INSERT
AS
BEGIN
SET NOCOUNT ON;
IF EXISTS (SELECT joinonbehalfof FROM INSERTED
WHERE
((joinonbehalfof='10')
AND (duration > 0)
AND(LEFT(callingpartynumber,1)='8' OR LEFT(callingpartynumber,1)='9' )
AND (lastredirectdn BETWEEN '4020' AND '4024' OR lastredirectdn BETWEEN '5020' AND '5024')
))
INSERT INTO calls
SELECT [dateTimeOrigination]
,[origNodeId]
,[origSpan]
,[origIpAddr]
,[finalCalledPartyNumber]--Mark
,[origCause_location]
,[origCause_value]
,[origMediaTransportAddress_IP]
,[origMediaTransportAddress_Port]
,[destLegIdentifier]
,[destNodeId]
,[destSpan]
,[destIpAddr]
,[originalCalledPartyNumber]
,[callingPartyNumber]--Mark
,[destCause_location]
,[destCause_value]
,[destMediaTransportAddress_IP]
,[destMediaTransportAddress_Port]
,[dateTimeConnect]
,[dateTimeDisconnect]
,[lastRedirectDn]
,newid() as Pkid
,[originalCalledPartyNumberPartition]
,[finalCalledPartyNumberPartition]--Mark
,[callingPartyNumberPartition]--Mark
,[lastRedirectDnPartition]
,[duration]
,[origDeviceName]
,[destDeviceName]
,[origCalledPartyRedirectReason]
,[lastRedirectRedirectReason]
,[destConversationId]
,[origCallTerminationOnBehalfOf]
,[destCallTerminationOnBehalfOf]
,[lastRedirectRedirectOnBehalfOf]
,[joinOnBehalfOf]
FROM INSERTED
ELSE
IF EXISTS
(SELECT joinonbehalfof FROM INSERTED
WHERE
(joinonbehalfof='4')
AND (duration > 0)
AND(LEFT(callingpartynumber,1)='8' OR LEFT(callingpartynumber,1)='9' )
AND NOT (lastRedirectDn BETWEEN '4020' AND '4024' OR lastRedirectDn BETWEEN '5020' AND '5024')
AND (LEFT(lastRedirectDn,1) <> 'b')
)
INSERT INTO calls
SELECT [dateTimeOrigination]
,[origNodeId]
,[origSpan]
,[origIpAddr]
,[lastRedirectDn]--Mark
,[origCause_location]
,[origCause_value]
,[origMediaTransportAddress_IP]
,[origMediaTransportAddress_Port]
,[destLegIdentifier]
,[destNodeId]
,[destSpan]
,[destIpAddr]
,[originalCalledPartyNumber]
,[callingPartyNumber]--Mark
,[destCause_location]
,[destCause_value]
,[destMediaTransportAddress_IP]
,[destMediaTransportAddress_Port]
,[dateTimeConnect]
,[dateTimeDisconnect]
,[finalCalledPartyNumber]--Mark
,newid() as Pkid
,[originalCalledPartyNumberPartition]
,[callingPartyNumberPartition]
,[finalCalledPartyNumberPartition]
,[lastRedirectDnPartition]
,[duration]
,[origDeviceName]
,[destDeviceName]
,[origCalledPartyRedirectReason]
,[lastRedirectRedirectReason]
,[destConversationId]
,[origCallTerminationOnBehalfOf]
,[destCallTerminationOnBehalfOf]
,[lastRedirectRedirectOnBehalfOf]
,[joinOnBehalfOf]
FROM INSERTED
ELSE
IF EXISTS
(SELECT joinonbehalfof FROM INSERTED
WHERE
((joinonbehalfof='10')
AND (duration > 0)
AND(LEFT(callingpartynumber,1)='8' OR LEFT(callingpartynumber,1)='9' )
AND NOT (lastRedirectDn BETWEEN '4020' AND '4024' OR lastRedirectDn BETWEEN '5020' AND '5024')
AND (LEFT(lastRedirectDn,1) <> 'b'))
)
INSERT INTO calls
SELECT [dateTimeOrigination]
,[origNodeId]
,[origSpan]
,[origIpAddr]
,[lastRedirectDn]--Mark
,[origCause_location]
,[origCause_value]
,[origMediaTransportAddress_IP]
,[origMediaTransportAddress_Port]
,[destLegIdentifier]
,[destNodeId]
,[destSpan]
,[destIpAddr]
,[originalCalledPartyNumber]
,[callingPartyNumber]--Mark
,[destCause_location]
,[destCause_value]
,[destMediaTransportAddress_IP]
,[destMediaTransportAddress_Port]
,[dateTimeConnect]
,[dateTimeDisconnect]
,[finalCalledPartyNumber]--Mark
,NEWID() AS Pkid
,[originalCalledPartyNumberPartition]
,[callingPartyNumberPartition]
,[finalCalledPartyNumberPartition]
,[lastRedirectDnPartition]
,[duration]
,[origDeviceName]
,[destDeviceName]
,[origCalledPartyRedirectReason]
,[lastRedirectRedirectReason]
,[destConversationId]
,[origCallTerminationOnBehalfOf]
,[destCallTerminationOnBehalfOf]
,[lastRedirectRedirectOnBehalfOf]
,[joinOnBehalfOf]
FROM INSERTED
ELSE
INSERT INTO calls SELECT * From Inserted
END
Hi,
Is it possible to group all my update/insert (one table) ?
Cause I hope to have all the update/insert in one Trigger execution. I need to sum up some figures here.
I am using ASP.NET 2.0, SQLOLEDB and SQL 2005.
Please Help and Thank you.