--disable trigger trig_controla_ddl on database
CREATE TRIGGER trig_controla_dd1 ON DATABASE
FOR create_procedure, alter_procedure, drop_procedure, drop_table, alter_table AS
IF Datepart(hh, Getdate()) <= 8
OR Datepart(hh, Getdate()) >= 17
BEGIN
DECLARE @msg VARCHAR(200)
SELECT @msg = 'Complete o trabalho em horario comercial'
PRINT (@msg)
ROLLBACK
END
Nenhum comentário:
Postar um comentário