<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Trigger | Varinder Sandhu</title>
	<atom:link href="https://varindersandhu.in/tag/trigger/feed/" rel="self" type="application/rss+xml" />
	<link>https://varindersandhu.in</link>
	<description>Keep it Simple and Smart</description>
	<lastBuildDate>Mon, 13 May 2013 17:22:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://varindersandhu.in/wp-content/uploads/2020/05/varindersandhu_favicon.ico</url>
	<title>Trigger | Varinder Sandhu</title>
	<link>https://varindersandhu.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">22788835</site>	<item>
		<title>Oracle – PL-SQL – Trigger &#8211; After Insert OR Update OR Delete</title>
		<link>https://varindersandhu.in/2012/01/16/oracle-pl-sql-trigger-after-insert-or-update-or-delete/</link>
					<comments>https://varindersandhu.in/2012/01/16/oracle-pl-sql-trigger-after-insert-or-update-or-delete/#comments</comments>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 12:47:53 +0000</pubDate>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle-Tips and Tricks]]></category>
		<category><![CDATA[Oracle-Triggers]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[After Delete]]></category>
		<category><![CDATA[After Insert]]></category>
		<category><![CDATA[After Update]]></category>
		<category><![CDATA[Trigger]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=2129</guid>

					<description><![CDATA[<p>We can create a trigger with multiple actions (i.e.  Insert or Update or Delete) here sharing an example of trigger in which we can handle three actions as insert, update and delete. Example: CREATE OR REPLACE TRIGGER EMPLOYEE_AI_AU_AD AFTER INSERT OR UPDATE OR DELETE ON EMPLOYEE FOR EACH ROW DECLARE</p>
<p>The post <a href="https://varindersandhu.in/2012/01/16/oracle-pl-sql-trigger-after-insert-or-update-or-delete/">Oracle – PL-SQL – Trigger – After Insert OR Update OR Delete</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
					<wfw:commentRss>https://varindersandhu.in/2012/01/16/oracle-pl-sql-trigger-after-insert-or-update-or-delete/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2129</post-id>	</item>
		<item>
		<title>Oracle -PL-SQL-Trigger &#8211; Old and New Column Values</title>
		<link>https://varindersandhu.in/2012/01/02/oracle-pl-sql-trigger-old-and-new-column-values/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 13:06:11 +0000</pubDate>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle-Tips and Tricks]]></category>
		<category><![CDATA[Oracle-Triggers]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[New Value]]></category>
		<category><![CDATA[Old Value]]></category>
		<category><![CDATA[Trigger]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=2111</guid>

					<description><![CDATA[<p>Within a trigger body of a row trigger, two correlation names exist for every column of the table being modified: one for the old column value, and one for the new column value. Depending on the type of triggering statement, certain correlation names might not have any meaning.  A trigger</p>
<p>The post <a href="https://varindersandhu.in/2012/01/02/oracle-pl-sql-trigger-old-and-new-column-values/">Oracle -PL-SQL-Trigger – Old and New Column Values</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2111</post-id>	</item>
		<item>
		<title>Oracle &#8211; Types of the Triggers</title>
		<link>https://varindersandhu.in/2011/12/19/oracle-types-of-the-triggers/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 11:33:20 +0000</pubDate>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle-Triggers]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Trigger]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=2086</guid>

					<description><![CDATA[<p>There are four types of triggers: Table-level triggers can initiate activity before or after an INSERT, UPDATE, or DELETE event. View-level triggers define to the view. Database-level triggers can be activated at startup and shutdown of a database. Session-level triggers can be used to store specific information.</p>
<p>The post <a href="https://varindersandhu.in/2011/12/19/oracle-types-of-the-triggers/">Oracle – Types of the Triggers</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2086</post-id>	</item>
		<item>
		<title>Oracle &#8211; PL-SQL- Introduction of Triggers</title>
		<link>https://varindersandhu.in/2011/12/19/oracle-pl-sql-introduction-of-triggers/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 11:28:26 +0000</pubDate>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle-Triggers]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Trigger]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=2081</guid>

					<description><![CDATA[<p>A trigger is a procedure that is run automatically by the database when a specified SQL DML INSERT, UPDATE, or DELETE statement is run against a table or view. Triggers are similar to stored procedures. A trigger stored in the database can include SQL and PL/SQL statements to run as</p>
<p>The post <a href="https://varindersandhu.in/2011/12/19/oracle-pl-sql-introduction-of-triggers/">Oracle – PL-SQL- Introduction of Triggers</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2081</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 
Database Caching using Disk (Request-wide modification query)

Served from: varindersandhu.in @ 2025-10-30 13:13:09 by W3 Total Cache
-->