无需 SQL CLR 创建用户定义聚合
我计划将数据库部署到 SQL Azure,因此无法使用 SQL CLR。但是,我需要创建一个聚合函数——就我而言,我需要将一堆 Geography 对象 STUnion 在一起。 (Azure 预计将在 6 月之前支持 Spatial。)
是否有另一种方法可以在查询中不使用 CLR 来实现此目的?或者我是否必须创建一个将表作为参数并返回聚合的 UDF?
I am planning on deploying a database to SQL Azure, so I cannot use the SQL CLR. However, I have a need to create an aggregate function -- in my case, I need to STUnion a bunch of Geography objects together. (Azure is expected to support Spatial by June.)
Is there another way to accomplish this, without making use of the CLR, in a query? Or do I have to create a UDF that will take a table as a parameter and return the aggregate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你做不到。
You can't do it.
Azure SQL 现在支持地理。
https://msdn.microsoft.com/en-us/library/cc280766.aspx
Geography is supported in Azure SQL now.
https://msdn.microsoft.com/en-us/library/cc280766.aspx