adspace


How to delete existing triggers using "drop trigger"?

Answer Posted / Amarjeet Kumar Paswan

To delete an existing trigger, use the DROP TRIGGER statement followed by the name of the trigger. Here's an example:

```sql
DROP TRIGGER [SchemaName].[TriggerName]
```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to rebuild the master database?

1166


Is it possible to have clustered index on separate drive from original table location?

1040


What kind of problems occurs if we do not implement proper locking strategy?

1499


How to remove duplicate rows from table except one?

1088


You have a stored procedure, which execute a lengthy batch job. This stored procedure is called from a trigger you do not want to slow the data entry process you do not want trigger to wait for this batch job to finish before it completes itself what you can do to speed up the process?

1213


do you know how to configure db2 side of the application? : Sql server database administration

1124


What are the different SQL Server Versions you have worked on?

1079


How do I find the sql server version?

1102


How can we solve concurrency problems?

1122


What are the different subsets of sql?

1652


How to convert character strings into numeric values?

1190


Equi join and non equi join is possible with sql server?

1134


Does view occupy space?

1019


Disadvantages of the indexes?

1223


How can I check that whether automatic statistic update is enabled or not?

1112