Home Database Mysql Tutorial T-SQL生成SQL追踪信息

T-SQL生成SQL追踪信息

Jun 07, 2016 pm 02:57 PM
server sql information generate track

SQL Server中可以使用内置的T-SQL存程建立trace收集数据库访问信息。 1. 生成trace 使用 sp_trace_create 创建跟踪。新生成的trace为停止状态(未运行)。MSDN详细说明 sp_trace_create语法 sp_trace_create [ @traceid= ] trace_id OUTPUT , [ @options= ] op

SQL Server中可以使用内置的T-SQL存程建立trace收集数据库访问信息。

1. 生成trace

使用sp_trace_create创建跟踪。新生成的trace为停止状态(未运行)。MSDN详细说明

sp_trace_create语法

sp_trace_create [ @traceid= ] trace_id OUTPUT
, [ @options= ] option_value, [ @tracefile= ] 'trace_file'
[ , [ @maxfilesize= ] max_file_size ]
[ , [ @stoptime= ] 'stop_time' ]
[ , [ @filecount= ] 'max_rollover_files' ]

参数说明

[@traceid=] trace_id :int,新trace的ID。缺省值为NULL,用户输入值将被忽略,由系统指定。[@options=] option_value :int,无缺省值。可指定为以下常量或组合。TRACE_FILE_ROLLOVER :2;当trace文件到达最大值(由max_file_size)后,系统将关闭当前文件,并创建新的文件继续跟踪。新文件名称由用户指定文件名+序号 构成。SHUTDOWN_ON_ERROR :4;如果系统无法写入跟踪文件,关闭SQL Server。TRACE_PRODUCE_BLACKBOX :8;指定服务器保留跟踪信息的最后5M内容;与其他选项不能同时使用。(详细说明见MSDN)[@tracefile=] 'trace_file' :nvarchar(245),无缺省值。指定跟踪信息所写入的文件。如:N'c:\sqltrace\mytrace.trc', 或N'\\servername\directory\mytrace.trc'。文件名中的后缀'trc'可忽略,由系统自动补全。如使用了 TRACE_FILE_ROLLOVER选项,建议在文件名中不要使用下划线'_'。[@maxfilesize=] max_file_size :int,缺省为5,单位为M。指定单个trace文件的最大尺寸。如指定了TRACE_FILE_ROLLOVER选项,则系统将会在当前文件到达指定 大小后使用新的文件继续记录跟踪信息;如未指定ROLLOVER选项,系统将会在文件大小到达指定大小后停止记录。[@stoptime=] 'stop-time' :datatime,缺省值为NULL。指定跟踪停止的时间。如为NULL,则手工控制或在数据库关闭时停止。[@filecount=] 'max_rollover_files' :int,>=1。指定回滚文件数量上限。仅当使用了TRACE_FILE_ROLLOVER选项时有效。当回滚文件数量超过此上限后,系统将会在 创建新文件前删除最老的跟踪文件。

返回值:为0表示成功;其他值表示失败。

2. 获取跟踪信息

使用fn_trace_getinfo()可获取全部或指定trace信息。

语法:

sys.fn_trace_getinfo ( { trace_id | NULL | 0 | DEFAULT } )

参数:

trace_id:指定欲获取信息的跟踪的IDNULL,0, DEFAULT:获取全部trace信息

返回表

traceid :跟踪的ID值Option :选项信息1:trace options2:file name3:max file size4:stop time5:当前状态(0=stopped, 1=running)value:属性值3. 控制跟踪状态(启/停)

使用sp_trace_setstatus可控制跟踪启动/停止/关闭。

语法:

sp_trace_setstatus [ @traceid = ] trace_id, [ @status= ] status

参数:

[@traceid=] trace_id :指定要控制的跟踪的ID[@status=] status :指定跟踪状态:0:停止1:启动2:关闭指定跟踪并从数据库服务器中删除此跟踪。关闭前跟踪必须处于停止状态;跟踪所生成的跟踪信息文件不会被删除。

返回值:0:成功;其他值表示错误。

4. 增加/移除跟踪敏感事件

使用sp_trace_setevent控制跟踪敏感事件列表。MSDN详细说明

语法:

sp_trace_setevent [ @traceid = ] trace_id , [ @eventid= ] event_id, [ @columnid= ] column_id, [ @on= ] on

参数:

[@traceid=] trace_id :指定要修改的目标跟踪ID[@eventid=] event_id :指定要修改的事件。如:RPC:Completed(10)/SQL:BatchCompleted(12)/Audit Login(14)/SP:Starting(42)/Prepare SQL(71)/Cursor Excute(74)/Trace File Close(150)/...[@columnid=] column_id :事件增/减的信息项(column)。如:TextData(1)/TransactionID94)/NTUserName(6) /HostName(8)/ClientProcessID(9)/ApplicationName(10)/LoginName(11)/DatabaseName(35)/RowCounts(48)/...[@on=] on :bit, 事件(信息项)开关on=1, columnid=NULL:事件开,清除所有列on=1, columnid!=NULL:事件开,收集指定列信息on=0, columnid=NULL:事件关,清除所有列on=0, columnid!=NULL:不再收集指定事件的指定列信息

