ICubeMetaUpdateEx.TargetRubricator

Syntax

TargetRubricator: IRubricator;

Description

The TargetRubricator property determines an existing time series database, to which the data is copied.

Example

Executing the example requires that the repository contains a time series database with the FC identifier (data source) and a time series database with the FC_COPY identifier (data consumer).

Sub Main;

Var

mb: IMetabase;

CrInfo: IMetabaseObjectCreateInfo;

Obj: IMetabaseObject;

ObjDesc: IMetabaseObjectDescriptor;

RubUpdateEx: ICubeMetaUpdateEx;

Rub: IRubricator;

Begin

mb := MetabaseClass.Active;

CrInfo := Mb.CreateCreateInfo;

CrInfo.ClassId := MetabaseObjectClass.KE_CLASS_CUBEMETAUPDATE;

CrInfo.Id := Mb.GenerateId("Cube_Meta_Upd");

CrInfo.Permanent := True;

CrInfo.Parent := Mb.Root;

ObjDesc := Mb.CreateObject(CrInfo);

Obj := ObjDesc.Edit;

RubUpdateEx := Obj As ICubeMetaUpdateEx;

Rub := mb.ItemById("FC").Bind As IRubricator;

RubUpdateEx.Rubricator := Rub;

RubUpdateEx.Metabase := Mb;

RubUpdateEx.RdsDatabase := Rub.Database;

RubUpdateEx.TargetRubricator := mb.ItemById("FC_COPY").Bind As IRubricator;

Obj.Save;

End Sub Main;

After executing the example data of the time series database with the FC identifier is copied to the database FC_COPY. The object that contains copy settings is saved with the Cube_Meta_Upd identifier.

See also:

ICubeMetaUpdateEx