what is the importence of the trigger in sqlserver2000?
Answer Posted / kinthada cnu
hi all
Trigger nothing but special kind of stored procedure
it's providing security to table data.And it is automatically
fire when the queary excuted.
ex:
create trigger <trigger name>
on <table name>
for <insert/update/delete>
as
begin
<statments>
end
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
what are triggers? : Sql server database administration
How to use copy and concatenate commands in SQL?
Why normalization is used?
What are SSL and TSL protocols?
Explain SSRS Architecture?
What Are the Main Features of SQL Azure?
What is etl - extraction, transformation, and loading?
Tell me what is the significance of null value and why should we avoid permitting null values?
Why we should not use triggers?
Is sql server 2016 free?
What is normalization and its types?
What is the primary use of the model database?
What are the different types of replication are there in sql server 2000?
1)what is the difference between Reinitializing a Subscription and synchronization the subscription? 2)when to use reinitializing ? 3)when to use synchronization? 4)when adding table or deleting a table what to do?(reinz.. or syn) 5)when adding a column what to do?
What is a result set object returned by odbc_exec()?