Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
YAQ on Delete Trigger
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Stored procedures, Triggers, UDFs
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01520609
Message ID:
01520612
Vues:
43
>>Hi,
>>
>>I am thinking if inside the INSTEAD OF DELETE trigger I should have a code to check if the tabled deleted has any records. To me it does not seem logical if the DELETE trigger is fired and it has no records in the Deleted table. But what do I know. Is there a case I should foresee that the Deleted would have no records?
>>
>>TIA.
>
>This is a very common test in the beginning of the trigger I have in all my DELETE triggers:
>
>IF NOT EXISTS (select 1 from Deleted)
>   return  -- nothing to do
>
>It may happen when delete didn't delete any rows.

This (the code you wrote above) is almost exactly what I have. But I am thinking as to how and what kind of message to send back to the UI tier to let know that nothing was deleted. Usually when user selects to delete, a record in the Cursor Adapter cursor is deleted. Then VFP calls TableUpdate(). So I need to find a good strategy to let the UI know that something failed.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform