Advertisement
Anaristos

Registering a clr proc in SQL Server

Apr 10th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.32 KB | None | 0 0
  1. USE [Equipment]
  2. GO
  3.  
  4. /****** Object:  StoredProcedure [dbo].[getItem]    Script Date: 04/09/2012 20:29:09 ******/
  5. SET ANSI_NULLS OFF
  6. GO
  7.  
  8. SET QUOTED_IDENTIFIER OFF
  9. GO
  10.  
  11. CREATE PROCEDURE [dbo].[getItem]
  12.     @data [nvarchar](max)
  13. WITH EXECUTE AS CALLER
  14. AS
  15. EXTERNAL NAME [EquFunctions].[EquFunctions.InvHandler].[ParseItem]
  16. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement