SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 

Content with tags T-SQL, Triggers Rss

Refine your search with one of the following additional tags (with number of items):

SQL Server 7, 2000 (4)     DTS (2)     User-Defined functions (2)     OpenXML (1)    
Stored Procedures (4)     Indexing (2)     Advanced Querying (1)     Performance Tuning (1)    
Administering (3)     Installation (2)     constraints (1)     Replication (1)    
Backup and Recovery (2)     Miscellaneous (2)     Distributed Queries (1)     UpdateGrams (1)    
Basic Querying (2)     Performance Tuning and Scaling (2)     English Query (1)     XML (1)    
Configuring (2)     Security (2)     Monitoring (1)     XSL (1)    
   Items 1 to 13 of 13   
 

Comparing SQL Server constraints and DML triggers

Over the years, I have witnessed many developers being confused about when to use data-manipulation language (DML) triggers vs. when to use constraints.  Read more...
By Additional Articles 2008/07/23 | Source: Builder.com | Category: Triggers
Rating:  Rate this |  Briefcase | 1,730 reads

Row-By-Row Processing Without Cursor

If you are a SQL Server DBA, you realize that the performance of cursors is not great and they should be avoided where possible. One place it is difficult to avoid cursors is individual row processing within a trigger. Amin Sobati brings us a new article that shows just how you can avoid this.   Read more...
By Amin Sobati 2007/12/28 (first posted: 2006/12/07) | Source: SQLServerCentral.com | Category: Triggers
Rating: |  Discuss |  Briefcase | 37,124 reads

Row-By-Row Processing Without Cursor

If you are a SQL Server DBA, you realize that the performance of cursors is not great and they should be avoided where possible. One place it is difficult to avoid cursors is individual row processing within a trigger. Amin Sobati brings us a new article that shows just how you can avoid this.   Read more...
By Amin Sobati 2007/12/28 (first posted: 2006/12/07) | Source: SQLServerCentral.com | Category: Triggers
Rating: |  Discuss |  Briefcase | 37,124 reads

Trigger Trivia

From SQL Server trainer and guru Andy Warren, he are a few short nuggets that you might not realize about triggers.  Read more...
By Andy Warren 2007/11/13 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 6,726 reads

Checking a Trigger

By 2007/10/22 | Category: Triggers
Rating: (not yet rated) |  Discuss |  Briefcase | 3,536 reads

Row-By-Row Processing Without Cursor

If you are a SQL Server DBA, you realize that the performance of cursors is not great and they should be avoided where possible. One place it is difficult to avoid cursors is individual row processing within a trigger. Amin Sobati brings us a new article that shows just how you can avoid this.   Read more...
By Amin Sobati 2007/12/28 (first posted: 2006/12/07) | Source: SQLServerCentral.com | Category: Triggers
Rating: |  Discuss |  Briefcase | 37,124 reads

Stored Procedure vs Triggers

Performance tuning is an ongoing battle in SQL Server, but having a little knowledge up front when designing an application can greatly reduce the efforts. Do you know which performs better: stored procedures or triggers? There aren't many places where the two are interchangeable, but knowing the impacts of each might change the way you build an application. Read about this analysis by Vijaya Kumar.   Read more...
By G Vijayakumar 2006/03/31 (first posted: 2004/08/30) | Source: SQLServerCentral.com | Category: Performance Tuning and Scaling
Rating: |  Discuss |  Briefcase | 36,583 reads

Triggers for Auditing

Have you ever needed to audit your SQL Server 2000 database for changes to a table? A simple auditing solution is presented here by new author Tiago Silva using an INSTEAD OF trigger.   Read more...
By Tiago Andrade e Silva 2005/11/29 | Source: SQLServerCentral.com | Category: Triggers
Rating: |  Discuss |  Briefcase | 10,089 reads

Stored Procedure vs Triggers

Performance tuning is an ongoing battle in SQL Server, but having a little knowledge up front when designing an application can greatly reduce the efforts. Do you know which performs better: stored procedures or triggers? There aren't many places where the two are interchangeable, but knowing the impacts of each might change the way you build an application. Read about this analysis by Vijaya Kumar.   Read more...
By G Vijayakumar 2006/03/31 (first posted: 2004/08/30) | Source: SQLServerCentral.com | Category: Performance Tuning and Scaling
Rating: |  Discuss |  Briefcase | 36,583 reads

Bypassing Triggers

This articles covers a variety of techniques to let you bypass or conditionally execute code in a trigger based on criteria outside of the inserted/deleted tables. It also includes a contest that gives you a chance to win a copy of our book The Best of SQLServerCentral.com 2002!   Read more...
By Andy Warren 2003/11/24 | Source: SQLServerCentral.com | Category: Triggers
Rating: |  Discuss |  Briefcase | 9,360 reads

Review of SQL 2000 Fast Answers

A monster book at 980 pages, it's written in 'how-to' format and has a ton of good material. Andy gave it the once over for us and reports back - see what he thinks!   Read more...
By Andy Warren 2003/04/18 | Source: SQLServerCentral.com | Category: Installation
Rating: |  Discuss |  Briefcase | 17,383 reads

Creating your own sp_MSforeach stored procedure

This article shows you one of the most time saving stored procedure built into SQL Server and then shows you how you can modify it to affect additional objects like triggers. For example, after this article and the code in the article, you'll be able to disable every trigger in your system in one line of code.   Read more...
By Brian Knight 2002/06/17 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 11,948 reads

Review of SQL Server 2000 Programming (MSPress)

Andy sits down with an entry level book to see if he should use it at work as a teaching aid. Did he like it? Should you buy it? Read the review now!   Read more...
By Andy Warren 2002/06/04 | Source: SQLServerCentral.com | Category: Installation
Rating: (not yet rated) |  Discuss |  Briefcase | 6,301 reads
   Items 1 to 13 of 13   
 
Most popular

Trigger Trivia

From SQL Server trainer and guru Andy Warren, he are a few short nuggets that you might not realize about triggers.  Read more...
By Andy Warren 2007/11/13 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 6,726 reads

Comparing SQL Server constraints and DML triggers

Over the years, I have witnessed many developers being confused about when to use data-manipulation language (DML) triggers vs. when to use constraints.  Read more...
By Additional Articles 2008/07/23 | Source: Builder.com | Category: Triggers
Rating:  Rate this |  Briefcase | 1,730 reads

Row-By-Row Processing Without Cursor

If you are a SQL Server DBA, you realize that the performance of cursors is not great and they should be avoided where possible. One place it is difficult to avoid cursors is individual row processing within a trigger. Amin Sobati brings us a new article that shows just how you can avoid this.   Read more...
By Amin Sobati 2007/12/28 (first posted: 2006/12/07) | Source: SQLServerCentral.com | Category: Triggers
Rating: |  Discuss |  Briefcase | 37,124 reads