Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. USE [Obshaga]
  2. GO
  3. /****** Object: Trigger [dbo].[UpdMes] Script Date: 12.12.2018 22:17:48 ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8.  
  9. ALTER TRIGGER [dbo].[UpdMes]
  10. ON [dbo].[Students]
  11. AFTER UPDATE
  12. AS
  13. BEGIN
  14.  
  15. SET NOCOUNT ON;
  16.  
  17. PRINT('Строка обновлена!');
  18.  
  19. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement