1
I would like to know how I do in SQL Server for a Trigger check if the trial was executed and if it was executed, this Rigger will do another update. Thanks for your attention.
Att, Marcilio
1
I would like to know how I do in SQL Server for a Trigger check if the trial was executed and if it was executed, this Rigger will do another update. Thanks for your attention.
Att, Marcilio
1
Because the update is not performed within the process?
Trigger is a reaction to a DDL or DML command.
Browser other questions tagged sql sql-server
You are not signed in. Login or sign up in order to post.
Trigger is only on command
INSERT
and/orDELETE
and/orUPDATE
. There is no Rigger on top of Procedure(even because it doesn’t make sense, it’s easier to just add something at the end of it)– DH.
@DH. I get it, but on my Trigger I’m going to use exec.dbo.nomeproc and then perform an update, can’t I do that? I couldn’t find an example on the Internet
– Marcilio Eloi
Detail the problem, maybe we can model a solution, you’re "almost" with a solution looking for a problem.
– Motta