Answers for "make qtable read only"

0

make qtable read only

CREATE TRIGGER trReadOnly_tblEvents ON tblEvents
    INSTEAD OF INSERT,
               UPDATE,
               DELETE
AS
BEGIN
    RAISERROR( 'tblEvents table is read only.', 16, 1 )
    ROLLBACK TRANSACTION
END
Posted by: Guest on June-15-2021

Browse Popular Code Answers by Language