active questions tagged triggers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T06:28:06Zhttp://stackoverflow.com/feeds/tag/triggershttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1885682/can-a-php-app-run-when-email-is-sent3Can a PHP app run when email is sent?Anthony2009-12-11T03:53:58Z2009-12-11T06:25:08Z
<p>Is there a way to configure a server or a script to execute a php script when an email is received?</p>
<p>In theory this could be extended to other protocols, such as XMPP or SMS, etc.</p>
<p>What I have in mind is a user could send a message to <code>checking-in@example.org</code> and this would trigger a script which would then do whatever needed to be done, either irrelevant to the message (an automated message that gets sent whenever some other even occurs, like a server having issues) or related to the message (like it could store the subject in a database that other users could view as an RSS feed).</p>
<p>I know that most list-serve software have a means of sending commands (like unsubscribe), but I'm not sure how complicated the process is and if it is feasible to have something like this on a server-script level.</p>
<p>Would this need to occur at the IMAP/SMTP level, or could it be done closer to the script or HTTP server?</p>
<p>Just to give some context, one of the things I'm considering is a message-based clock in server for one of my work sites. Users could IM/email/text that they are at their scheduled location and this could trigger a script that would update a DB, rather then send the managers a direct message they need to log. This would just be one option (a web-based method is already in the works), but we want to make it as platform/protocol independent as possible. But if we can achieve that, we can look at implementing it for many other day-to-day needs.</p>
<p>Another way of asking might be: is there a way to have "discovery" of users from a server-script app or does something need to be doing a constant check to relevant sources to see such changes?</p>
http://stackoverflow.com/questions/1884523/is-a-trigger-what-i-need1Is a trigger what I need?pepcey2009-12-10T22:27:30Z2009-12-10T22:48:46Z
<p>I am just back in the field after 5 years and am very rustly so please be patient. I am working on sql server express and I need to capture new/updated records(only parts of them actually) from a single table in order to insert into another table. (I will be using this other table as my data source for a crystal report.) I have no test environment and will have to build and populate around 6 tables to test the trigger. Is a trigger my only option? Thank you for any input.</p>
http://stackoverflow.com/questions/1882200/how-to-alter-a-datetime-field-when-it-is-updated0How to alter a DateTime field when it is updated?Raggedtoad2009-12-10T16:26:05Z2009-12-10T21:25:43Z
<p>Is there a database level function (trigger or something) that I can use to alter a DateTime field when new data is inserted? The issue is that a service I am integrating with happens to send out all of its times (in this case the time some info was received on their end) in GMT. </p>
<p>I need to automatically change this to reflect the time in the timezone the db server is in. For example, if they send me 2:34 PM, but I am in NYC, I would want it to be entered in the db as 9:34 AM. This would also have to account for differences in Daylight Savings between GMT and wherever the server is, which seems like a nightmare. Any suggestions?</p>
<p>Also, I am using SQL Server 2005 if that helps.</p>
<p>EDIT:</p>
<p>Let me clarify one thing. The dates going into this column are retrieved in batches every so often (5, 10, 15 minutes), so I think the only way to go is to alter the time once it has been received, not to add a TimeModified field or something. Is that even feasible?</p>
http://stackoverflow.com/questions/1867939/writing-triggers-or-implementing-actions-by-programming1Writing Triggers or implementing actions by programming?Pujan2009-12-08T16:05:39Z2009-12-10T11:36:27Z
<p>I am a newbie. I am writing an application in Java which connects to Oracle 9i database. I need to enforce some rules in my application like:</p>
<p>Chair of Committee A must be added/deleted as a Member in Committee B.</p>
<p>There are around 10 such rules that need to be enforced. I am in a dilemma whether to enforce these rules by writing triggers or by programming within my application.</p>
<p>I appreciate any suggestions.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1880156/tree-hierarchy-data-in-mysql-table0Tree/hierarchy data in MySql tableRobert Koritnik2009-12-10T10:47:49Z2009-12-10T10:47:49Z
<p>I have a table that uses Adjacency list model for hierarchy storage. My most relevant columns in this table are therefore:</p>
<pre><code>ItemId // is auto_increment
ParentId
Level
ParentTrail // in the form of "parentId/../parentId/itemId"
</code></pre>
<p>then I created a before insert tigger, that populates columns <code>Level</code> and <code>ParentTrail</code>. Since the last column also includes current item's ID I had to use a trick in my trigger because <code>auto_increment</code> columns are not available in the before insert trigger. So I get that value from the <code>information_schema.tables</code> table.</p>
<p>All works fine, until I try to write an update trigger, that would update my item and its descendants when the item changes its parent (<code>ParentId</code> has changed). But I can't make an update on my table inside the update trigger. All I can do is to change current record's values but not other's.</p>
<p>I could use a separate table for hierarchy data, but that would mean that I would also have to create a view that would combine these two tables (1:1 relation) and I would like to avoid this is at all possible.</p>
<p><strong>How should I update my subtree items' <code>ParentTrail</code> values?</strong></p>
http://stackoverflow.com/questions/1876860/using-trigger-to-get-id-on-insert-sql-20050Using Trigger to get ID on Insert - SQL 2005Callie2009-12-09T21:03:20Z2009-12-09T21:36:24Z
<p>I have a table (table_a) that, upon insert, needs to retrieve the next available id from the available_id field in another table (table_b) to use as the primary key in table_a, and then increment the available_id field in table_b by 1. While doing this via stored procedures is easy, I need to be able to have this occur on any insert into the table. </p>
<p>I know I need to use triggers, but I am unsure how to code this. Any advice?</p>
<p>Basically this is my dilema:<br>
I need to ensure 2 different tables have unique id's throughout. What would be the best way to do this without using GUID's? (Some of this code cannot be controlled on our end and requires ints as id's).</p>
http://stackoverflow.com/questions/1867190/wpf-trigger-and-storyboard-blues0WPF Trigger and StoryBoard BluesWavioli2009-12-08T14:07:42Z2009-12-08T14:07:42Z
<p>Hi there.</p>
<p>I'm having some trouble with making triggers do what I want them to...</p>
<p>I have a control that needs to have a contextual menu and a checkbox appear when you mouse over them.</p>
<p>Only thing is if the checkbox is checked it should remain visible.</p>
<p>Basically I have 4 storyboards - two to show/hide the checkbox, and two to show/hide the contextual menu.</p>
<p>The problem is the triggers aren't doing what I expected.</p>
<pre><code><MultiTrigger>
<MultiTrigger.ExitActions>
<BeginStoryboard x:Name="PageMouseOut_BeginStoryboard" Storyboard="{StaticResource PageMouseOut}"/>
</MultiTrigger.ExitActions>
<MultiTrigger.EnterActions>
<BeginStoryboard Storyboard="{StaticResource PageOver}"/>
</MultiTrigger.EnterActions>
<MultiTrigger.Conditions>
<Condition Property="IsChecked" SourceName="CheckSelected" Value="True"/>
<Condition Property="IsMouseOver" Value="True"/>
</MultiTrigger.Conditions>
</MultiTrigger>
<MultiTrigger>
<MultiTrigger.ExitActions>
<BeginStoryboard x:Name="PageMouseOut_BeginStoryboard2" Storyboard="{StaticResource OnUnchecked}"/>
<BeginStoryboard x:Name="PageMouseOut_BeginStoryboard1" Storyboard="{StaticResource PageMouseOut}"/>
</MultiTrigger.ExitActions>
<MultiTrigger.EnterActions>
<StopStoryboard BeginStoryboardName="PageMouseOut_BeginStoryboard" />
<BeginStoryboard Storyboard="{StaticResource PageOver}"/>
<BeginStoryboard x:Name="Checked_BeginStoryboard" Storyboard="{StaticResource Checked}"/>
</MultiTrigger.EnterActions>
<MultiTrigger.Conditions>
<Condition Property="IsChecked" SourceName="CheckSelected" Value="False"/>
<Condition Property="IsMouseOver" Value="True"/>
</MultiTrigger.Conditions>
</MultiTrigger>
</code></pre>
<p>What's happening (as far as I can tell) is that the enter action on one is over riding the exit action of the other. I have tried stopping the other storyboard but that will only work for one as it says that the other one is not applied to the object.</p>
<p>Is there a way of setting a storyboard to over ride all others?</p>
http://stackoverflow.com/questions/1484017/silverlight-changing-styles-based-on-an-objects-property-value-ie-datatrigger3Silverlight changing styles based on an objects property value (ie DataTrigger)Suiva2009-09-27T17:29:27Z2009-12-08T12:57:45Z
<p>Hi,</p>
<p>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 it obviously has the DataTrigger which seems to cover this but it is missing in Silverlight.</p>
<p>I found this:
<a href="http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html" rel="nofollow">http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html</a></p>
<p>But it doesn't seem to apply to styling..</p>
<p>Thanks for your time</p>
http://stackoverflow.com/questions/1859290/triggers-in-new-and-old-columns0triggers in new and old columnskandukuri-suresh2009-12-07T10:57:14Z2009-12-07T18:28:26Z
<p>Why can't we use :new and :old columns in a statement level trigger?</p>
http://stackoverflow.com/questions/1852400/how-bad-is-it-to-simulate-identity-autoincrement-columns-using-triggers-in-oracle3How bad is it to simulate IDENTITY/AUTOINCREMENT columns using triggers in Oracle?Jason Baker2009-12-05T14:55:56Z2009-12-07T15:14:10Z
<p>I maintain an application that was originally written to be SQL Server-specific (using IDENTITY fields). Thus, we've had to define a lot of triggers to auto increment tables' primary keys.</p>
<p>I'm told that this is considered to be a hacky workaround in the Oracle world, but that was told to me in a "friend of a friend" kind of way. How big a deal is it to use triggers to increment primary keys from a sequence instead of using the sequence directly?</p>
http://stackoverflow.com/questions/1851837/sql-server-2000-triggers0SQL Server 2000 Triggers sathia2009-12-05T10:38:00Z2009-12-06T18:04:54Z
<p>Using SQL Server 2000, I need to insert the deleted records from one table into a second table.</p>
<p>What's the best way to achieve this using a SQL Server 2000 trigger?</p>
<p>with thanks and regards</p>
<p>Sathia</p>
http://stackoverflow.com/questions/1849444/is-it-possible-to-insert-data-in-mysql-from-a-sql-server-trigger0Is it possible to insert data in MySQL from a SQL Server trigger?JeremyMcGee2009-12-04T20:26:29Z2009-12-06T17:28:01Z
<p>A fun question for a Friday afternoon, no?</p>
<p>As the question states, is it possible to write a SQL Server trigger that inserts data into a MySQL table?</p>
<p><hr></p>
<p>EDIT: Yes, I <i>know</i> this is basically a dumb idea and that the application should be doing it and so on. <i>But</i> this is a legacy Classic ASP application which we're transitioning to MySQL; and until we get rid of the ASP bit we really would like to be able to squirt data over to the MySQL system without touching the ASP code.</p>
<p>For there be dragons. Just mentioning it tends to make it crash.</p>
<p>Thanks all!</p>
http://stackoverflow.com/questions/1848764/triggering-upstream-project-builds-before-downstream-project1Triggering upstream project builds before downstream projecttonysbd2009-12-04T18:21:39Z2009-12-04T19:54:27Z
<p>I have the following project layout:</p>
<ul>
<li>WAR Project A
<ul>
<li>Upstream Projects
<ul>
<li>Dependency B</li>
<li>Dependency C</li>
<li>Dependency D</li>
</ul></li>
</ul></li>
</ul>
<p>I'm looking to setup A so that every time I want to trigger a build, it will first build B, C, and D. If either builds for B, C, or D fail then A's build should fail as well.</p>
<p>It seems like a common build case, but I'm not sure how to accomplish it. There are the following options but they don't seem to have the right relationship:</p>
<ul>
<li>Build Triggers - Build after other projects are built
<ul>
<li>Will build the current project after some upstream projects, but I need to control the build from this project since I'm doing a WAR deployment. I just want to always build dependencies first.</li>
</ul></li>
<li>Post-build Actions - Build other projects
<ul>
<li>Will build projects after this one, but that's backwards for what I want to do.</li>
</ul></li>
</ul>
<p>Is there a build configuration in Hudson (or through a plugin) that will work for me?</p>
http://stackoverflow.com/questions/1845329/mysql-triggers-can-a-trigger-stop-all-dml0MySql Triggers - Can a trigger stop ALL dml?ajax812009-12-04T07:10:34Z2009-12-04T07:21:37Z
<p>Hi All,</p>
<p>Is it possible to create a trigger on a table that is initiated when ANY dml is performed on the table?</p>
<p>For example -- I need to ensure that no insert/update/delete statements can be run on the weekend. So, instead of writing:</p>
<p>CREATE TRIGGER DENY_DML_1 BEFORE INSERT...</p>
<p>CREATE TRIGGER DENY_DML_2 BEFORE UPDATE...</p>
<p>CREATE TRIGGER DENY_DML_3 BEFORE DELETE...</p>
<p>...is it possible to write one trigger to rule them all?</p>
<p>Many thanks in advance!
~Daniel</p>
http://stackoverflow.com/questions/1467369/invoking-a-php-script-from-a-mysql-trigger3Invoking a PHP script from a mysql triggerShyju2009-09-23T17:06:02Z2009-12-04T04:23:57Z
<p>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 can call a PHP script back ?</p>
http://stackoverflow.com/questions/1843663/bind-fontweight-to-a-boolean-in-silverlight1Bind FontWeight to a Boolean in Silverlighteskerber2009-12-03T23:00:20Z2009-12-03T23:08:05Z
<p>Silverlight does not feature DataTriggers, so in this case... what might be the best way to conditionally set the fontweight of an item to a boolean?</p>
<p>For example... the following is not possible in Silverlight.</p>
<pre><code><TextBlock Text="{Binding Text}">
<TextBlock.Triggers>
<DataTrigger Binding="{Binding IsDefault}" Value="True">
<Setter Property="FontWeight" Value="Bold"/>
</DataTrigger>
<DataTrigger Binding="{Binding IsDefault}" Value="False">
<Setter Property="FontWeight" Value="Normal"/>
</DataTrigger>
</TextBlock.Triggers>
</TextBlock>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1837475/sql-insert-trigger-to-update-inserted-table-values0SQL Insert trigger to update INSERTED table valuesShimmy2009-12-03T03:36:40Z2009-12-03T03:51:26Z
<p>Hello.</p>
<p>I want to create an Insert trigger that updates values on all the inserted rows if they're null, the new values should be taken from a different table, according to another column in the inserted table.</p>
<p>I tried:</p>
<pre><code>UPDATE INSERTED
SET TheColumnToBeUpdated =
(
SELECT TheValueCol FROM AnotherTable.ValueCol
WHERE AnotherTable.ValudCol1 = INSERTED.ValueCol1
)
WHERE ValueCol IS NULL
</code></pre>
<p>But I get this error:</p>
<pre><code>Msg 286, Level 16, State 1, Procedure ThisTable_INSERT, Line 15
The logical tables INSERTED and DELETED cannot be updated.
</code></pre>
<p>How should I do that?</p>
http://stackoverflow.com/questions/1833691/oracle-trigger-updating-a-field-on-an-insert-or-an-update0Oracle Trigger Updating a field on an Insert or an UpdateAlteredConcept2009-12-02T15:38:16Z2009-12-02T15:56:04Z
<p>Hi all,</p>
<p>For some reason i'm running a blank on how to go about doing something like this.</p>
<p>I have a table that looks like this</p>
<pre><code>UserID | Name | DateAdded | LastUpated
--------------------------------------------------
1 | James Q | 1/1/2009 |
</code></pre>
<p>If i insert or update record the lastupdated field should be updated the sysdate.
How would i go about doing something like this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1809695/tabcontrol-tabitem-header-image-source-with-isselected-property0TabControl > TabItem.Header > Image Source with IsSelected PropertyJeff2009-11-27T16:39:40Z2009-11-27T16:39:40Z
<p>How do I change an image source within my TabControl > TabItem > TabItem.Header using triggers? Here's what I have so far:</p>
<pre><code> <TabControl Name="tabctlMainTab"
Style="{StaticResource PrimaryTabControl}"
SelectionChanged="MainTab_SelectionChanged" Background="Transparent">
<TabItem IsSelected="True">
<TabItem.Header>
<Image Name="imgProjectCreate"
Style="{StaticResource PrimaryTabItemImage}"
Source="/PROJECT.Desktop;component/Images/PrimaryTabs/tab_left_create_project_on.png" />
</TabItem.Header>
<TabItem.Style>
<Style BasedOn="{StaticResource PrimaryTabItem}" TargetType="{x:Type TabItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter TargetName="imgProjectCreate" Property="Source" Value="/PROJECT.Desktop;component/Images/PrimaryTabs/tab_left_create_project_on.png" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</TabItem.Style>
</TabItem>
<TabItem Style="{StaticResource PrimaryTabItem}">
<TabItem.Header>
<Image Style="{StaticResource PrimaryTabItemImage}"
Source="/PROJECT.Desktop;component/Images/PrimaryTabs/tab_left_modify_project_off.png" />
</TabItem.Header>
</TabItem>
</TabControl>
</code></pre>
<p><br/></p>
<p>But, I get this error:</p>
<p><strong>Cannot find the Trigger target 'imgProjectCreate'. (The target must appear before any Setters, Triggers, or Conditions that use it.)</strong></p>
<p>I'm completely new to WPF and XAML so any help would be greatly appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1807524/copy-trigger-from-one-database-to-another0Copy trigger from one database to anotherRawling2009-11-27T08:53:40Z2009-11-27T09:22:29Z
<p>Is it possible, in a script executed in MS SQL Server 2005, to copy a trigger from one database to another?</p>
<p>I've been asked to write a test script for a trigger my project is using. Our test structure is to create an empty database containing only the object under test, then execute a script on that database that creates all the other objects needed for the test, fills them, runs whatever tests are needed, compares the results against expected results, and then drops everything except the object under test.</p>
<p>I can't just create a database that is empty except for the trigger, because the trigger depends on several tables. My test script currently runs the CREATE TRIGGER after all the required tables are created, but this won't do because the test script isn't allowed to contain the object under test.</p>
<p>What's been suggested is that, instead of running a CREATE TRIGGER, I somehow copy the trigger at that point in the script from the live database to the test database. I've had a quick Google and haven't found a way to do this. Thus my question - is this even possible, and if so, how can I do it?</p>
http://stackoverflow.com/questions/1807188/transaction-count-exception-in-vb-net-sql-exception1Transaction count exception in vb.net (SQL Exception)Dot Net Developer2009-11-27T07:05:24Z2009-11-27T08:01:03Z
<p>I am getting below exception when i am going to enter record in a table through StoredProceduer of sqlserver
i have a field which i need u update immediately after insert of new record in table.
for that i created a sotredprocedure in which i wrote insert command first and after that i wrote a update command for same recored but it gave me below error
SQlException:
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 2. Uncommittable transaction is detected at the end of the batch. The transaction is rolled back. Some Error in stored procedure execution</p>
<p>i tried in another way also like: i just wrote insert command in storedprocedure and i created a afterInsert trigger in which i am firing update command. but still i am facing above exception</p>
<p>Details:
Table structure:</p>
<pre><code>CREATE TABLE [dbo].[TabStoreGRNMaster](
[pk_grnm_id] [bigint] IDENTITY(1,1) NOT NULL,
[fk_col_id] [bigint] NULL,
[fk_sup_id] [bigint] NULL,
[grnm_grnno] [varchar](50) NULL,
[grnm_date] [nvarchar](10) NULL,
[grnm_partyinvno] [varchar](50) NULL,
[grnm_invdate] [nvarchar](10) NULL,
[grnm_freight] [numeric](7, 2) NULL,
[grnm_otherchrg] [numeric](7, 2) NULL,
[grnm_roundoff] [bit] NULL,
[Fk_User_Id] [bigint] NULL,
[grnm_EntryDate] [nvarchar](8) NULL,
CONSTRAINT [PK_TabStoreGRNMaster] PRIMARY KEY CLUSTERED
(
[pk_grnm_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
</code></pre>
<p>storedprocedure:</p>
<pre><code>USE [Kollege]
GO
/****** Object: StoredProcedure [dbo].[StoreGRNMaster] Script Date: 11/27/2009 10:20:37 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[StoreGRNMaster]
(
@pk_grnm_id [bigint] output ,
@fk_col_id [bigint] = 0 ,
@fk_sup_id [bigint] = 0 ,
@grnm_grnno [varchar](50) = '',
@grnm_date [nvarchar](10) = null,
@grnm_partyinvno [varchar](50) = '',
@grnm_invdate [nvarchar](10) = null,
@grnm_freight [numeric] = 0 ,
@grnm_otherchrg [numeric] = 0 ,
@grnm_roundoff [bit] = 0 ,
@Fk_User_Id [bigint] = 0 ,
@grnm_EntryDate [nvarchar](8) = null,
@opt [BIGINT] =0,
@del [bit] =0
)
as
begin
SET NOCOUNT ON;
BEGIN TRY
begin transaction
if isnull(@opt,0) = 0 begin
INSERT INTO TabStoreGRNMaster
(
fk_col_id,
fk_sup_id,
grnm_grnno,
grnm_date,
grnm_partyinvno,
grnm_invdate,
grnm_freight,
grnm_otherchrg,
grnm_roundoff,
Fk_User_Id,
grnm_EntryDate
)
VALUES
(
@fk_col_id,
@fk_sup_id,
@grnm_grnno,
@grnm_date,
@grnm_partyinvno,
@grnm_invdate,
@grnm_freight,
@grnm_otherchrg,
@grnm_roundoff,
@Fk_User_Id,
@grnm_EntryDate
)
set @pk_grnm_id = @@identity
end
else
begin
if @del = 0
UPDATE TabStoreGRNMaster
SET
fk_col_id = @fk_col_id,
fk_sup_id = @fk_sup_id,
grnm_grnno = @grnm_grnno,
grnm_date = @grnm_date,
grnm_partyinvno = @grnm_partyinvno,
grnm_invdate = @grnm_invdate,
grnm_freight = @grnm_freight,
grnm_otherchrg = @grnm_otherchrg,
grnm_roundoff = @grnm_roundoff,
Fk_User_Id = @Fk_User_Id,
grnm_EntryDate = @grnm_EntryDate
WHERE
(
pk_grnm_id = @opt
)
if @del=1 and isnull(@opt,0) <> 0
DELETE from [TabStoreGRNMaster]
WHERE
( [pk_grnm_id] = @opt)
end
commit transaction
END TRY
BEGIN CATCH
raiserror ('Some Error in stored procedure execution',1,1)
END CATCH;
END
</code></pre>
<p>Trigger:</p>
<pre><code>alter TRIGGER TGRStoreGRNMasterCode
ON tabStoreGRNMaster
AFTER INSERT
AS
begin
declare @pk varchar(10)
declare @colcode varchar(10)
declare @current_session varchar(20)
declare @colid bigint
set @pk = (select pk_grnm_id from Inserted)
--set @colid = (select fk_col_id from Inserted)
set @colcode= 'jiet'--(select col_code from tabcollegemaster where pk_col_id =5) (when i replace word 'Jiet' with commented qry i gets sql exception otherwise its working fine)
select @current_session = Ses_abbrev from TabAcaSessionMast where ses_current = 1
--update tabStoreGRNMaster set grnm_grnno= @colcode +'/' +@current_session+ '/' + @pk where pk_grnm_id=convert(bigint,@pk)
update tabStoreGRNMaster set grnm_grnno= (select col_code from tabcollegemaster where pk_col_id=5) +'/' +@current_session+ '/' + @pk where pk_grnm_id=convert(bigint,@pk)
end
</code></pre>
http://stackoverflow.com/questions/1806828/optimisticconcurrencyexception-sql-2008-r2-instead-of-insert-trigger-with-enti1OptimisticConcurrencyException -- SQL 2008 R2 Instead of Insert Trigger with Entity FrameworkPaulWaldman2009-11-27T04:58:50Z2009-11-27T04:58:50Z
<p>Hi,</p>
<p>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. Because there will likely be multiple instances of this worker role running, I created an Insert Instead Of trigger on the SQL table. The trigger performs Upsert functionality using the SQL Merge function. Using T-SQL I was able to verify the insert instead of trigger functions correctly, new rows were inserted while existing rows were updated.
This is the code for my trigger:</p>
<pre><code>Create Trigger [dbo].[trgInsteadOfInsert] on [dbo].[Cars] Instead of Insert
as
begin
set nocount On
merge into Cars as Target
using inserted as Source
on Target.id=Source.id AND target.Manufactureid=source.Manufactureid
when matched then
update set Target.Model=Source.Model,
Target.NumDoors = Source.NumDoors,
Target.Description = Source.Description,
Target.LastUpdateTime = Source.LastUpdateTime,
Target.EngineSize = Source.EngineSize
when not matched then
INSERT ([Manufactureid]
,[Model]
,[NumDoors]
,[Description]
,[ID]
,[LastUpdateTime]
,[EngineSize])
VALUES
(Source.Manufactureid,
Source.Model,
Source.NumDoors,
Source.Description,
Source.ID,
Source.LastUpdateTime,
Source.EngineSize);
End
</code></pre>
<p>Within the worker role I am using Entity Framework for an object model. When I call the SaveChanges method I receieve the following exception:</p>
<pre><code>OptimisticConcurrencyException
Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. Refresh ObjectStateManager entries.
</code></pre>
<p>I understand this is likly due to SQL not reporting back an IdentityScope for each new inserted/updated row. Then EF thinks the rows were not inserted and the transaction is not ultimately not committed. </p>
<p>What is the best way to handle this exception? Maybe using OUTPUT from the SQL merge function?</p>
<p>Thanks!
-Paul</p>
http://stackoverflow.com/questions/1589778/does-informix-have-scheduled-triggers0Does Informix have scheduled triggers?zombiegx2009-10-19T16:39:36Z2009-11-27T00:48:23Z
<p>I need an Informix database to update some records on December 31 at 11:59; can Informix do this on a trigger, or does it have a scheduler of some sorts?</p>
<p>I'm an Informix noob btw.</p>
<p>I'm using informix 11.1 for hp-ux</p>
http://stackoverflow.com/questions/1781796/style-triggers-in-silverlight1Style triggers in SilverlightIan Hannah2009-11-23T08:31:39Z2009-11-26T18:29:16Z
<p>Hi,</p>
<p>I am trying to use style triggers in silverlight like so:</p>
<pre><code> <Path Canvas.Top="20" Stroke="#FF808080" Data="M 0,20 20,0 40,20 Z" StrokeLineJoin="Round">
<Path.Style>
<Style TargetType="{x:Type Path}">
<Setter Property="Fill" Value="DarkGray"/>
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=userControl, Path=PumpRunning}" Value="True">
<Setter Property="Fill" Value="DarkGreen"/>
</DataTrigger>
</Style.Triggers>
</Style>
</Path.Style>
</Path>
</code></pre>
<p>I want to do this so that the fill value of the path changes if the pump is running or not. The problem is that style triggers are not supported in silverlight! </p>
<p>So is there anyway round this? Is there some way of doing this in code? I have looked into it but I am stumped.</p>
<p>Thanks</p>
<p>Ian</p>
http://stackoverflow.com/questions/1798209/postgresql-update-implies-move-across-partitions2PostgreSQL: UPDATE implies move across partitionspilcrow2009-11-25T16:35:34Z2009-11-26T04:40:11Z
<p><em>(Note: updated with adopted answer below.)</em></p>
<p>For a PostgreSQL 8.1 (or later) partitioned table, how does one define an <code>UPDATE</code> trigger and procedure to "move" a record from one partition to the other, if the <code>UPDATE</code> implies a change to the constrained field that defines the partition segregation?</p>
<p>For example, I've a table records partitioned into active and inactive records like so:</p>
<pre><code>create table RECORDS (RECORD varchar(64) not null, ACTIVE boolean default true);
create table ACTIVE_RECORDS ( check (ACTIVE) ) inherits RECORDS;
create table INACTIVE_RECORDS ( check (not ACTIVE) ) inherits RECORDS;
</code></pre>
<p>The <code>INSERT</code> trigger and function work well: new active records get put in one table, and new inactive records in another. I would like <code>UPDATE</code>s to the ACTIVE field to "move" a record from one one descendant table to the other, but am encountering an error which suggests that this may not be possible.</p>
<p>Trigger specification and error message:</p>
<pre><code>pg=> CREATE OR REPLACE FUNCTION record_update()
RETURNS TRIGGER AS $$
BEGIN
IF (NEW.active = OLD.active) THEN
RETURN NEW;
ELSIF (NEW.active) THEN
INSERT INTO active_records VALUES (NEW.*);
DELETE FROM inactive_records WHERE record = NEW.record;
ELSE
INSERT INTO inactive_records VALUES (NEW.*);
DELETE FROM active_records WHERE record = NEW.record;
END IF;
RETURN NULL;
END;
$$
LANGUAGE plpgsql;
pg=> CREATE TRIGGER record_update_trigger
BEFORE UPDATE ON records
FOR EACH ROW EXECUTE PROCEDURE record_update();
pg=> select * from RECORDS;
record | active
--------+--------
foo | t -- 'foo' record actually in table ACTIVE_RECORDS
bar | f -- 'bar' record actually in table INACTIVE_RECORDS
(2 rows)
pg=> update RECORDS set ACTIVE = false where RECORD = 'foo';
ERROR: new row for relation "active_records" violates check constraint "active_records_active_check"
</code></pre>
<p>Playing with the trigger procedure (returning NULL and so forth) suggests to me that the constraint is checked, and the error raised, before my trigger is invoked, meaning that my current approach won't work. Can this be gotten to work?</p>
<p><strong>UPDATE/ANSWER</strong></p>
<p>Below is the <code>UPDATE</code> trigger procedure I ended up using, the same procedure assigned to each of the partitions. Credit is entirely to <a href="http://stackoverflow.com/users/28158/bell">Bell</a>, whose answer gave me the key insight to trigger on the partitions:</p>
<pre><code>CREATE OR REPLACE FUNCTION record_update()
RETURNS TRIGGER AS $$
BEGIN
IF ( (TG_TABLE_NAME = 'active_records' AND NOT NEW.active)
OR
(TG_TABLE_NAME = 'inactive_records' AND NEW.active) ) THEN
DELETE FROM records WHERE record = NEW.record;
INSERT INTO records VALUES (NEW.*);
RETURN NULL;
END IF;
RETURN NEW;
END;
$$
LANGUAGE plpgsql;
</code></pre>
http://stackoverflow.com/questions/1800476/is-it-possible-to-have-a-stateless-timed-function0Is it possible to have a stateless timed function.optician2009-11-25T22:48:01Z2009-11-25T23:31:39Z
<p>I'm trying to set a reminder in a system to fire at a certain time.</p>
<p>This is a web based app, so it's not like it will be in memory all the time.</p>
<p>Ideally I'd like to avoid using a service or job on the server(mainly out of curiosity, to see if there is a more efficient way to do it)</p>
<p>For example, imagine how many Ebay bids are constantly ending all the times, and emails being sent out seemingly perfectly in time.</p>
<p>Do people recon there is just a big loop going over and over, moving items into a queue etc... Or is there something lower level helping out (stored procedures, triggers etc)</p>
<p>Thanks everyone.</p>
http://stackoverflow.com/questions/1798156/how-to-keep-an-audit-history-of-changes-to-the-table1How to keep an audit/history of changes to the tableewall2009-11-25T16:27:38Z2009-11-25T23:25:37Z
<p>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 changes made, who made them, and the date/time.</p>
<p>How might you solve this kind of thing?</p>
<p>(I'll be using C# in VS2008, ADO.NET connected to SQL Server 2005, WPF and Xceed's DataGrid, if it makes any difference.)</p>
http://stackoverflow.com/questions/1794682/constraints-instead-triggers-specific-question0Constraints instead Triggers (Specific question)Sheldon2009-11-25T04:43:55Z2009-11-25T05:16:32Z
<p>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 SUBCLASSES tables?</p>
<p>Whit a trigger is only a matter of check when INS.. UPD...</p>
<p>Is there a way to define that kinda relation by using only constraints (I'm newbie at this), thanks!</p>
http://stackoverflow.com/questions/134049/database-duplicate-value-issue-filtering-based-on-previous-value1Database Duplicate Value Issue ( Filtering Based on Previous Value)Bobby2008-09-25T15:35:45Z2009-11-25T02:24:15Z
<p>Earlier this week I ask a question about filtering out duplicate values in sequence at run time. Had some good answers but the amount of data I was going over was to slow and not feasible.</p>
<p>Currently in our database, event values are not filtered. Resulting in duplicate data values (with varying timestamps). We need to process that data at run time and at the database level it’s to time costly ( and cannot pull it into code because it’s used a lot in stored procs) resulting in high query times. We need a data structure that we can query that has this data store filtered out so that no additional filtering is needed at runtime. </p>
<p><strong>Currently in our DB</strong> </p>
<ul>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '1', '2008-05-08 04:03:47.000'</li>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '0', '2008-05-08 10:02:08.000'</li>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '0', '2008-05-09 10:03:24.000’ (Need to delete this) **</li>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '1', '2008-05-10 04:05:05.000'</li>
</ul>
<p><strong>What we need</strong></p>
<ul>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '1', '2008-05-08 04:03:47.000'</li>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '0', '2008-05-08 10:02:08.000'</li>
<li>'F07331E4-26EC-41B6-BEC5-002AACA58337', '1', '2008-05-10 04:51:05.000'</li>
</ul>
<p>This seems trivial, but our issue is that we get this data from wireless devices, resulting in out of sequence packets and our gateway is multithreaded so we cannot guarantee the values we get are in order. Something may come in like a '1' for 4 seconds ago and a '0' for 2 seconds ago, but we process the '1' already because it was first in. we have been spinning our heads on how to implement this. We cannot compare data to the latest value in the database because the latest may actually not have come in yet, so to throw that data out we'd be screwed and our sequence may be completely off. So currently we store every value that comes in and the database shuffles itself around based off of time.. but the units can send 1,1,1,0 and its valid because the event is still active, but we only want to store the on and off state ( first occurrence of the on state 1,0,1,0,1,0).. we thought about a trigger, but we'd have to shuffle the data around every time a new value came in because it might be earlier then the last message and it can change the entire sequence (inserts would be slow). </p>
<p>Any Ideas?</p>
<p>Ask if you need any further information.</p>
<p>[EDIT] PK Wont work - the issue is that our units actully send in different timestamps. so the PK wouldnt work because 1,1,1 are the same.. but there have different time stamps. Its like event went on at time1, event still on at time2, it sends us back both.. same value different time</p>
http://stackoverflow.com/questions/1265297/invoking-trigger-on-column-update0invoking trigger on column updatesrinivas2009-08-12T10:02:46Z2009-11-24T22:41:43Z
<p>Hi all,</p>
<p>I have a condition where in a trigger should be invoked whenever a particular column gets updated in a table but not when any other column gets updated.
Is it possible?</p>