0
votes
1answer
30 views
SQL Server delete trigger - row handle referred to a deleted row or a row marked for deletion
I have a delete trigger on a table which is used to delete entries from a table in an another database.
CREATE TRIGGER [dbo].[Trigger_Contracts_Delete] ON [dbo].[Contracts]
AFTER …
2
votes
2answers
20 views
Use mysql user in trigger
I'm creating a trigger in MySQL to let me know WHO (which mysql user) is doing an update on a specific table.
I know MySQL has a function CURRENT_USER(), but is that going to inse …
0
votes
3answers
35 views
PostgreSQL triggers and exceptions
I'm trying to get my first ever trigger and function to work, but how I throw exceptions and return data right way?
PostgreSQL 8.4.1
CREATE TABLE "SHIFTS" (
id integer NOT NU …
1
vote
3answers
60 views
Triggers in oracle
What are the condtions where triggers can enhance or hinder the performance? When to use and when not to use the triggers in the system?
How triggers can be used to impose complex …
1
vote
1answer
17 views
How can I set a property of a DropShadowEffect via a Trigger in a ControlTemplate?
I have a Button ControlTemplate and I'm trying to modify a DropShadowEffect on a Border by using a Trigger. Here is my Xaml:
<Button.Template>
<ControlTemplate TargetTy …
1
vote
3answers
51 views
Restoring two databases to precisely the same time
In SQL Server 2008, I have my parent table in one database, and the child table in another database, with FK relationship maintained by triggers. I cannot change it, cannot move bo …
1
vote
1answer
26 views
Using Aggregate Functions Inside a Trigger In MySQL
I have a 'People' table with several attributes including 'age'. Each time I insert a new tuple into this table, I would like to find out the average age of all the people listed i …
0
votes
1answer
29 views
creation of trigger
I have this trigger
procedure CASE_A
as
UPDATE table1 SET field1 = (SELECT bus FROM view1 WHERE table1.document = view1.document)
end;
the below trigger is supposed to …
0
votes
3answers
42 views
Mysql trigger/events vs Cronjob
Hello,
I have an auction website which let my users place an unlimited amount of autobiddings.
To monitor these autobiddings something has to check the database every second.
…
0
votes
1answer
64 views
Create a before delete trigger?
id country_name region area population
1 LASvega Americas 2314 2134562
2 California AMERICAS 10101 2134562
3 Alger …
1
vote
4answers
49 views
Before trigger in SQL Server
I have 2 tables: survey (id(PK), name) and survey_to_topic (survey_id(PK,FK,not null), topic_id(PK,FK,not null)). When I try to delete from survey table, I get exception:
"The …
0
votes
5answers
81 views
monitoring mysql for changes
I have a Java app using a MySQL database through hibernate. The database is really used as persistence layer: The database is read at the initial load of the program, and the rec …
0
votes
0answers
16 views
drupal actions triggers rules
Hi,
I'm looking at the code in the signup module.
It seems that there are triggers and actions in place already for certain events.
If I was to add rules events, would that conf …
1
vote
6answers
64 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
58 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 …
