CLR 表值函数 - 验证创建步骤
我创建了第一个 CLR 表值函数。我经历的步骤是:
- 创建库
- 运行此命令 - EXEC dbo.sp_configure 'clrenabled',1 RECONFIGURE
- 从步骤复制 dll 1 到 c: 驱动器以方便使用
- dll 创建程序集 - 从 'c:\' 创建程序集 WITH PERMISSION_SET = SAFE
创建函数 -
创建函数 MyFunction(@input nvarchar(max)) 返回表( -- 栏目 ) AS
外部名称 [此处为程序集名称]。 [此处为类名] 。 [此处类中的静态函数]
我记得读过一些内容,其中我还必须将 dll 复制到 MSSQL 下的 binn 目录中。
我的问题是:
- 我是否需要将 dll 复制到 MSSQL 中的 Binn 目录
- 执行步骤 上面看起来正确吗?
I've created my first CLR table valued function. The steps I went through were:
- Create Library
- Run this command - EXEC dbo.sp_configure ‘clr enabled’,1 RECONFIGURE
- Copy the dll from step 1 to c: drive for convenience
- Create the assembly with dll- create assembly from 'c:\' WITH PERMISSION_SET = SAFE
Create function -
CREATE FUNCTION MyFunction(@input nvarchar(max))
RETURNS Table(
-- columns
)
ASEXTERNAL NAME
[Assembly Name Here]. [Class Name Here] . [Static Function In Class Here]
I recall reading something where I had to also copy the dll into the binn directory below MSSQL.
My questions are:
- Do I need to copy the dll to the Binn directory in MSSQL
- Do the steps
above look correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要复制dll;加载库后,您不需要外部文件。
您的步骤对我来说看起来不错,但您可能希望将“测试部署的功能”添加到您的步骤中。
此外,对于
SAFE
权限,您可以省略WITH PERMISSION_SET = SAFE
。You don't need to copy dll; once the library is loaded, you don't need the external file.
Your steps look good to me, but you might want to add "Testing deployed function" to your steps.
Also, for
SAFE
permissions you can omitWITH PERMISSION_SET = SAFE
.