UseDistinctSequence: Boolean;
The UseDistinctSequence property determines whether to generate indicators keys for the time series database separately of the other repository time series databases.
Available values:
True. Indicators keys for the time series database are generated separately. This option cannot be canceled when set.
False. Indicators keys for time series database are generated together with the other repository time series databases.
Executing the example requires that the repository contains a time series database with the FC identifier.
Add links to the Cubes, Db and Metabase system assemblies.
Sub UserProc;
Var
mb: IMetabase;
Rub: IRubricator;
Seq: ISequence;
Name: String;
Begin
mb := MetabaseClass.Active;
Rub := mb.ItemById("FC").Edit As IRubricator;
If Not Rub.UseDistinctSequence Then
Rub.UseDistinctSequence := True;
(Rub As IMetabaseObject).Save;
End If;
Seq := Rub.Sequence;
Debug.WriteLine(Generation parameters of indicators keys:);
Debug.WriteLine(" - start value :" + Seq.StartValue.ToString);
Debug.WriteLine(" - step:" + Seq.IncrementStep.ToString);
Name := (Seq.Database As IMetabaseObject).Name;
Debug.WriteLine(" - database:" + Name);
Debug.WriteLine(" - table name:" + Seq.NativeName);
End Sub UserProc;
After executing the example generation of the value keys is enabled for the time series database. Generation parameters are displayed in the console window.
See also: