1
vote
7answers
83 views
How to keep an audit/history of changes to the table
I've been asked to create a simple DataGrid-style application to edit a single table of a database, and that's easy enough. But part of the request is to create an audit trail of c …
2
votes
1answer
41 views
PostgreSQL: UPDATE implies move across partitions
(Note: updated with adopted answer below.)
For a PostgreSQL 8.1 (or later) partitioned table, how does one define an UPDATE trigger and procedure to "move" a record from one part …
0
votes
1answer
15 views
Is it possible to have a stateless timed function.
I'm trying to set a reminder in a system to fire at a certain time.
This is a web based app, so it's not like it will be in memory all the time.
Ideally I'd like to avoid using a …
0
votes
3answers
19 views
Constraints instead Triggers (Specific question)
I read here some reasons to use constraints instead of triggers. But I have a doubt. How can be assure (using only constraints), the coherence between SUPERCLASS tables and SUBCLAS …
0
votes
3answers
34 views
SQL Server - Size Based Trigger
Is there a way to have a trigger fire when a table hits a specified size?
I am doubtful, but I thought I would ask. It would be useful for logging tables that I want to keep unde …
1
vote
1answer
20 views
Style triggers in Silverlight
Hi,
I am trying to use style triggers in silverlight like so:
<Path Canvas.Top="20" Stroke="#FF808080" Data="M 0,20 20,0 40,20 Z" StrokeLineJoin="Round">
<Pat …
0
votes
3answers
46 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 …
0
votes
1answer
66 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
24 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
1answer
16 views
Need help with simple mysql triggers
Hi,
I have one table (TABLE A) in my mysql database which has the listed fields:
row1_id - PK
row2_id - PK
row3_data
What I would like to do is, every time a record is inserte …
1
vote
3answers
63 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
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
18 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
1answer
29 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
3answers
54 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.
…
