vote up 3 vote down star

I want to create one proc like below but it has error on syntax. Could anyone pointing out the problem?

Create PROCEDURE [dbo].[my_proc] AS

BEGIN

DISABLE TRIGGER dbo.tr_name ON dbo.table_name

-- some update statement

ENABLE TRIGGER dbo.tr_name  ON dbo.table_name

END

** Error Message : Incorrect syntax near 'ENABLE'.

flag

18% accept rate

3 Answers

vote up 3 vote down check

use the following commands instead:

ALTER TABLE table_name DISABLE TRIGGER tr_name

ALTER TABLE table_name ENABLE TRIGGER tr_name
link|flag
vote up -1 vote down

can you use sp_execsql to run this sql?

exec sp_execsql 'DISABLE TRIGGER dbo.tr_name ON dbo.table_name'

-- some update statement

exec sp_execsql 'ENABLE TRIGGER dbo.tr_name  ON dbo.table_name'
link|flag
I try already , it doesn't work – pang Sep 7 at 7:54
vote up 0 vote down

As the incorrect syntax is near 'ENABLE' are you sure its not the update statement which is causing the problem.

If you havent already, check the update statement in a seperate query window so that you eliminate it from being the cause of your error.

In my time working T-SQL, when an syntax error shows up, it can sometimes be on the line, or statement directly above where it is flagging up the problem.

link|flag
yes already do that, even i put only disable and enable statement, it also incorrect syntax – pang Sep 7 at 8:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.