返回值:0:成功;其他值表示错误。

5. 过滤跟踪信息

sp_trace_setfilter用以设置跟踪过滤条件。MSDN详细说明

语法:

sp_trace_setfilter [ @traceid = ] trace_id , [ @columnid= ] column_id, [ @logical_operator= ] logical_operator, [ @comparison_operator= ] comparison_operator, [ @value= ] value

参数:

[@traceid=] trace_id :指定跟踪ID[@columnid=] column_id :int,无缺省值;指定过滤条件应用的列。如为NULL,则SQLServer清除指定跟踪的所有过滤条件[@logical_operator=] logical_operator :int,无缺省值;指定条件应用的逻辑操作-与(AND,0), 或(OR, 1)[@comparison_operator=] comparison_operator :int,无缺省值;指定条件中比较操作类型:0: =(等于)1: (不等于)2: >(大于)3: =(大于等于)5: 返回值:0:成功;其他值表示错误 6. 其他跟踪相关存储过程

SQL Server还提供了一些其他跟踪相关存储过程,用以获取跟踪相关信息或对跟踪进行设置/自定义扩展。详细说明:MSDN:Introducing SQL Trace

sp_trace_generateevent 可结合触发器(Trigger),或单独使用,触发自户定义事件(事件值82-91)。 详细说明fn_trace_geteventinfo:获取指定跟踪当前敏感事件表fn_trace_getfilterinfo:获取指定跟踪当前过滤条件表fn_trace_gettable:以表格形式获取指定跟踪文件中的内容...7. 一个简单例子

第一步,创建跟踪:设置跟踪文件大小上限为10M,回滚文件个数为10,记录文件为d:\sqltrace\mytrace.trc

declare @maxfilesize bigint;
declare @filecnt int;
set @trid = 0;
set @maxfilesize = 10;
set @filecnt = 10;
exec sp_trace_create @trid OUTPUT, 2, N'd:\sqltrace\mytrace', @maxfilesize, NULL, @filecnt;
select @trid;
go

查看数据库当前所有跟踪的信息

select * from sys.fn_trace_getinfo(0);
go

设置敏感事件为SQL:BatchCompleted(12),收集信息:TextData(1), HostName(8), ClientProcessID(9), ApplicationName(10), LoginName(12)

declare @on bit;
set @on = 1;
exec sp_trace_setevent @trid,12,1, @on
exec sp_trace_setevent @trid,12,8, @on
exec sp_trace_setevent @trid,12,9, @on
exec sp_trace_setevent @trid,12,10, @on
exec sp_trace_setevent @trid,12,11, @on
go

设置过滤条件:不收集应用程序名(AppName, 10)为'sqlcmd'的的信息

sp_trace_setfilter @trid, 10, 0, 1, N'SQLCMD'
go

启动跟踪:

sp_trace_setstatus @trid, 2;
go

查看当前过滤条件

select * from fn_trace_getfilterinfo(@trid);
go

...(运行,收集数据)

查看跟踪文件:

select * from fn_trace_gettable(N'd:\sqltrace\mytrace.trc', default);
go

...

停止跟踪

sp_trace_setstatus @trid, 0;
go

关闭跟踪

sp_trace_setstatus @trid, 2;
go8. SQL Server2000的几点区别

SQL Server2000中,使用fn_trace系列系统存储过程时,需要在存储过程名前加"::"标识;

SQL Server2000中,仅当跟踪被停止(stop)并关闭(close)后,跟踪的内容才会写入文件中;

declare @maxfilesize bigint;
declare @filecnt int;
set @trid = 0;
set @maxfilesize = 10;
set @filecnt = 10;
exec sp_trace_create @trid OUTPUT, 2, N'd:\sqltrace\mytrace', @maxfilesize, NULL, @filecnt;
select @trid;
go
Copy after login
select * from sys.fn_trace_getinfo(0);
go
Copy after login
declare @on bit;
set @on = 1;
exec sp_trace_setevent @trid,12,1, @on
exec sp_trace_setevent @trid,12,8, @on
exec sp_trace_setevent @trid,12,9, @on
exec sp_trace_setevent @trid,12,10, @on
exec sp_trace_setevent @trid,12,11, @on
go
Copy after login
sp_trace_setfilter @trid, 10, 0, 1, N'SQLCMD'
go
Copy after login
sp_trace_setstatus @trid, 2;
go
Copy after login
select * from fn_trace_getfilterinfo(@trid);
go
Copy after login
select * from fn_trace_gettable(N'd:\sqltrace\mytrace.trc', default);
go
Copy after login
sp_trace_setstatus @trid, 0;
go
Copy after login
sp_trace_setstatus @trid, 2;
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between HQL and SQL in Hibernate framework? What is the difference between HQL and SQL in Hibernate framework? Apr 17, 2024 pm 02:57 PM

