C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
9
Reply
How many types of Triggers in SQL SERVER?
Rohit Kumar
13y
44k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
There are four types of trigger in sql server. 1. DDL Triggers 2. DML Triggers. 3. CLR Triggers. 4. Logon Triggers.
Mithilesh Prajapati
8y
1
There are three type of Triggers ......................... 1. DML triggers a).INSERT, UPDATE, & DELETE statements, when data is modified in tables/views. b).INSTEAD OF INSERT ,INSTEAD OF UPDATE ,INSTEAD OF DELETE 2. DDL triggers operate on CREATE, ALTER, DROP 3.LOGON triggersPlease refer following for more details... https://msdn.microsoft.com/en-IN/library/ms189799.aspx https://technet.microsoft.com/en-us/library/ms179288(v=sql.105).aspx https://technet.microsoft.com/en-us/library/ms179288(v=sql.105).aspx
Hemlata
9y
1
There are three type of Triggers 1)DML a)Instead of Trigger:Instead of trigger are fired in place of the triggering action such as an insert,update, or delete b)After Trigger:After trigger excute following the triggering action ,such as an insert,update,or delete. 2)DDL Trigger: This type of trigger is fired against DDL statements like Drop Table,Create Table,Or Alter Table,DDL Triggers are always after Triggres 3)Logon trigger: This type of trigger is fired against a LOGON event before a user session is established to the SQL Server
sd farook
12y
1
https://www.youtube.com/watch?v=N7XYyTy4lz8
Hemlata
8y
0
There are three type of Triggers 1)DML a)Instead of Trigger:Instead of trigger are fired in place of the triggering action such as an insert,update, or delete b)After Trigger:After trigger excute following the triggering action ,such as an insert,update,or delete. 2)DDL Trigger: This type of trigger is fired against DDL statements like Drop Table,Create Table,Or Alter Table,DDL Triggers are always after Triggres Logon trigger: This type of trigger is fired against a LOGON event before a user session is established to the SQL Server
sd farook
12y
0
There are 2 main types of triggers: 1.After triggers (also known as For triggers. 2.Instead of triggers1.After triggers further classified into :a.After Insert b.After Updatec.After Delete.2. Instead of triggers further classified into :a.Instead of Insert.b. Instead of Update.c. Instead of Delete.
Praneet Rane
12y
0
There are 2 types of triggers. They are 1. DML Triggers ---> a. After trigger b. Instead of trigger 2. DDL Triggers
Sriram Ramasamy
13y
0
There are 2 types of triggers. They are 1. DML Triggers ---> a. After trigger b. Instead of trigger 2. DDL Triggers
Sriram Ramasamy
13y
0
There are three action query types that you use in SQL which are INSERT, UPDATE and DELETE. So, there are three types of triggers...AFTER INSERT Trigger. AFTER UPDATE Trigger. AFTER DELETE Trigger. triggers are classified into two main types:- 1 After Triggers (For Triggers) 2 Instead Of Triggers
Sonu Singh
13y
0
What is the difference between Truncate and Delete command in SQL SERVER?
What command is used to delete the table structure in SQL SERVER?
Message