Tagged Questions
Triggers are rules, that when evaluate to true perform one or more actions.
60
votes
23answers
5k views
Are database triggers evil? [closed]
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 another). Often ...
26
votes
10answers
105k 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, someTable, and I'm ...
21
votes
5answers
20k views
Definitive way to trigger keypress events with jQuery
I've read all the answers on to this questions and none of the solutions seem to work.
Also, I am getting the vibe that triggering keypress with special characters does not work at all. Can someone ...
19
votes
5answers
20k views
How to find a text inside SQL Server procedures / triggers?
I have a linkedserver that will change. Some procedures call the linked server like this: "[10.10.100.50].dbo.SPROCEDURE_EXAMPLE". We have triggers also doing this kind of work. We need to find all ...
16
votes
3answers
6k views
Throw an error in MySQL trigger
If I have a trigger BEFORE UPDATE on a table. How can I throw an error that prevents the update on that table?
14
votes
6answers
3k views
jQuery - Trigger event when an element is removed from the DOM
I'm trying to figure out how to execute some js code when an element is removed from the page:
jQuery('#some-element').remove(); // remove some element from the page
/* need to figure out how to ...
14
votes
2answers
34k views
WPF Trigger for IsSelected in a DataTemplate for ListBox items
I have a listbox, and I have the following ItemTemplate for it:
<DataTemplate x:Key="ScenarioItemTemplate">
<Border Margin="5,0,5,0"
Background="#FF3C3B3B"
...
14
votes
12answers
9k 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 prodecure.
Is there any ...
13
votes
9answers
4k views
How have you successfully implemented MessageBox.Show() functionality in MVVM?
I've got a WPF application which calls MessageBox.Show() way back in the ViewModel (to check if the user really wants to delete). This actually works, but goes against the grain of MVVM since the ...
13
votes
2answers
16k views
Setting a property with an EventTrigger
I want to be able to set a property with an EventTrigger, there's a number of problems with this.
1) EventTriggers only support Actions, so I must use a storyBoard to set my properties.
2) Once I ...
12
votes
8answers
5k 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, in other words, we ...
12
votes
12answers
2k 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 the control of my ...
11
votes
1answer
3k views
Silverlight changing styles based on an objects property value (ie DataTrigger)
Does anyone have a successful workaround for changing a style in silverlight based on a property of the underlying data object, in that when the value changes so does the style. I used WPF briefly and ...
11
votes
11answers
2k 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 functionality:
...
10
votes
3answers
21k views
Insert Update trigger how to determine if insert or update
I need to write an Insert, Update Trigger on table A which will delete all rows from table B whose one column (say Desc) has values like the value inserted/updated in the table A's column (say Col1). ...
10
votes
4answers
9k views
What is the best way to check whether a trigger exists in SQL Server?
I'm looking for the most portable method to check for existance of a trigger in MS SQL Server. It needs to work on at least SQL Server 2000, 2005 and preferably 2008.
The information does not appear ...
10
votes
1answer
768 views
In WPF, does the order of Triggers matter?
I have the following xaml:
<DockPanel>
<DockPanel.Resources>
<Style TargetType="Button">
<Style.Triggers>
<Trigger ...
10
votes
9answers
15k 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 Stored Procedures, ...
10
votes
9answers
8k views
Autoincrement in Oracle
What are the other ways of achieving autoincrement in oracle other than use of triggers?
9
votes
2answers
2k views
Triggering a JavaScript click() event at specific coordinates
Trying to fire off (trigger) a click event. Its easy to do in jQuery, but cannot figure out how to set the coordinates of the event and send them along.
Essentially, I need to trigger a click at a ...
9
votes
4answers
2k 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 before the insert trigger ...
8
votes
2answers
171 views
When implementing a statement-level trigger on a table, is it possible to obtain the OLD and NEW records for all affected rows?
In Oracle, you can write a row-level trigger by specifying the FOR EACH ROW clause in the CREATE TRIGGER statement:
CREATE TRIGGER MY_FANCY_TRIGGER
BEFORE UPDATE ON MY_TABLE
FOR EACH ROW
BEGIN
...
8
votes
4answers
389 views
What are PostgreSQL RULEs good for?
Question
I often see it stated that rules should be avoided and triggers used instead. I can see the danger in the rule system, but certainly there are valid uses for rules, right? What are they?
...
8
votes
3answers
5k views
How to trigger event in javascript
I have attached a event to a text box using addEventListener. It works fine. My problem arouse when i wanted to trigger the event programmatically from another function.
how can i do it?
8
votes
4answers
3k views
Disable Enable Trigger SQL server
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
-- ...
8
votes
1answer
12k views
WPF ListBox Selection Color
Sorry if this has been asked before, but I couldn't find a solution to what I'm looking for in the related questions that popped up, or on Google.
In my application I'm trying to recreate Words New ...
8
votes
1answer
5k views
Using MySQL triggers to log all table changes to a secondary table
I have a table:
CREATE TABLE `data_table` (
`data_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`field1` INT NOT NULL ,
`field2` INT NOT NULL ,
`field3` INT NOT NULL
) ENGINE = MYISAM ;
I would log ...
7
votes
4answers
968 views
.val() doesn't trigger .change() in jquery
I am trying to trigger .change() on a text box when I change it's value simply with a button but it doesn't work. Check link below. If you type something in textbox then click somewhere else .change() ...
7
votes
6answers
8k views
Invoking a PHP script from a mysql trigger
Is there anyway invoke a PHP page / function when a record being inserted in to the mysql db table. We dont have control over the record insertion procedure.Is there some thing called trigger which ...
7
votes
2answers
1k views
TooManyRowsAffectedException with encrypted triggers
I'm using nHibernate to update 2 columns in a table that has 3 encrypted triggers on it. The triggers are not owned by me and I can not make changes to them, so unfortunately I can't SET NOCOUNT ON ...
7
votes
3answers
1k views
WPF — it's gotta be easier than I'm making it
I'm having the darndest time figuring this out: say I've got two Button and three TextBlocks. I want either button to trigger a simple Storyboard on ALL TextBlocks. Currently I'm trying to define a ...
7
votes
4answers
4k views
WPF Trigger when property value is greater than a certain amount
I want to do something like this:
<ControlTemplate.Triggers>
<Trigger Property="Width" Value=">25">
<!-- Set values here -->
</Trigger>
...
7
votes
2answers
7k views
How can you get a XAML TextBlock to collapse when it contains no data?
I want to tell WPF: "If TextBlock contains no data, then don't show it."
TRY #1 with a simple trigger produces the error "'Text' member is not valid because it does not have a qualifying type name.":
...
7
votes
6answers
405 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 particular change to ...
7
votes
2answers
5k views
Creating trigger for table in MySQL database (syntax error)
I have trouble defining a trigger for a MySQL database. I want to change a textfield before inserting a new row (under a given condition). This is what I have tried:
CREATE TRIGGER add_bcc
BEFORE ...
7
votes
10answers
482 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 program that's doing the ...
7
votes
3answers
2k views
SQL Server: Modifying the “Application Name” property for auditing purposes
As we do not implement the users of our applications as users in SQL server, when the application server connects to a database each application always uses the same credentials to attach to each ...
7
votes
7answers
953 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 but this is not ...
7
votes
11answers
3k 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 happens next and means I ...
7
votes
3answers
1k 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?
6
votes
2answers
166 views
Using MySQL triggers in AWS to empty cache on updates and inserts
I am building an architecture on AWS with several EC2 instances as webservers and a central MySQL database (RDS). The EC2 instances have Redis installed for caching single db rows. When a row changes ...
6
votes
1answer
289 views
DataTrigger vs databinding with converter performance wise
I have a large number of styles defined for my grid (cell colors based on state, etc.). Right now I use DataTriggers to set the appropriate colors. I am looking to improve the performance of my app ...
6
votes
2answers
648 views
ON DUPLICATE KEY UPDATE doesn't work when there's an UPDATE trigger
I have an INSERT statement that looks like this:
INSERT INTO officer (officer_number,
name,
bank_id)
VALUES ('',
'',
8)
ON DUPLICATE KEY ...
6
votes
2answers
2k views
GitHub, Gerrit, Hudson(Jenkins) workflow
I'm just getting started using GitHub, Gerrit, and Hudson(Jenkins) together. And I need some thoughts on workflow.
We'd like to use GitHub as our main remote repo. We'd like to use Gerrit primarily ...
6
votes
5answers
17k views
Sql Server trigger insert values from new row into another table
I have a site using the asp.net membership schema. I'd like to set up a trigger on the aspnet_users table that inserted the user_id and the user_name of the new row into another table.
How do I go ...
6
votes
1answer
665 views
OptimisticConcurrencyException — SQL 2008 R2 Instead of Insert Trigger with Entity Framework
Using a SQL 2008 R2 November release database and a .net 4.0 Beta 2 Azure worker role application. The worker role collects data and inserts it into a single SQL table with one identity column. ...
6
votes
2answers
1k views
How to create mysql triggers using migrations in Rails?
Is there a way to create mysql triggers using Activerecord migrations ? Has anybody worked on it share your experience . Thanks
6
votes
3answers
2k views
Selecting a ListBoxItem when its inner ComboBox is focused
I have a DataTemplate that will be a templated ListBoxItem, this DataTemplate has a
ComboBox in it which when it has focus I want the ListBoxItem that this template
represents to become selected, this ...
6
votes
5answers
4k views
MySQL DELIMITER syntax errors
This MySQL script installs multiple triggers.
It works on one machine running MySQL 5.0.51b-community. On another machine running MySQL 14.12 Distrib 5.0.45, for redhat-linux-gnu (i386) it fails, ...
6
votes
2answers
8k views
Trigger change event of dropdown
I want to trigger the change event of dropdown in $(document).ready using jquery.
I have a cascading dropdown for country and state in user details page. how can i set the value (which is taken from ...