1
vote
6answers
53 views
SQL Server triggers
I'm creating a trigger in SQL Server after INSERT, UPDATE and DELETE. Is there a way to know inside the trigger code if it is running on the insert update or delete statement, beca …
0
votes
1answer
29 views
How to discover trigger’s parent schema?
To discover all triggers in any given MS SQL Server database, I'm currently querying the sysobjects table (which is fine because it works in MS SQL Server 2000 which I have to supp …
0
votes
0answers
14 views
WPF - How to combine DataTrigger and EventTrigger?
NOTE I have asked the related question: How to combine DataTrigger and Trigger?
I think I need to combine an EventTrigger and a DataTrigger to achieve what I'm after:
when a …
3
votes
1answer
51 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
2
votes
2answers
48 views
ORA-04098: Simple trigger is invalid. Why?
There is something wrong with this trigger. But what?
CREATE TRIGGER MYCOOLTRIGGER
AFTER INSERT ON MYCOOLTABLE
REFERENCING NEW AS newRow
FOR EACH ROW
DECLARE
BEGIN
END MYCOOLTRI …
1
vote
1answer
33 views
Stopping a delete on MySQL via Triggers
I'm trying to intercept any DELETE commands against a particular table. MySQL supports triggers but it doesn't seem to support a way to raise an error yet like SQL Server and othe …
0
votes
1answer
38 views
Can’t create MySQL trigger with TRIGGER privilege on 5.1.32
My fellow developers and I have our own development schemas on a shared MySQL development database. My assignment requires me to create triggers in my schema, yet I've been unsucc …
1
vote
2answers
45 views
Oracle Trigger on Schema not being triggered by other users besides the Schema owner
I have the following table and trigger.
CREATE TABLE LogSchema (
user varchar2(100),
date_ date,
operation varchar2(100),
obj_type varchar2(100),
obj_name varc …
0
votes
1answer
36 views
MySQL Trigger with SELECT statement
As an example, say I have a these tables...
person (id, currentyear)
personteam (id, workyear, team)
A person is assigned a team for each year they work at a company. 'persontea …
0
votes
1answer
22 views
“Maximum allowed trigger depth” in SQL Server?
I know about "Allow Triggers to Fire Others" server setting that allows the action taken by a trigger to fire another trigger (or not), and as I understand it, my only options are …
0
votes
4answers
92 views
ORA-04091 on Create or Replace Trigger xxx Before Insert of Update on xxx
Can someone help me correct the Trigger below? I am assigned this problem but my technical skill is limited.
My script hit the error below (ORA 4091):
Processing STANDARD PO Num …
0
votes
2answers
143 views
SQL Server - Get Inserted Record Identity Value when Using a View’s Instead Of Trigger
For several tables that have identity fields, we are implementing a Row Level Security scheme using Views and Instead Of triggers on those views. Here is a simplified example stru …
0
votes
2answers
42 views
How can I desaturate selected rows when DataGrid is out of focus?
The normal convention for UI controls is for selected text, items, or rows to be brightly colored (e.g., bright blue) when the parent control is in focus and desaturated/dim (e.g., …
1
vote
1answer
27 views
How can I swap controls based on a dependency property?
I am creating a custom control.
I want the template for this control to use different controls for the root control based on the value of a dependency property called CanExpand. C …
1
vote
3answers
32 views
column update without using trigger
SCENARIO:
I have two tables, table1(col1 date) and table2(col2 varchar(20)).
REQUIREMENT:
Whenever anyone updated the value in col2, todays date should be inserted/updated in co …
