SeparateTableForActualData: Boolean;
The SeparateTableForActualData property determines whether to use a separate table to store actual data
Available values:
True. A separate table is used to store actual data.
False. A common table is used to store actual data.
Executing the example requires that the repository contains a time series database with the TSDB_DATA identifier.
Add links to the Cubes and Metabase system assemblies.
Sub UserProc;
Var
mb: IMetabase;
Rub: IRubricator;
Begin
// Get repository
mb := MetabaseClass.Active;
// Get time series database
Rub := mb.ItemById("TSDB_DATA").Edit As IRubricator;
// Specify that actual data is stored
// in a separate table
Rub.SeparateTableForActualData := True;
// Refresh system tables and save changes
Rub.AlterAndSave;
End Sub UserProc;
After executing the example a separate table is used to store actual data in the TSDB_DATA database.
See also: