14
votes
10answers
13k views
SQL Server “AFTER INSERT” trigger doesn’t see the just-inserted row
Consider this trigger:
ALTER TRIGGER myTrigger
ON someTable
AFTER INSERT
AS BEGIN
DELETE FROM someTable
WHERE ISNUMERIC(someField) = 1
END
I've got a table, s …
11
votes
18answers
1k views
Are database triggers evil?
Are database triggers a bad idea?
In my experience they are evil, because they can result in surprising side effects, and are difficult to debug (especially when one trigger fires …
8
votes
12answers
1k views
Database triggers
In the past I've never been a fan of using triggers on database tables. To me they always represented some "magic" that was going to happen on the database side, far far away from …
7
votes
10answers
406 views
What is the best way to maintain a LastUpdatedDate column in SQL?
Suppose I have a database table that has a timedate column of the last time it was updated or inserted. Which would be preferable:
Have a trigger update the field.
Have the prog …
6
votes
2answers
7k views
WPF Trigger for IsSelected in a DataTemplate for ListBox items
Hi,
I have a listbox, and I have the following ItemTemplate for it:
<DataTemplate x:Key="ScenarioItemTemplate">
<Border
Margin="5,0,5,0"
Background="#FF3C3B3 …
6
votes
9answers
482 views
How to constrain a database table so only one row can have a particular value in a column?
Using Oracle, if a column value can be 'YES' or 'NO' is it possible to constrain a table so that only one row can have a 'YES' value?
I would rather redesign the table structure b …
5
votes
6answers
456 views
Keeping tables synchronized in Oracle
Hi,
We're about to run side-by-side testing to compare a legacy system with a new shiny version. We have an Oracle database table, A, that stores data for the legacy system, and a …
5
votes
11answers
408 views
Getting Events from a Database
I am not very familiar with databases and what they offer outside of the CRUD operations.
My research has led me to triggers. Basically it looks like triggers offer this type of f …
5
votes
8answers
981 views
Asynchronous Triggers in SQL Server 2005/2008
I have triggers that manipulate and insert a lot of data into a Change tracking table for audit purposes on every insert, update and delete.
This trigger does its job very well, …
5
votes
6answers
254 views
What’s the best way for the client app to immediately react to an update in the database?
What is the best way to program an immediate reaction to an update to data in a database?
The simplest method I could think of offhand is a thread that checks the database for a p …
5
votes
8answers
4k views
SQL Server history table - populate through SP or Trigger?
In my SQL Server backend for my app, I want to create history tables for a bunch of my key tables, which will track a history of changes to the rows.
My entire application uses St …
5
votes
4answers
691 views
Are Sql Triggers synchronous or asynchronous?
I have a table that has an insert trigger on it. If I insert in 6000 records into this table in one insert statement from a stored procedure, will the stored procedure return befor …
5
votes
10answers
2k views
T-SQL - Is there a way to disable a trigger in the scope of a transaction?
In SQL Server 2005, is there a way for a trigger to find out what object is responsible for firing the trigger? I would like to use this to disable the trigger for one stored prode …
5
votes
11answers
883 views
Triggers vs Constraints
I'm trying to find out whether I should be using business critical logic in a trigger or constraint.
So far I've added logic in triggers as it gives me the control over what happen …
5
votes
5answers
427 views
Setting Up MySQL Triggers
I've been hearing about triggers, and I have a few questions.
What are triggers?
How do I set them up?
Are there any precautions, aside from typical SQL stuff, that should be taken …
