IEtlPlainIndex.Description

Syntax

Description: String;

Description

The Description property determines description (annotation) of data source index.

Example

Sub Main;

Var

MB: IMetabase;

Object: IMetabaseObject;

EtlTask: IEtlTask;

Join: IEtlPlainDataJoin;

Index: IEtlPlainIndex;

s: String;

Begin

MB:=MetabaseClass.Active;

Object:=MB.ItemById("ETL").Edit;

EtlTask:=Object As IEtlTask;

Join:=EtlTask.Item(2) As IEtlPlainDataJoin;

Index:=Join.Index;

s:=Index.Description;

End Sub Main;

After executing this example variable contains description of an index of the third ETL task object. Type of ETL task object is Join. Repository object has the ETL identifier.

See also:

IEtlPlainIndex