如何在SQL Server 2008中部署CLR功能
我在 VS2008 中创建了一个名为“RegularExpression”的 SQL Server 项目。在该项目中,我创建了一个“Regex.cs”类,并编写了一个有关正则表达式的函数。
然后我构建解决方案。
现在我的问题是通过脚本在SQL Server 2008中部署这个解决方案。(不仅仅是单击VS2008中的“部署”)。
我成功地使用 CREATE ASSEMBLY
但我没有得到我在 SQL 2008 函数部分中在 VS2008 中编写的函数。
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 <AName> FROM '<path of .dll>'
but iam not getting that function i wrote in VS2008 in SQL 2008 Function section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.setfocus.com/technicalarticles/clrfunctionforsqlserver_2.aspx
上述链接有帮助很多
http://www.setfocus.com/technicalarticles/clrfunctionforsqlserver_2.aspx
The above links helped a lot