,欢迎访问网页设计爱好者web开发。sql server 2000系统支持的跟踪函数(二)
baya pavliashvili and kevin kline
http://msdn.microsoft.com/library/default.asp?url=/nhp/default.asp?contentid=28000409
fn_trace_getfilterinfo 和 fn_trace_geteventinfo
这些函数可以用来检索一个跟踪的元数据(这些函数的输出的含义是模糊的,如果你不熟悉跟踪的事件标志符和过虑的列的标志符.你可以看看sql server的在线帮助 “sp_trace_setevent”)
这2个函数都是将跟踪标志符作为唯一的参数. fn_trace_getfilterinfo返回指定跟踪的过虑后的信息.举例:假设我们限制跟pubs数据库,因为我们试图解决该数据库中一个运行很长时间的查询的故障,我们可以如下运行该函数:
select * from :: fn_trace_getfilterinfo(1)
--results:
columnid logical_operator comparison_operator value
---------- ---------------- ------------------- ---------
35 0 6 pubs
这个输出告诉我们,我们指定的跟踪过虑是在列为35(数据库名)和没有使用逻辑操作符("and" or "or") 因为只有一个条件.比较操作符是”liee”(=6)过滤的值是”pubs”.
根据你应用过虑的类型,你可以改变比较操作符.在许多案例中,你可以使用 like或 not like.而且,如果你限制跟踪指定的处理或指定的数据库,那么你可以指定"=", ">", "< >", "<", "> =", or "< ="等逻辑操作符.
备注:如果你通过sql server profiler工具建立一个跟踪,这个跟踪会自动增加一个过滤器,不包括通过profiler自己产生给sql server的跟踪过滤语句.如果你喜欢了解profiler工具,只要简单的将过滤器设置为off.
fn_tracegeteventinfo 可以返回一个跟踪的事件信息,有很多的跟踪事件你可以指定.你指定的事件越多,就会有更多的信息被整理,因此要仔细.我劝告大家要了解每一个事件的含义并且选择那些和你解决问题密切相关的事件. fn_tracegeteventinfo 是一个非常有用的函数,当你因为不同的目的要模拟运行多个跟踪.
要获得我们建立的跟踪事件的标志符,我们可以如下运行fn_tracegeteventinfo函数:
select distinct eventid
from :: fn_trace_geteventinfo(1)
--results:
eventid
-----------
12
37
40
41
42
43
这个结果告诉我们,这个跟踪在检测以下事件:
· sql: batchcompleted—event id of 12
· sp: recompile—event id of 37
· sql: statementstarting—event id of 40
· sql: statementcompleted—event id of 41
· sp: starting—event id of 42
· sp: completed—event id of 43
同样的,我们可以运行相同的函数,进行很小的改动就可以获得一个跟踪的所有数据列
select distinct columnid from :: fn_trace_geteventinfo(1)
--results:
columnid
-----------
1
10
11
12
13
14
16
17
18
这里我们收集的典型数据用来性能调整,包括一个查询的:正文数据,程序名,登陆名,spid,持续时间,开始结束时间,读取,写入和cpu占用.
使用系统提供的udfs
现在你指定一些系统提供的udfs,你可以通过这些系统函数建立自己的自定义函数.其中有一个主要的限制是自定义函数无法调用存储过程.但是自定义函数可以调用其他的自定义函数.下面的udf初始化fn_trace_geteventinfo函数,使结果更方便阅读:
create function dbo.fn_gettracecolumns (@trace_id int)
returns @tracecolumns table (
column_id int,
column_name varchar(155)
)
as
begin
insert @tracecolumns (
column_id)
select distinct columnid from ::
fn_trace_geteventinfo(@trace_id)
update @tracecolumns
set column_name =
case column_id
when 1 then 'textdata'
when 3 then 'databaseid'
when 4 then 'transactionid'
when 6 then 'ntusername'
-- similar statements omitted here - see source
else 'other'
end
return
end
this function can be executed as follows:
select * from dbo.fn_gettracecolumns(3)
概要
在这篇文章中,我介绍了sql server 2000提供的非常有用的系统自定义函数,希望大家喜欢并且研究其他的系统提供的自定义函数.
下载: traceudfs.sql
参考资源:
· 284790 inf: how to create a sql server 2000 trace
· 283786 inf: how to monitor sql server 2000 traces
· 270599 bug: fn_trace_gettable function cannot read rollover files 273972 generated by sql
· profilerhow to: programmatically load trace files into tables
· 268591 prb: odbc tracing to sql.log can slow sql server or consume all disk space
· 307786 inf: tracing to network drive may reduce sql server throughput
· 286239 bug: replay tool uses loginname column for setuser instead of databaseusername column
· andrew novick's "find out what they're doing with fn_get_sql"—www.databasejournal.com/features/mssql/article.php/2189761