Click here to Skip to main content
15,891,895 members
Everything / Trigger

Trigger

trigger

Great Reads

by Eng Ahmed Taha
MySQL trigger workaround for statement-level triggers mimicking Oracle's behavior.
by ASP.NET Community
In this article we are going to see how to have the browser resemble a fullescreen - through javascript. Usually it is not possible to trigger the
by Deepak A S
An ALL SERVER trigger to know who it is!
by Rick Drizin
Simple structure for keeping SQL Server Auditing Tables and Versioned Records in the same set of tables, using Audit Triggers and Entity Framework

Latest Articles

by zidane168
Use SQL triggers to keep track of the changes made to your data
by Eng Ahmed Taha
MySQL trigger workaround for statement-level triggers mimicking Oracle's behavior.
by Rick Drizin
Simple structure for keeping SQL Server Auditing Tables and Versioned Records in the same set of tables, using Audit Triggers and Entity Framework
by NightWizzard
Read and/or modify database objects like views, triggers, stored procedures and functions from .NET code.

All Articles

Sort by Score

Trigger 

2 Jan 2022 by Eng Ahmed Taha
MySQL trigger workaround for statement-level triggers mimicking Oracle's behavior.
23 Aug 2012 by Prasad_Kulkarni
Try Task Scheduler Managed Wrapper[^]. This library will surely fulfill all your needs regarding Scheduled Jobs.Windows Service[^] is an alternative for similar stuff. Refer more: http://msdn.microsoft.com/en-us/library/d56de412(VS.80).aspx[^]Here are some articles which...
26 Sep 2012 by Santhosh Kumar Jayaraman
why cant you just say insert into newtable( field1,field2) select field1,field2 from inserted
27 Feb 2013 by Babu Kumar
Hi Ram,CREATE TRIGGER DeleteLogRecordsON mainlog FOR DELETEASBEGIN SET NOCOUNT ON IF EXISTS(SELECT * FROM mainlog) INSERT INTO users2.dbo.sparelog SELECT * FROM deleted ELSE INSERT INTO users2.dbo.sparelog SELECT * FROM deletedENDCREATE TRIGGER...
11 Nov 2013 by Member 8566049
Just found out that I had to add ClientIDMode="Auto" to the Radiobutton list and it worked.I don't understand why I had to, but it works...
3 Feb 2014 by Kornfeld Eliyahu Peter
You declare @smtpserver varchar(100) but never set any value to it! For sure it will be null!I believe you have mistaken it with the @smtpserve you have on the stored procedure...
25 Jun 2012 by Sandeep Mewara
i want to register my user controls export button to my Page's Update panel's post back triggerAll you need is to register the button as PostbackTrigger for that update panel.
25 Jun 2012 by barneyman
Yes - Triggers can do this ...If the clients are talking to the DB with stored procedures, just changed the SP! If they're not using SPs, then this is only the start of a lot of painHave a look at An Introduction to Triggers[^]On inserts, the triggers get a table called inserted -...
25 Jun 2012 by Mohamed Mitwalli
Hi , Check this it has same problemhttp://www.sqlteam.com/forums/topic.asp?TOPIC_ID=152059[^]Best RegardsM.Mitwalli
13 Sep 2012 by Zoltán Zörgő
Try this one:CREATE TRIGGER liczy_zarobek_koszyk BEFORE INSERT ON koszykFOR EACH ROW BEGIN SET NEW.koszyk_zarobek = NEW.koszyk_ilosc * (SELECT produkt_zarobek FROM produkty WHERE product_id=NEW.produkt_id);END;Here is the cross reference:CONSTRAINT `koszyk_id` FOREIGN...
6 Nov 2012 by Ahmedwaheed
try thisinsert into Database1.dbo.Table1select (AllCOl except identity Col) from Database2.dbo.Table2
18 Apr 2013 by JaffreenaMichael
" UpdateCommand="Update Products SET name=@name,category=@category WHERE product_id=@product_id" InsertCommand="INSERT INTO Products(name,category,product_id) VALUES...
21 Aug 2013 by bowlturner
On my TabControl I have a Content Template that implements a Transition template. What I would like to do is have one template be used when the tab selected is 'higher' (to the right) and a different one when the tab is lower (to the left) of the current selected tab. This is to make it look...
22 Aug 2013 by Clifford Nelson
It might be easier to use a ValueConverter. At least it is easier to bebug. For information on using IValueConverter, try this article: Data-Binding-Using-IValueConverter-in-SilverlightData Binding Using IValueConverter in Silverlight[^]
6 Apr 2017 by Member 8566049
Hi,I am trying to cause a partial postback using the radiobutton list's selection event but it causes full postback. Any idea why this could be happening?I thought I would be able to get partial postback when;1) The control is inside the Update Panel2) The control's...
10 Jan 2014 by Thakkar Vipul
please check !! http://msdn.microsoft.com/en-us/library/ms189799.aspxThe following Transact-SQL statements are not allowed in a DML trigger:ALTER DATABASECREATE DATABASEDROP DATABASERESTORE DATABASERESTORE LOGRECONFIGUREThanks
19 Jan 2014 by Ron Beyer
The only way to do this with the SoundPlayer class is to use the PlaySync[^] method using a new thread. When the thread completes, the sound is over.So, in C# pseudo-code, you would have something like this:public class SoundEffect{ string _soundFile; Thread...
22 Apr 2014 by ravikhoda
to download or upload a file you need to add a full postback. please add postbacktrigger instead of asyncpostback trigger and check if that is worked or not. hope this will help.
2 Jun 2014 by sp_suresh
you ca use instead of triggerFor this http://blog.sqlauthority.com/2013/01/24/sql-server-how-to-use-instead-of-trigger-guest-post-by-vikas-munjal-koenig-solutions/[^]
2 Jun 2014 by ArunRajendra
Might be I am deviating you from the issue. You can think of having computed column with persistence.http://blog.sqlauthority.com/2010/08/03/sql-server-computed-column-persisted-and%C2%A0performance/[^]
2 Jun 2014 by Chris Quinn
In this case you don't need a trigger - you can just have a computed column - much easier and less expensiveComputed columns[^]Add the column to the table, then in the Computed Column specification add the following.Convert(varchar(10), [ID]) + Left([FirstName],1) +...
3 Jun 2014 by Ravi Anand
Here you can try following demo to perform your required operation using trigger only or otherwise you can use computed column too, which i defined in demo.CREATE TABLE Employee_Test(Emp_ID INT Identity,Emp_name Varchar(100),Emp_Sal Decimal (10,2),alldata nvarchar(100) not...
14 Jun 2014 by Peter Leow
Refer: Triggers -- SQL Server[^]
9 Sep 2014 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
SolutionWhy are you dynamically adding the button as a Trigger. You are doing it because you are calling one custom Event that is "AddParameterClick".Whatever you are doing inside this Event can be done inside the ItemCommand[^] Event itself. And you can declare ItemCommand Event as a...
19 Jan 2015 by Wendelius
The code in the trigger looks a bit odd. Try something like this instead:CREATE TRIGGER TRI_BOOKON BOOKSFOR INSERTASBEGIN INSERT INTO BOOK1 (BOOKNAME, AUTHOR) SELECT BOOKNAME, AUTHOR FROM inserted; PRINT 'INSERT TRIGGER FIRED'ENDGO
30 May 2015 by RDBurmon
If I understand your question correctly, you want to fire a trigger to insert row into bigstores when below condition matches1) Store has QUANTITY more than equal to 50000 in INSTOCK table2) Store is already added in stores table3) store is NOT already added in bigstores tableThen here...
25 Oct 2016 by manu_dhobale
Here is good documentation around using Distributed QueriesQuestions About Using TSQL to Import Excel Data You Were Too Shy to Ask - Simple Talk[^]
7 Jan 2017 by Wendelius
As far as I can see the problem is that a single DELETE statement can delete multiple rows. In such case the trigger is fired only once and the deleted table contains one row for each deleted row. So when you fetch value from the deleted table you get many rows.Here's a simplified test...
27 Mar 2018 by Richard Deeming
Quote: microsoft office can not be installed on this server You cannot automate Microsoft Office unless it is installed. You also cannot use Office Interop from a non-interactive application, including SQL Server and ASP.NET: Considerations for server-side Automation of Office[^] Microsoft...
17 Dec 2019 by Richard Deeming
The trigger will be fired after each DML statement. You cannot change that. But you can insert multiple rows in a single statement: INSERT INTO YourTable (Columns) VALUES (Row 1), (Row 2), (Row 3) ; -- Or: INSERT INTO YourTable (Columns) SELECT ColumnsFromOtherTable FROM...
20 Jul 2022 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...
21 Jul 2022 by CHill60
Quote: learning SQL server for free from SQL server videos shared by my friend I've not yet been able to find a video that conveys sufficient information on technical topics by itself. If you are going to use them at all, use them in conjunction...
1 Jan 2023 by Graeme_Grant
For Data Binding[^], you use an ObservableCollection[^] class, not a List. UPDATE The trick with Data Binding[^] is not to replace the collection with a new collection, but to clear and add to the collection. Replacing the collection will...
25 Jun 2012 by kishhr
Update Panel has AsyncPostBack triggers, within which you can embed button and point to the respective panel, this solves your problem
25 Jun 2012 by Mohammad Dayyan
I have an MSSQL Server 2008 Database.There are some tables in my Database like below :table1, table2, table3, ....each table has a NVARCHAR(50) field (Name)Now, I wanna change the strings that each sql query inserts in this fielde.g :We have a query that wanna insert "Sample Text" in...
27 Jun 2012 by jitz102002
CREATE TRIGGER MyTrigger ON TableAAFTER INSERTASDECLARE @COLUMN1 AS NVARCHARDECLARE @COLUMN2 AS NVARCHARDECLARE @COLUMN3 AS NVARCHARSELECT @COLUMN1=COLUMN1,@COLUMN2=COLUMN2 FROM INSERTEDEXEC STOREDPROCEDURE @COLUMN1,@COLUMN2,@COLUMN3=?i have two tables named table A and...
27 Jun 2012 by Kiran Susarla
Make @COLUMN3 parameter in Table B storedprocedure as optional parameter.
23 Aug 2012 by SREEKAN2
I am looking to do an action on every day at a particular time like triggers in sql, but here i am looking to do this in c#.net, can any one please help me,Thanks
23 Aug 2012 by Zoltán Zörgő
It depends on the action itself. Ex:- SQL Server: Schedule a job in SQL Server Agent (http://msdn.microsoft.com/en-us/library/ms191439.aspx[^], SQL Agent: A Job Scheduler Framework[^])- Using a scheduler service (A New Task Scheduler Class Library for .NET[^],...
23 Aug 2012 by SREEKAN2
Thanks all for your solutions I got a mixed one from all by creating a windows service and adding a timer to that once, and i am calling the function on elapsed event of that timer, this one i found it from...
26 Sep 2012 by Belial09
Hello,is there any chance of creating a trigger like this one:CREATE TRIGGER tri_Test ON TESTTABLE FOR UPDATE NOT FOR REPLICATION AS SET NOCOUNT ON BEGIN DECLARE @Field1 varchar(31) DECLARE @Field2 bigint SELECT @Field1 = Field1...
6 Nov 2012 by hardi24
hello friends please i need your help for my projecti want to insert values into a field from one table into another table if some values of the other fields in the both table are equal thanks
9 Nov 2012 by hardi24
hello friends please help i have these two table dbo.carInfo and dbo.Record the first table dbo.carInfo contains fieldshas these fieldsidplateNoplateCityplateColorownerFullNamemobileand the second table dbo.Record has these...
9 Nov 2012 by fjdiewornncalwe
Your database is not normalized properly. There should never be this kind of duplication in data. A much better model would look like this.dbo.Car id plateNo plateCity plateColor ownerFullName mobiledbo.Record id carId (foreign key to dbo.Car) location...
18 Nov 2012 by shawa00
i have been asked to create a procedure to make discounts for customersfor every 3rd visit a 10% discount must be applied for the customer for every 6th visit a 20% discount must be applied for the customerand for every 9th and subsequent visit a 30% discount must be applied for the...
26 Nov 2012 by Jorge J. Martins
HiI've been Googling all day for a help on this problem and couldn't find any answer.It concerns a timeout error in SQL Server 2008 R2 when a T-SQL Trigger in one Database fires a CLR Trigger on another Database.This is my scenario:First DB (PORTAL_MENSAGENS) has a trigger that fires...
17 Dec 2012 by nganesha1408
Hi,I have never written triggers before, so would apprecite any helpor suggestion on this. In my database I have 2 tables:Master table (Orders) OrderIdDepartmentStatusTable: PriorityOrderIdOrderPriorityWhat I want is:1) Insert new priority:when a status of an...
16 Jan 2013 by Elan.Cao
There's a datagrid in my from,and I ues a DataTrigger to set the DataGridCell's foreground color to ensure that it looks clear,just like this:
16 Jan 2013 by Thomas Duwe
Hi,I think you can achieve this using a MultiDataTrigger for the IsSelected property(in addition to the DataTrigger for the State property) like so: ...
20 Jan 2013 by gouravkaila
Dear All,I am using an updateprogress control in combination with an update panel.When i am trying to call it,it's not working.My Update Panel is-
20 Jan 2013 by Zafar Sultan
Add UpdateMode = "Conditional" in your update panel.
20 Jan 2013 by Rahul Rajat Singh
In the triggers section you have added the controlId but you have not added the event on which the updatepanel should get updated. Add the "click" event of the control to make it work.
23 Jan 2013 by Jorge J. Martins
Solved it myself.For some reason, I haven't found, this scenario (Trigger on one DB inserts rows on table on another DB that fires a CLR trigger) doesn't work at all.Turned to a Service Broker messaging solution and it's working in perfection now.
27 Jan 2013 by Minghang
hello experts, i want to be able to insert the name of the column that was modified into another table using after triggers.USE [Test]GO/****** Object: Trigger [dbo].[trgUpdate] Script Date: 01/28/2013 13:33:47 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER...
3 Feb 2013 by good.shankar
Hi,I have a live application logging some values from a device @ the rate of one insertion per second.Now my problem is i want to get notified in my UI when value inserted in table goes out of a range...I don't Know how to implement this... Please help with which technique to use......
22 Feb 2013 by gvprabu
Hi Friend,You need to make Audit of all New Procedures and Track the Procedure Changes with Procedure Text right. Here clearly explained how to do Audit in care of any procedure changes in DB. You will go for Database Trigger and get the details from Trigger and Store in a table in...
26 Feb 2013 by Ram7 from Hyderabad
Hii to all I have a requirement that,i have two tables (i)mainlog,present in sqlserver(ii)sparelog,present in MySql which is present in different server location.I need to write a trigger to copy a mainlog table data to sparelog table.when ever any DML operation is performed to mainlog table...
26 Feb 2013 by Chris Reynolds (UK)
You need to look into linked servers. This lets a SQL server instance talk to another instance (usally of SQL Server) including MySql. Here is a post that tells you how to create a linked server to MySQL:www.sqlservercentral.com/Forums/Topic340912-146-1.aspx[^]I've never done this to...
27 Feb 2013 by Khorshed Alam, Dhaka
You can try with OPENQUERY with help of Linked ServerCREATE TRIGGER LogRecordsON mainlogFOR INSERTASBEGIN SET NOCOUNT ON IF EXISTS( SELECT * FROM mainLog ) BEGIN INSERT OPENQUERY(MySQLLinkedSvr,'SELECT * FROM Table') SELECT * FROM ...
27 Feb 2013 by Ram7 from Hyderabad
hii to all, I have a requirement that,i need to migrate or copy the data between two tables.Actually i have two tables Mainlog(in user db) & Sparelog(in users2 db) with same structure present in different databases,now if any data is inserted into mainlog table it should automatically copy to...
4 Apr 2013 by Member 8681301
Can anyone tell me why the DataTriggers in the following XAML code are setting the background color of the entire row of the DataGrid and not the individual cell? I have the TargetType set to "DataGridCell".
4 Apr 2013 by Clifford Nelson
I would suspect that every cell in the row probably is looking at the same property aciton. Therefore when the value of aciton changes, every cell in the row gets the same color.
24 Apr 2013 by cnh 2
Hi,a slightly shorter question/problem with some Examples this time ... I'm trying to link the following tables and create a computed column on the third table to limit the entries of future Records ... But first the Tables & some Data:First Table is the Breakdown-Table - it contains about...
25 Apr 2013 by Mjs Martin
What is the proper way for implementing audit triggers. I found many examples but I am still not sure what is the best way to implement. I need to track changes on few tables. Basically I need to keep track of everything. I want it nice and clean.
25 Apr 2013 by Sudhakar Shinde
Refer this link to understand how to implement[Audit Trail].
28 Apr 2013 by CHill60
The "proper" way to make triggers really depends on your database schema, your application, your need to audit etc etc .... for example *we* currently audit approximately 150 "sensitive" items across 20 tables ... we don't "care" about the rest. This link has discussions about several...
21 May 2013 by vishal.v.patil
DELIMITER //CREATE TRIGGER `test11` BEFORE UPDATE ON batch FOR EACH ROWBEGIN DECLARE proud Double; DECLARE result_position int; DECLARE result_all int; DECLARE date1 date; DECLARE cust varchar(100); SET @result_position = 1; DELETE FROM temp; SELECT...
17 Jun 2013 by Sam Oryza Reyno
Guys, i need to make a trigger for my table ([Print Record] table).. This trigger will active when i print some data, and i need to get the people's name who print, date (now) , and time, and what he print.. here is some of my printing codes: private void...
17 Jun 2013 by Christian Graus
Why would you want a trigger ? A trigger fires on an event in your database. You just want to write code to store in your database that someone pressed 'print'. There may be an event when printing is done, otherwise, I'm not sure how you tell if a user aborted.
27 Jun 2013 by George Cruys
Been messing around on mysql for a bit now.. .trying to teach myself the in's and out's. I have now come across MySQL Triggers... I would like to write a trigger that just simply moves data "after insert" from one table to another table (which is an exact copy)....Lets say the one table...
27 Jun 2013 by CHill60
Yes it is ... see this http://www.sitepoint.com/how-to-create-mysql-triggers/[^]
2 Jul 2013 by Muhammed Salah
i made an stored proc ALTER proc [dbo].[MakeOrder]@barcode varchar(50),@packs int ,@units int,@Eid int asbegininsert into Orders (Barcode,Price,PacksQty,UnitQty)values...
2 Jul 2013 by Mahesh Bailwal
Follow link belowTriggers -- Sql Server[^]
2 Jul 2013 by Radhadeep12
Try thisCREATE TABLE Product(Id INT, Stock INT,UnitsStock INT)INSERT Product VALUES(1,100,200),(2,200,400),(3,300,600),(4,400,800)GOCREATE TRIGGER trUnitStocks ON ProductFOR UPDATEASBEGIN DECLARE @UnitStocks INT SET @UnitStocks = (SELECT I.UnitsStock FROM INSERTED...
5 Jul 2013 by kumar.selva.c
I have an usercontrol with a `LlistBox`, which has an `ItemsSource` with a Collectionview. In order to group, I used the group style where the grouped items will be within the `Expander` control as follows.I want the `Exapander` with the label content "UNKNOWN" has to be Closed by default...
14 Sep 2013 by Yesudasan Moses
Hi friends, I am trying to update a value in a table while inserting..I am using this trigger... CREATE TRIGGER add_auth_code ON dbo.aspnet_Users AFTER INSERTASBEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT...
14 Sep 2013 by Mubin M. Shaikh
Hi Please refer below example , it may help you, you have to use key columns of table in join with Inserted Table. so here you can know what is id or userid of newly inserted record. and then you can do update on it.sample code 4 U:CREATE TRIGGER add_auth_code ON dbo.aspnet_Users ...
11 Oct 2013 by ASP.NET Community
In this article we are going to see how to have the browser resemble a fullescreen - through javascript. Usually it is not possible to trigger the
15 Oct 2013 by Channa Senevirathne Bandara
I need to use trigger for one of my database this is offer data tableCREATE TABLE IF NOT EXISTS offer_detail ( id int(60) NOT NULL AUTO_INCREMENT,company_id int(60) NOT NULL,offertype_id int(60) NOT NULL,category_id int(60) NOT NULL,place_id int(100) NOT NULL,offer_title...
17 Oct 2013 by W Balboos, GHB
You have a significant problem in your table design: your offer_from and offer_to fields are defined as varchar(80) - so comparing to NOW() will never work. You should declare them both as datetime fields.Once you have that fixed, you can take Thomas ktg's comment, the proper solution, and...
9 Jan 2014 by Abhilask kumar
how to create table in trigger
10 Jan 2014 by Abhilask kumar
it is simple >create table tmp_tab([id] int,[name] varchar(20)).
19 Jan 2014 by Member 10405651
Hey I am developing a program that triggers music layers based on your movements in front of the Kinect.But It should not trigger a sound that is already playing. How do I check if the sound-file I want to play is already playing?I am using C#Thx in advance :)
22 Jan 2014 by bobb024
Hey Everyone,I have a some code inside of an update panel. It contains textboxes, drop downs, an image and a button. When the button is clicked it is supposed to refresh the image with the new content. My update mode is conditional and I am calling the update() after the button is clicked...
3 Feb 2014 by Prasad Bhujbal
I want to create a trigger after insert which will check whether table contains a record or not. if record exist, I want to update that record otherwise insert that record. CREATE TRIGGER tgr_setting ON Email_SMS_Setting AFTER INSERT AS Begin DECLARE @RC INT , @smtpserver...
23 Feb 2014 by Esmaeil Ebrahimi
I want c# windows application for send sms when any record added successfully to special table in SQL Server 2008i have not any problem with send SMS . only want the time that SMS should send .I want have a some windows form for set SMS Panel Setting , Contact Numbers and ... Now i want...
23 Feb 2014 by Maciej Los
I think, you can use SQLDependency Class[^], which provides functionality to receive notifications when the data in the database have changed.Here is an excellent example: Using SqlDependency for data change events[^]
5 Feb 2017 by Acube14
I have a product details table, the fields in the table are Prod_Id, Product_Name, Quantity, Prefix, Slno. Now i have created trigger for varchar data type field and implemented auto increment for Prod_Id (Primary key) and for Slno. the code creates prod_Id like book_001, Shoe_002,...
19 Mar 2014 by bindash
hii.. all i want to use trigger in sql server using asp .net c#.. my stored procedure update data in 2 tables using inner join.. i want to store this updated data in one table (i create a table (UPDATE_LOG)with both table parameters)..my table name is passed using like this for update...
19 Mar 2014 by Andrius Leonavicius
Hi,First of all, you're saying that your stored procedure updates data in 2 tables using INNER JOIN. Actually, you can't update multiple tables in one statement. So you're updating one table with one UPDATE statement (maybe you're taking values from 2 tables using INNER JOIN?). After UPDATE...
8 Apr 2014 by pokey4
I have a TabControl that has a frame in each TabItem. I only listed one TabItem below for simplicity. Whenever I move my mouse over any control in the frame, the IsMouseOver style change occurs on the selected TabItem in the TabControl and changes to Gray. What am I doing wrong?Update: I...
8 Apr 2014 by pokey4
I had to add SourceName="ContentSite" for some reason.
22 Apr 2014 by srikanta.mondol
I have a button that exports a gridview to excel, which is working fine outside the updatepanel..But I want the button inside updatepanel..I have written a trigger to solve the issue, but nothing happens when I click the button, below is the code: ...
23 May 2014 by Pranav-BiTwiser
I am trying to write SQL trigger to change the rental_rate of every new film inserted into the database on the basis of the following price chart.special feature 'trailers' 10c increase special feature 'commentaries' 50c increase special feature 'Deleted Scenes' 20c increase special feature...
23 May 2014 by RDBurmon
Create INSTEAD OF INSERT trigger. Here is scriptCREATE TRIGGER CHArraa ON filmINSTEAD OF INSERTASBEGINSET NOCOUNT ON INSERT INTO dbo.film SELECT special_features, CASE WHEN special_features = 'Trailers' THEN rental_rate + 0.10 WHEN...
2 Jun 2014 by Kishan Gupta
Hi all,I have a table (Customer) in SQL Server 2008. There are 4 columns in this table "ID", "FirstName", "LastName", "Code".Now I want that whenever someone insert data in columns (ID, FirstName and LastName), the "Code" column should be automatically filled with a value.The value...
14 Jun 2014 by Muhammad Taqi Hassan Bukhari
I have a table in ms sql server. I want to set trigger that whenever today is finishdate the column IsActive is set to false. or MaxNotification & MaxArticles & MaxVideos & MaxEvent = 0 Set IsActive = false.How would i achieve this...please help...Create Table...
8 Sep 2014 by RahulMGunjal
Dear all, I have created a trigger which inserts entry into new table whenever there is change in specific column. But I received a complaint from client saying that log is not maintained for all updated records in Log Table. I feel it may be due to trigger is turned off while updating some...