DTSMessageLineageID Property

DTS Programming

DTS Programming

DTSMessageLineageID Property

The DTSMessageLineageID property sets or returns the globally unique identifier (GUID) of the lineage information that was saved with the Data Transformation Services (DTS) package in Microsoft® SQL Server™ 2000 Meta Data Services.

Applies To
DTSMessageQueueTask Object
Syntax

object.DTSMessageLineageID [= GUID]

Part Description
object Expression that evaluates to a DTSMessageQueueTask object
GUID The GUID of the package lineage information saved in Meta Data Services

Data Type

String

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetDTSMessageLineageID(BSTR* pVal);

HRESULT SetDTSMessageLineageID(BSTR pVal);

Remarks

The syntax of GUIDs is:

{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}

where X represents hexadecimal digits. The groupings are 8, 4, 4, 4, and 12 digits. The curly brackets are required. Spaces cannot be embedded for readability.

The property also can be referenced through the Properties collection of the Task object with the following code:

Set taskprops = task.Properties
taskprops("DTSMessageLineageID") [= GUID]

See Also

DTSMessagePackageID Property

DTSMessageVersionID Property