Well I looked up some examples and they had an if statement something similar to what i have..Is it wrong? If so, then what would be right way of inserting the update condition
No I dont get any errors when I update on the table.
Here is the syntax of the trigger.
CREATE TRIGGER ContacatLoadTableInsert
ON Main5.dbo.Part
FOR UPDATE
AS
IF UPDATE(Main5.dbo.Part.LSE_Complete_Date)
BEGIN
INSERT INTO SALESFORCEBK.dbo.Contact_Loadtest
(AccountId,
Birthdate...
Alright..here is my problem
1.Whenvever the field LSEComplete which is on table Part on database X get updated.
2.An update trigger should get executed.
3.The update trigger will import some of the fields from Part table and some of from other tables within Database X
(i.e there will multiple...
Hi,
I am trying to create an update trigger which will be triggered when a field named LSEComplete on the table named Part on database X get updated would import various fields associated with LSEComplete from more than one table on database X to a table called Contactloadtest on Database Y...
Scneario
We have a Salesforce application that is right now being implemented to enter placement information.We also have another home grown application where we will automatically populate the placement information coming from salesforce.
Issue
1. The placement information coming from...
Hi,
I created two seprate triggers for insertion and updates from a view on a database A to to multiple tables on database B.But when I tried to test the trigger by inserting records on the view on database A, the trigger did'nt do anything.Can anybody help me on this?
Insertion Trigger Syntax...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.