Same error still...
Main Topics
Browse All TopicsI have the following Trigger and I am getting error:
Msg 102, Level 15, State 1, Procedure COMPANY_COMP_COMPANYID, Line 15
Incorrect syntax near '='.
Msg 102, Level 15, State 1, Procedure COMPANY_COMP_COMPANYID, Line 17
Incorrect syntax near '='.
Msg 102, Level 15, State 1, Procedure COMPANY_COMP_COMPANYID, Line 19
Incorrect syntax near '='.
It has something to do with the if statements but I'm not sure...Help?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
ALTER TRIGGER [COMPANY_COMP_COMPANYID] ON [dbo].[Company]
FOR UPDATE
AS
DECLARE @flag as INT
IF UPDATE(comp_primaryuserid)
BEGIN
SELECT @flag = inserted.comp_custbitflag
FROM Inserted
--WHERE crm62.dbo.Company.comp_com
IF @flag = 1
UPDATE CRM62.dbo.Company SET comp_custbitflag = 2 WHERE crm62.dbo.Company.comp_com
IF @flag = 2
UPDATE CRM62.dbo.Company SET comp_custbitflag = 3 WHERE crm62.dbo.Company.comp_com
IF @flag = 3
UPDATE CRM62.dbo.Company SET comp_custbitflag = 3 WHERE crm62.dbo.Company.comp_com
END
If ur "IF @Flag = 2 " is wrongly typed use this , (you are setting the value to 3 if the @flag =2 )
ALTER TRIGGER [COMPANY_COMP_COMPANYID] ON [dbo].[Company]
FOR UPDATE
AS
DECLARE @flag as INT
IF UPDATE(comp_primaryuserid)
BEGIN
UPDATE dbo.Company
SET comp_custbitflag = inserted.comp_custbitflag
FROM dbo.Company
INNER JOIn INSERTED ON Company.comp_companyid = inserted.comp_companyid
END
Business Accounts
Answer for Membership
by: MuhammadKashifPosted on 2009-10-15 at 13:52:25ID: 25584787
Select allOpen in new window