SQL statement to view the transaction log of the SQL Server database

Source: Internet
Author: User
From: http://www.cnblogs.com/Ammy/archive/2008/05/09/1190081.html

1) Use System Functions

Select * From fn_dblog (null, null)

2) use DBCC

DBCC log (dbname, 4) -- (n = 0, 1, 2, 3, 4)

1-more information plus flags, tags, row length

2-detailed information: plus Object Name, index name, page ID, slot ID

3-all information about each operation

4-Add the hexadecimal information of the transaction to all information of each operation.

Default type = 0

To view the transaction log of the msater database, run the following command:

DBCC log (master)

DBCC log ({dbid | dbname}, [, type = {0 | 1 | 2 | 3 | 4}])
Parameters:
Dbid or dbname-ID or name of any database

Type-type of the output result:
0-minimum information (operation, context, transaction ID)
1-more information (plus flags, tags, row length)
2-very detailed information (plus Object Name, index name, page ID, slot ID)

3-all information about each operation
4-Add the hexadecimal information of the transaction to all information of each operation.
Default type = 0

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.