views:

285

answers:

1

I created a SQL Server Project in VS2008 called 'RegularExpression'.In that Project i created a 'Regex.cs' class and i wrote one function regarding Regular Expression.

Then i Build the solution.

Now My problem is to deploy this solution in SQL server 2008 through scripts.( not just clicking on Deploy in VS2008 ).

I succeeded up to deploy the assmebly of that project in SQL 2008 using CREATE ASSEMBLY FROM ''

but iam not getting that function i wrote in VS2008 in SQL 2008 Function section.

please suggest me guyssssssssssssssssssssss because its very urgent fr meeeeeeeeeeeeeeeeeeeeeee

+4  A: 
CREATE ASSEMBLY [RegularExpression]
AUTHORIZATION [dbo]
FROM < DLL Path > 
WITH PERMISSION_SET = SAFE
GO

/****** Object:  UserDefinedFunction [dbo].[Regex]    Script Date: 01/23/2010 15:08:01 ******/
CREATE FUNCTION [dbo].[Regex](@Pattern [nvarchar](2000), @Input [nvarchar](2000))
RETURNS [bit] WITH EXECUTE AS CALLER
AS 
EXTERNAL NAME [RegularExpression].[UserDefinedFunctions].[Regex]
GO

http://www.setfocus.com/technicalarticles/clrfunctionforsqlserver_2.aspx

the above link s helped alot........

thanks fr visiting...

please give me any suggetion if i did any mistake

VinnaKanna
+1 for the link.
kenny