다음을 통해 공유


ReadErrorLog Method

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The ReadErrorLog method returns a QueryResults object enumerating the contents of a Microsoft SQL Server error log.

구문

object.ReadErrorLog( [ LogNumber ] )as QueryResults

Parts

  • object
    Expression that evaluates to an object in the Applies To list.

  • LogNumber
    Optional. A long integer that indicates an error log number. When not specified, the current error log is enumerated.

Prototype (C/C++)

HRESULT ReadErrorLog(
LPSQLDMOQUERYRESULTS* ppResults,
long lLogNumber = 0);

Returns

A QueryResults object containing one result set defined by the following:

Column

Data type

Description

Varies, as described in Remarks

nvarchar(256)

Log entry descriptive text.

ContinuationRow

tinyint

When 0, the descriptive text returned in the first column is complete. When 1, the descriptive text should be interpreted as a continuation of the previous row's contents.

주의

In the returned QueryResults object, the ColumnName property of the first column reports the operating system file name of the file used to maintain the log.

Applies To: