The trigger is not disabled and is still not firing. This trigger was working for about 8 weeks but has just stopped. I have had this before when one of the other databases had a transaction log that grew to 20GB, I have since deleted the log file and set a limit on against it of 2GB. I am...
Thanks Guys,
Firstly how do I tell if a trigger is disabled?
The idea behind this trigger is that single rows get updated and this will copy any row across where all of the fields have been filled
A trigger that was working, has for some reason stopped firing.
I know that the trigger has not changed, but what else could be causing this?
CREATE TRIGGER copy_across
ON dbo.rms_inventory_temp
FOR UPDATE, INSERT
AS
DECLARE
@inventid VARCHAR(16),
@description VARCHAR(30),
@location...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.