Triggers are rules, that when evaluate to true perform one or more actions.

learn more… | top users | synonyms (1)

1
vote
0answers
15 views

How to update a rows with same prodID on a UPDATE?

I get the following error: "Can't update table 'Product' in stored function/trigger because it is already used by statement which invoked this stored function/trigger." CREATE TRIGGER ...
0
votes
0answers
8 views

Trigger to delete previous data on INSERT

My table has the following columns: type, how, what, index I need a trigger so when I insert a new record containing: --TYPE--HOW--WHAT--INDEX-- INSERT INTO table VALUES(10, ...
0
votes
1answer
23 views

MySQL Trigger Sum Two Columns where userID is the same

I have the following product table id | companyID | prodID | price | stock | stockAvailable | sumStock 1 A 2 10 5 4 2 B 2 50 ...
0
votes
1answer
27 views

WPF Trigger on TextBlock doesn't work C#

I want to make a centerized TextBlock, my first step is to try to make a trigger bind ActualWidth with Canvas.Left to see if it works, but unfortunately it doesn't work, it doesn't work after this: ...
1
vote
1answer
24 views

If statement in multiple SQL triggers

I need some help with MySQL triggers, and my guess is it should be quite simple. I have a db which consists of 3 tables (trable1, table2, table3), each of these has two columns (column1, column2). So ...
0
votes
0answers
13 views

Apex Trigger Exception

"Error: Invalid Data. Review all error messages below to correct your data. Apex trigger ItemizationAfterTrigger caused an unexpected exception, contact your administrator: ItemizationAfterTrigger: ...
0
votes
1answer
18 views

mysql trigger after update multiple another table

I have 2 tables "description_acc_all_lang" - this contains translations of text in 15 languages each field is the language translation CREATE TABLE `description_acc_all_langs` (<br> `code` ...
0
votes
1answer
19 views

Trigger Compilation Error, Oracle 11g

Banging my head up against this one for a while. I'm constructing a database on oracle 11g, and am attempting to insert a record into a "registry" table whenever a record is created on a "data ...
1
vote
3answers
31 views

Stuck on PL/SQL: ORA-00933: SQL command not properly ended

I can't see my error. I marked the places SQL Developer is citing errors. Can you see where I am going wrong? ZCTA5_2000 is a valid table with data. CREATE OR REPLACE TRIGGER zip_trigger BEFORE ...
0
votes
2answers
18 views

Setting up a trigger in PHPMyAdmin

I'm trying to comprehend triggers, and I think I fully understand them, but I haven't been able to implement any of them. I want this code to delete a user with the name "test". So if anyone updates ...
0
votes
1answer
27 views

SQL Server Trigger using inserted ID

I'd like to create a trigger against an insert of a table in my database. So for example, if I have a company_name table, I'd like to do the following: Insert new row into company_name table on ...
0
votes
2answers
40 views

SQL Server 2012 using SELECT in trigger breaks table

So let me first admit that I am a SQL Server newbie. Here's the deal: I'm trying to create a trigger on a table in SQL Server 2012, and whenever I try any kind of SELECT statement in the trigger, the ...
0
votes
1answer
12 views

Postgres avoid Trigger on delete cascade

Hello i have a problem with a Trigger i have 2 tables: t_mandant t_user_has_mandant when i delete a row in t_user_has_mandant i call a trigger beforeDeleteUserMandant() but i need a possibility ...
0
votes
0answers
12 views

Trigger update does not work when creating a new request

I am new to DB Oracle, When I create a new request in Clarity (that is a project & portfolio management application) or when I change the status of a request, I would like to update the field ...
0
votes
0answers
14 views

Turn off lead assignment rules in salesforce lead trigger

I'm having trouble with a Salesforce lead trigger, fired after insert. The lead assignment rules need to be on by default, but I need to bypass the rules for leads that match a certain criteria. ...
0
votes
1answer
9 views

Update data during insert in a Trigger and then insert

I have situation where, I have 10 columns in a table. I am inserting 5 columns from a program and for 5 columns, I want to create a trigger. Is it possible? And if yes, How do I do that? col1 col2 ...
0
votes
0answers
9 views

trigger Jquery a page that has an iframe that calls another page and in this event to refresh in Jquery that is on the parent page

Friends, I would like to recall one jquery which in pag: master.aspx after a event of a child page inside of iframe of this master.aspx (I will try explain in detail below): <link ...
0
votes
1answer
20 views

ASP.NET USERCONTROL WITH UPDATE PANEL INSIDE PAGE UPDATE PANEL

I have a master page with the Scrip manager. Have one page that use the master page and inside of this page i have an updatepanel. Inside this update panel i call a UserControl that have inside other ...
0
votes
0answers
38 views

WPF styling . Have no idea how to do it

I am trying to make an image button in WPF based on the following article Custom button template in WPF The problem with this is that I have No Idea how to make the image to become grayscale when ...
0
votes
0answers
19 views

Concatenating strings and column value in trigger mysql

What is to accomplished is that whenever inserting any new row in the product table, the search column should first get productname, pgtitle column should have a concatenated value of string and new ...
0
votes
0answers
18 views

How to auto Trigger Alarm Manager on its own instead of onClick

Hey below is my code which is working very fine, i am calling service after 10 seconds on click of button using Alarm Manager. I want to automate this process say every 10 minutes it should trigger on ...
-2
votes
1answer
31 views

Not allowed to return a result set from a trigger

I need to increment the next highest character field upon an insert - e.g. if '007' exists, then next is '008' I have a stored procedure: BEGIN SELECT LPAD(CAST(MAX(Line_Order) AS SIGNED ...
0
votes
1answer
29 views

How to write a trigger to move data I want to delete from a table to antother before deleting it

I wrote this trigger which monitor a table called employees , and when deleting an employee from that table the trigger should fire , and copy the employee we want to delete from the table employees ...
-1
votes
2answers
51 views

How to write a trigger to check if salary is out of min or max range of salaries pl-sql Oracle

I'm trying to write a trigger that check if the salary is less or greater the min or max salary using pl-sql in oracle but it keeps giving me an error , it says:Error(11,1): PLS-00103: Encountered the ...
0
votes
0answers
20 views

Trigger to prevent update of specific columns and rows in Mysql

I recentely posted a question about a trigger able to prevent update of specific tables, then I asked in comments a solution to prevent update of speficic columns and rows. I managed to write a ...
0
votes
1answer
25 views

ToggleButton IsChecked trigger

I am writing one application where I have a ToggleButton and other few controls on UI. I want to achieve bellow two things when state of ToggleButton is IsChecked. 1) Hide few controls e.g. ...
0
votes
1answer
25 views

trigger is giving ORA-04091 error

I have a after insert trigger on table tbl_campboss_report , but it is giving me tbl_campboss_report is mutating, trigger/function may not see it this is my trigger: BEGIN update ...
-3
votes
0answers
22 views

sql for trigger FOR OLYMPIC GAME DATABASE

I created table name 'OLYMPIC_GAME_TYPE' as: create table olympic_game_type( og_type_id numeric primary key, og_type_title varchar2(50) unique NOT NULL ); with values insert into ...
0
votes
1answer
42 views

Multiple Row Update SQL Trigger from Single Update SQL Statement

Ok. I am quite new to SQL triggers and have had some issues with them. Insert trigger works just fine, and the Delete trigger also. At first, doing a delete on multiple rows would only delete one, but ...
1
vote
0answers
21 views

jQuery and custom events [closed]

I have this event that gets triggered from within a frame: window.top.$(window.top.document).trigger('object-selected',['Custom', 'Event']); In the parent window, I listen like so: ...
1
vote
1answer
28 views

Find out if ID was auto-incremented in before insert-trigger?

In MySQL I need to know if it's possible in a BEFORE INSERT trigger to find out if the primary key ID (NEW.Id) is being automatically generated by the auto-increment value or if the ID was manually ...
0
votes
1answer
32 views

Trigger for updating total records on both insert and delete

I'm writing a trigger to store the record count of one table as a column in another to speed up some reporting queries on a large db. Here's what I've got so far, it works fine on deletes but I also ...
3
votes
1answer
51 views

What is the MySQL equivalent of SQL Server's UPDATE() trigger function?

I need help converting this MS SQL update trigger to MySQL. My problem is with converting the MS SQL UPDATE() function, which identifies the specific columns that were updated: ALTER TRIGGER ...
0
votes
0answers
10 views

Thread waiting for change on external hardware trigger

I am writing an image processing application that needs to wait for an external trigger from light barrier (light sensor with two states). This is how the code looks right now: while (true) { ...
1
vote
2answers
66 views

Datagrid: background colour + disable of selection depending on the cell value - using trigger

There is a lot of questions about WPF datagrids on SO, but I still have to ask mine cause I just can't get what I want from those... so don't be mad with me and try to help me by answering pretty ...
-1
votes
1answer
38 views

jQuery - triggering sequence of clicks won't work

hi this is my code http://jsfiddle.net/Xy4dF/1/ i have this part: $('#top-user').on('click', function () { alert('1'); }); $('.user').on('click', function () { alert('2'); ...
0
votes
0answers
24 views

Execution of DLL code from SQL server

I am trying to create an online MVC 4 web appointment reminder system and I would like some pointers into the direction I should take. At the moment, I am cracking my head trying to figure out the ...
0
votes
1answer
37 views

Custom auto-increment field in postgresql (Invoice/Order No.)

The baseline requirement is to create an order number in the format: (M)M-SSS Where MM represents the current month and SSSS represents the order sequence for that month. For example 1-002 would ...
1
vote
1answer
23 views

Trigger - Insert into audit, prevent update on live table

First post here. I want to create a trigger so that when someone tries to update the table it prevents the update and logs the attempt in an audit table. USE [AdventureWorks2008R2] GO SET ...
0
votes
1answer
29 views

jquery animation delay when scrolled

im currently struggling with a jquery animation. its just a little animation to change height and opacity on scroll. the problem is, that the animation doesnt run fluently while i scroll. when i ...
0
votes
1answer
35 views

Solutions for tracking how many times certain parameters are used in a stored procedure SQL Server 2008

In my database have tables with structures similar to: create table ItemNameSearches (ItemName varchar(50) not null,timesSearched int not null, primary key(ItemName)) and create table ItemList ...
1
vote
2answers
44 views

Trigger to select data from another table and then update it to the current table SQL Server

Please help me, I have a simple case that makes me little crazy, I have a table called PRODUCTS here is the structure create table PRODUCT ( ID_PRODUCT CHAR(5) primary key not null, NAME_PRODUCT ...
3
votes
0answers
53 views

CREATE TRIGGER sys_exec and python

my python on /usr/esercizi/ is: #!/usr/bin/python import datetime now = datetime.datetime.now() aa = now.strftime("%Y-%d-%m %H:%M | %S") out_file = open("test.txt","w") out_file.write("La data di ...
1
vote
0answers
22 views

Implementing event triggered action on Filezilla FTP server

I am using an opensource Filezilla FTP server that does not support event triggered actions. I want to build a component for handling the rules, based on the file creation event in a folder that will ...
0
votes
1answer
33 views

Select a column default value into a variable in Pl/PgSQL

I'm trying to implement a generic trigger procedure to enable a sort a versioning scheme on tables. Tables all have version and current fields. On updates, in some situations based on a condition, i ...
0
votes
2answers
41 views

When trigger failed to write in remote server, write to local server

First sorry for my English. I have one server when receives an update in specific table, I want write to a remote server too, but if the remote server is unavailable, I want the trigger to write to ...
0
votes
0answers
9 views

WPF Ribbon control IsSelected property showing error

Where can i find the latest ribboncontrolslibrary.dll for downloading. Trigger Property="IsSelected" Value="True" this property is showing error. i am using this property in the ribbontabheader. ...
-2
votes
0answers
21 views

Creating triggers, algorithm

I need to create "trigger system" for PHP project. "Trigger system" is something similar to Thunderbird filtering system. I have entries, with some attributes: title, category, status. I want to ...
0
votes
3answers
21 views

What environment variables are passed go Jenkins when using the Gerrit Trigger Plugin?

I'm using the Gerrit Trigger Plugin to kick off Jenkins builds, but haven't found a good place where all of the environment variables are documented. Does such documentation exist?
-1
votes
0answers
17 views

Here have 2 tables with same columns ..how to Write a trigger to sync the table in (2) whenever there is an update in (1)

Table 1:-- ------------ create table employee(ename varchar(20),eid int,jobtitle varchar(20)); insert into values("subbu",1,"software"); insert into values("bala",2,"software"); ...

1 2 3 4 5 102