Log in
::
Register
::
Not logged in
Search:
Home
Articles
Editorials
Forums
Scripts
Blogs
QotD
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Advertise
Write for us
Articles with tag
Triggers
Refine your search with one of the following additional tags (with number of items):
SQL Server 7, 2000
(11)
DTS
(2)
Advanced Querying
(1)
Performance Tuning
(1)
T-SQL
(9)
Indexing
(2)
Best and Worst Practices
(1)
Replication
(1)
Stored Procedures
(4)
Installation
(2)
constraints
(1)
UpdateGrams
(1)
Administering
(3)
Miscellaneous
(2)
Distributed Queries
(1)
Worst Practices
(1)
Backup and Recovery
(2)
Performance Tuning and Scaling
(2)
English Query
(1)
XML
(1)
Basic Querying
(2)
Security
(2)
Monitoring
(1)
XSL
(1)
Configuring
(2)
User-Defined functions
(2)
OpenXML
(1)
Search for
any
content tagged
Triggers
Items 1 to 20 of 22
Next 20 >>
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,238 reads
DML Trigger Status Alerts
When databases suddenly stop working, it can be for a number of different reasons. Human error plays a large part, of course, and the DBA needs to know what these various humans are up to. DDL triggers can help alert the DBA to unauthorized tampering with a production system, of course, but DDL triggers can't tell you everything. At some point, you will need to implement your own checks. Randy certainly reached that point!
Read more...
By
Additional Articles
2008/07/15
|
Source:
SimpleTalk
|
Category:
Triggers
Rating:
Rate this
|
Briefcase
|
1,734 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
|
36,279 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
|
36,279 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,424 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
|
36,279 reads
Using DDL Database Triggers
In this short demonstration, you'll learn how to use DDL database triggers to prevent changes to product and audit changes to comply with Sarbanes-Oxley and other change management requirements. Free registration required.
Read more...
By
Brian Knight
2006/07/20
|
Source:
Other
|
Category:
Triggers
Rating:
Rate this
|
Briefcase
|
2,777 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,372 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
|
9,855 reads
Triggers in SQL Server 7.0 and 2000 - What's New
This is the second of a two part series on how triggers work in the two latest versions of MS SQL Server. The first part dealt with what is common between the two versions. This article will detail what's been added to SQL Server 2000.
Read more...
By
Brian Kelley
2005/06/24 (first posted: 2001/09/03)
|
Source:
SQLServerCentral.com
|
Category:
Triggers
Rating:
|
Discuss
|
Briefcase
|
71,360 reads
Triggers in SQL Server 7.0 and 2000 - The Common Ground
This is a two part series on how triggers work in the two latest versions of MS SQL Server. Because there are some pretty significant additions in trigger functionality from 7.0 to 2000, we'll first need to look at what the two versions have in common. The second part to this series will look at the differences between the two MS SQL Server versions.
Read more...
By
Brian Kelley
2005/01/21 (first posted: 2001/07/31)
|
Source:
SQLServerCentral.com
|
Category:
Triggers
Rating:
|
Discuss
|
Briefcase
|
108,062 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,372 reads
Worst Practice - Triggering External Events
Andy Warren started his worst practice series some time ago with the intention of looking at the worst things you can do. Given that we may not always be able to implement the best practices, at least we can try to avoid doing things harm the system or decrease performance. This article continues the series and looks at an item I see mentioned in our discussion forum quite often, triggering external events. From a trigger.
Read more...
By
Steve Jones
2004/02/23
|
Source:
SQLServerCentral.com
|
Category:
Triggers
Rating:
|
Discuss
|
Briefcase
|
9,087 reads
Auditing Through Triggers
In this article by Robert Marda, he shows you how to setup a simple auditing system through triggers.
Read more...
By
Robert Marda
2004/01/16
|
Source:
SQLServerCentral.com
|
Category:
Triggers
Rating:
|
Discuss
|
Briefcase
|
14,232 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,187 reads
Testing for an Updated Column in a Trigger
The columns_updated function gives you the ability to easily test to see if specific columns were modified with less code than you might otherwise need to use. In this article Andy Warren demonstrates how to create a trigger that uses this function and points out some reasons why you may NOT want to use it!
Read more...
By
Andy Warren
2003/08/21
|
Source:
SQLServerCentral.com
|
Category:
Triggers
Rating:
|
Discuss
|
Briefcase
|
14,642 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:
(not yet rated)
|
Discuss
|
Briefcase
|
17,213 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,682 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,274 reads
Triggers in SQL Server 7.0 and 2000 - What's New
This is the second of a two part series on how triggers work in the two latest versions of MS SQL Server. The first part dealt with what is common between the two versions. This article will detail what's been added to SQL Server 2000.
Read more...
By
Brian Kelley
2005/06/24 (first posted: 2001/09/03)
|
Source:
SQLServerCentral.com
|
Category:
Triggers
Rating:
|
Discuss
|
Briefcase
|
71,360 reads
Items 1 to 20 of 22
Next 20 >>
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,424 reads
DML Trigger Status Alerts
When databases suddenly stop working, it can be for a number of different reasons. Human error plays a large part, of course, and the DBA needs to know what these various humans are up to. DDL triggers can help alert the DBA to unauthorized tampering with a production system, of course, but DDL triggers can't tell you everything. At some point, you will need to implement your own checks. Randy certainly reached that point!
Read more...
By
Additional Articles
2008/07/15
|
Source:
SimpleTalk
|
Category:
Triggers
Rating:
Rate this
|
Briefcase
|
1,734 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,238 reads
Copyright © 2002-2008 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use