WEB开发网
开发学院数据库MSSQL Server 使用 SQL Server 2005 中的 SQLCLR 处理 XML Show... 阅读

使用 SQL Server 2005 中的 SQLCLR 处理 XML Showplan

 2007-05-13 09:24:45 来源:WEB开发网   
核心提示: 3.在已注册的程序集 (ShowplanXPath.dll) 中创建引用外部 CLR 方法的用户定义的存储过程,CREATE PROCEDURE dbo.GetXMLShowplanCost(@tsqlStmt NVARCHAR(MAX),@queryCost NVARCHAR(MAX)

3.

在已注册的程序集 (ShowplanXPath.dll) 中创建引用外部 CLR 方法的用户定义的存储过程。

CREATE PROCEDURE dbo.GetXMLShowplanCost
(
@tsqlStmt  NVARCHAR(MAX),
@queryCost  NVARCHAR(MAX) OUT
)
AS EXTERNAL NAME ShowplanXPath.xmlshowplanaccess.GetXMLShowplan
go

请注意,此外部名称的逻辑格式为:assembly_name.class_name.method_name。@tsqlStmt 参数将包含一个查询,而且将使用 OUT 参数 @queryCost 返回查询成本。

4.

客户端使用以下代码调用 CLR 用户定义的存储过程:

DECLARE @query nvarchar(max)  -- the query
DECLARE @cost nvarchar(max)  -- its estimated execution cost
-- set this to your query
set @query = N'select * from person.address'
-- execute the procedure
EXECdbo.GetXMLShowplanCost @query, @cost OUTPUT
select @cost   -- print the cost
-- note that @cost is nvarchar, we use explicit comparison in case of an error 
-- and implicit conversion for actual cost
if (@cost != '-1') and (@cost <= 0.5)  -- if query is cheap to execute,
EXEC(@query)     -- execute it; else don't execute
        -- replace 0.5 with your own threshold
go

请注意,可以通过 @query 变量提交一组查询(一个批处理),然后返回该批处理的总成本。如果查询或批处理中有错误,则返回“-1”作为其成本。可以修改附录 A 中的异常处理代码,以便在出现错误时能更好地满足您的需要。

上一页  1 2 3 4 5 6 7 8 9  下一页

Tags:使用 SQL Server

编辑录入:coldstar [复制链接] [打 印]
赞助商链接