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.
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 |
String
Read/write
HRESULT GetDTSMessageLineageID(BSTR* pVal);
HRESULT SetDTSMessageLineageID(BSTR pVal);
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]