SQLServer:为什么要避免使用表值用户定义函数?

SQLServer: Why avoid Table-Valued User Defined Functions?(SQLServer:为什么要避免使用表值用户定义函数?)
本文介绍了SQLServer:为什么要避免使用表值用户定义函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个相当大的查询,需要在几个存储过程中使用,我想将其转换为 UDF 以使其更易于维护(视图不起作用,这需要一堆参数),但是我曾经与之交谈过的每个人都告诉我 UDF 的速度非常慢.

I have a rather huge query that is needed in several stored procedures, and I'd like to shift it into a UDF to make it easier to maintain (A view won't work, this takes in a bunch of parameters), however everyone I've ever talked to has told me that UDF's are incredibly slow.

虽然我不知道究竟是什么让它们变慢,但我会猜测它们是,但看到我没有在连接中使用这个 UDF,而是返回一个表变量,我认为它不会那么糟糕.

While I don't know what exactly makes them slow, I'm will to guess that they are, but seeing as I'm not using this UDF within a join, but instead to return a table variable, I think it wouldn't be that bad.

所以我想问题是,我应该不惜一切代价避免使用 UDF 吗?任何人都可以指出具体的证据表明它们更慢吗?

So I guess the question is, should I avoid UDFs at all cost? Can anyone point to concrete evidence stating that they are slower?

推荐答案

标量 UDF 非常慢,内联 UDF 实际上是宏,因此它们非常快:几篇文章:

Scalar UDFs are very slow, inline UDFs are in fact macros, as such they are very fast: A few articles:

使用表值 UDF 重用您的代码

许多嵌套的内联 UDF 非常快

有关标量 UDF 缓慢的更多链接:

More links on slowness of scalar UDFs:

带有日期时间的 UDF 的 SQL Server 性能模式参数

并非所有 UDF 都对性能不利

这篇关于SQLServer:为什么要避免使用表值用户定义函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)