码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server中CLR表值函数(table-valued function)不能使用WITH(NOLOCK)

时间:2020-06-10 20:59:11      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:query   rap   ued   ssi   ann   word   http   none   roc   

SQL Server中,普通的表值函数(table-valued function)是可以使用表提示(Hints-Table)的,那么CLR类型的表值函数(table-valued function)是否也可以使用表提示(Hints-Table)呢? 相信很多人都没有留意过这个问题。

 

下面我以YourSQLDba中现成的CLR表值函数来演示一下这个问题。如果自己手头有自定义CLR表值函数的,也可以构造自己的实验,查看CLR表值函数可以使用下面SQL

 

 

SELECT * FROM sys.objects WHERE type=‘FT‘

 

 

如下所示,CLR表值函数是不能使用WITH(NOLOCK)的。它会提示语法错误。

 

USE YourSQLDba;
GO
SELECT  *
FROM    [yUtl].[clr_GetFolderList](‘C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA‘,
                                   ‘*.mdf‘) WITH(NOLOCK)
 
Msg 319, Level 15, State 1, Line 43
Incorrect syntax near the keyword ‘with‘. If this statement is a common table expression, an xmlnamespaces clause or a change tracking context clause, the previous statement must be terminated with a semicolon.

 

 

技术图片

 

 

下面我创建了一个视图,如下所示:

 

 
CREATE VIEW yUtl.v_test
AS
    SELECT  *
    FROM    [yUtl].[clr_GetFolderList](‘C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\‘,
                                       ‘*.mdf‘)
 
 
 
 
SELECT * FROM yUtl.v_test WITH(NOLOCK);

 

 

 

技术图片

 

Msg 4139, Level 16, State 1, Line 52

Cannot process the query because it references the common language runtime (CLR) table-valued function "yUtl.clr_GetFolderList" with a hint through view "yUtl.v_test".

 

 

 

其实这个是因为视图对象使用了WITHNOLOCK)的话,就会自动转换为给视图内部对象加上WITH(NOLOCK),那么就会出现上面的错误,如果像存储过程里面调用了这样的视图,就会出现下面这样的错误信息

 

 

Cannot process the query because it references the common language runtime (CLR) table-valued function "xxxx" with a hint through view "xxxx".

 

但是有点奇怪的是官方资料上并没有详细说明CLR表值函数不能使用WITH(NLOCK)等表提示,不清楚是文档不够完善,还是忽略了这些细节。个人倒是第一次遇到这种错误,特此记录一下这个问题。

 

 

参考资料:

 

https://docs.microsoft.com/en-us/sql/t-sql/statements/create-function-transact-sql?view=sql-server-ver15

https://docs.microsoft.com/en-us/sql/t-sql/queries/hints-transact-sql-table?view=sql-server-ver15

SQL Server中CLR表值函数(table-valued function)不能使用WITH(NOLOCK)

标签:query   rap   ued   ssi   ann   word   http   none   roc   

原文地址:https://www.cnblogs.com/kerrycode/p/13088603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!