HQL and SQL are compared in the Hibernate framework: HQL (1. Object-oriented syntax, 2. Database-independent queries, 3. Type safety), while SQL directly operates the database (1. Database-independent standards, 2. Complex executable queries and data manipulation).

Usage of division operation in Oracle SQL Usage of division operation in Oracle SQL Mar 10, 2024 pm 03:06 PM

"Usage of Division Operation in OracleSQL" In OracleSQL, division operation is one of the common mathematical operations. During data query and processing, division operations can help us calculate the ratio between fields or derive the logical relationship between specific values. This article will introduce the usage of division operation in OracleSQL and provide specific code examples. 1. Two ways of division operations in OracleSQL In OracleSQL, division operations can be performed in two different ways.

Comparison and differences of SQL syntax between Oracle and DB2 Comparison and differences of SQL syntax between Oracle and DB2 Mar 11, 2024 pm 12:09 PM

Oracle and DB2 are two commonly used relational database management systems, each of which has its own unique SQL syntax and characteristics. This article will compare and differ between the SQL syntax of Oracle and DB2, and provide specific code examples. Database connection In Oracle, use the following statement to connect to the database: CONNECTusername/password@database. In DB2, the statement to connect to the database is as follows: CONNECTTOdataba

What does the identity attribute in SQL mean? What does the identity attribute in SQL mean? Feb 19, 2024 am 11:24 AM

What is Identity in SQL? Specific code examples are needed. In SQL, Identity is a special data type used to generate auto-incrementing numbers. It is often used to uniquely identify each row of data in a table. The Identity column is often used in conjunction with the primary key column to ensure that each record has a unique identifier. This article will detail how to use Identity and some practical code examples. The basic way to use Identity is to use Identit when creating a table.

Detailed explanation of the Set tag function in MyBatis dynamic SQL tags Detailed explanation of the Set tag function in MyBatis dynamic SQL tags Feb 26, 2024 pm 07:48 PM

Interpretation of MyBatis dynamic SQL tags: Detailed explanation of Set tag usage MyBatis is an excellent persistence layer framework. It provides a wealth of dynamic SQL tags and can flexibly construct database operation statements. Among them, the Set tag is used to generate the SET clause in the UPDATE statement, which is very commonly used in update operations. This article will explain in detail the usage of the Set tag in MyBatis and demonstrate its functionality through specific code examples. What is Set tag Set tag is used in MyBati

How to track the precise location of your Apple phone if it is lost and turned off? How to track the precise location of your Apple phone if it is lost and turned off? Mar 08, 2024 pm 02:30 PM

It is possible to recover an Apple phone if it is lost and turned off. The method is also very simple. Users can choose to log in to the official iCloud website to search, or a friend who also uses an Apple phone can use his phone to search for your iPhone. How to track the precise location of an Apple phone if it is lost and turned off? Answer: Search on the official iCloud website or borrow someone else's iPhone device to find it. 1. Users find that their Apple phone is lost or missing, and it can be found even if it is turned off. 2. Users directly log in to the iCloud official website, click Find My iPhone, and be sure to enter the correct account number. 3. Make sure your account is consistent with the account of the lost phone so that you have a chance to recover the phone. 4. If the phone is turned on and connected

How to install, uninstall, and reset Windows server backup How to install, uninstall, and reset Windows server backup Mar 06, 2024 am 10:37 AM

WindowsServerBackup is a function that comes with the WindowsServer operating system, designed to help users protect important data and system configurations, and provide complete backup and recovery solutions for small, medium and enterprise-level enterprises. Only users running Server2022 and higher can use this feature. In this article, we will explain how to install, uninstall or reset WindowsServerBackup. How to Reset Windows Server Backup If you are experiencing problems with your server backup, the backup is taking too long, or you are unable to access stored files, then you may consider resetting your Windows Server backup settings. To reset Windows

How to solve the 5120 error in SQL How to solve the 5120 error in SQL Mar 06, 2024 pm 04:33 PM

Solution: 1. Check whether the logged-in user has sufficient permissions to access or operate the database, and ensure that the user has the correct permissions; 2. Check whether the account of the SQL Server service has permission to access the specified file or folder, and ensure that the account Have sufficient permissions to read and write the file or folder; 3. Check whether the specified database file has been opened or locked by other processes, try to close or release the file, and rerun the query; 4. Try as administrator Run Management Studio as etc.

See all articles