TLama

Untitled

Nov 27th, 2013
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.19 KB | None | 0 0
  1. CREATE PROCEDURE TestProc
  2. AS
  3. BEGIN
  4.    SET NOCOUNT ON;
  5.    PRINT '1. Print'
  6.    PRINT '2. Print'
  7.    PRINT '3. Print'
  8.    PRINT '4. Print'
  9.    PRINT '5. Print'
  10.    RAISERROR ('Error', 11, 2)
  11. END
Advertisement
Add Comment
Please, Sign In to add comment