CLR 表值函数 - 验证创建步骤

发布于 2024-11-27 00:56:16 字数 640 浏览 1 评论 0原文

我创建了第一个 CLR 表值函数。我经历的步骤是:

  1. 创建库
  2. 运行此命令 - EXEC dbo.sp_configure 'clrenabled',1 RECONFIGURE
  3. 从步骤复制 dll 1 到 c: 驱动器以方便使用
  4. dll 创建程序集 - 从 'c:\' 创建程序集 WITH PERMISSION_SET = SAFE
  5. 创建函数 -

    创建函数 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:

  1. Create Library
  2. Run this command - EXEC dbo.sp_configure ‘clr enabled’,1 RECONFIGURE
  3. Copy the dll from step 1 to c: drive for convenience
  4. Create the assembly with dll- create assembly from 'c:\' WITH PERMISSION_SET = SAFE
  5. Create function -

    CREATE FUNCTION MyFunction(@input nvarchar(max))
    RETURNS Table(
    -- columns
    )
    AS

    EXTERNAL 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北凤男飞 2024-12-04 00:56:16

你不需要复制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 omit WITH PERMISSION_SET = SAFE.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文