다음을 통해 공유


ReadMediaHeader Method (BackupDevice)

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

The ReadMediaHeader method returns a QueryResults object that enumerates the values of a backup media header record.

구문

object.ReadMediaHeader()asQueryResults

Parts

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

Prototype (C/C++)

HRESULT ReadMediaHeader(
LPSQLDMOQUERYRESULTS* ppResults);

Returns

A QueryResults object containing zero or one result set defined by these columns.

Column

Data type

Description

MediaName

nvarchar(130)

Name of the media.

MediaSetId

nvarchar(39)

System-generated unique identifier for the media set.

FamilyCount

integer

Number of families within the media set.

FamilySequenceNumber

integer

Ordinal position of the family within the entire media set.

MediaFamilyId

nvarchar(39)

System-generated unique identifier for the media family.

MediaSequenceNumber

integer

Ordinal position of the media within its family.

MediaLabelPresent

tinyint

When 1, the MediaDescription column reports the contents of the Microsoft Tape Format label.

When 0, no label is present for the media. The MediaDescription column reports informative text.

MediaDescription

nvarchar(256)

Descriptive text. Interpret by using the value returned in the MediaLabelPresent column.

SoftwareName

nvarchar(65)

Name of the product creating the media header.

SoftwareVendorId

integer

Unique identifier of the manufacturer of the product creating the media header.

MediaDate

smalldatetime

Creation date and time of the media header.

주의

A database backup performed by Microsoft SQL Server can target multiple devices of a single type and can span multiple media maintained by the device. To organize media used in backup, SQL Server defines the media set and media family. A media label, or header record, maintains data about a media's location within a media set and media family.

When the media of a backup device is unused or unlabeled, such as when a disk device is empty, the ReadMediaHeader method succeeds, returning an empty QueryResults object.

Applies To: