Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to achieve row level delete trigger by using cursor but when in trying yo delete the any row from table it tooks so long time.

I could not understand where exactly it stuck.

/****** Object:  Trigger [delStudent]    Script Date: 06/24/2010 12:33:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

CREATE TRIGGER [delStudent]
   ON  [dbo].[Student]
   FOR DELETE
AS 
DECLARE @Roll as varChar(50); 
DECLARE @Name as varChar(50);
DECLARE @Age as int;
DECLARE @UserName as varChar(50);

SELECT @UserName=SYSTEM_USER;

SET TRANSACTION ISOLATION LEVEL REPEATABLE READ;
BEGIN TRANSACTION;

declare CurD cursor for select roll, Sname, age from deleted    

open CurD

WHILE @@FETCH_STATUS = 0
 BEGIN
    INSERT INTO [dbo].[Audit]
            (roll,sname,age,userId)
    VALUES
            (@Roll,@Name,@Age,@UserName)
 END    
COMMIT TRANSACTION;
Close CurD
DEALLOCATE CurD
share|improve this question
what is the size of your DB and how many rows are there in "Students" table? – Samiksha Jun 24 '10 at 7:15
2  
There is no reason to use a Cursor here. Why are you using one? – Barry Jun 24 '10 at 7:23

1 Answer

I think you should transform your cursor in an insert-select sentence. I'm not sure this will solve your problem, but it's a good best practice anyway.

INSERT  [dbo].[Audit] (roll,sname,age,userId)
SELECT 'FIELDS FROM DELETED', SYSTEM_USER 
FROM deleted

Try to avoid cursors, and this will result in better performance.

share|improve this answer
3  
+1: Completely agree about the removal of the cursors. There is no need for it in this trigger. – Neil Knight Jun 24 '10 at 7:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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