IDataCubeServiceGenerateDataCube(Guid, Guid, IEnumerableString, IEnumerableString, PersistencePolicy) Method

Creates and saves a DataCube using a native structure as the starting SelectTransform. A final ResultTransform is added automatically and connected automatically.

Namespace: Dundas.BI.Entities.DataCubes
Assembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
DataCube GenerateDataCube(
	Guid parentId,
	Guid structureId,
	IEnumerable<string> measures,
	IEnumerable<string> hierarchies,
	PersistencePolicy persistencePolicy
)

Parameters

parentId  Guid
The ID of the parent file or folder.
structureId  Guid
The structure ID.
measures  IEnumerableString
The measure elements.
hierarchies  IEnumerableString
The hierarchy elements.
persistencePolicy  PersistencePolicy
A value indicating whether the entity should be created as persistent or transient.

Return Value

DataCube
The newly created DataCube.
Exceptions
ExceptionCondition
ArgumentNullExceptionmeasures or hierarchies is .
ArgumentExceptionstructureId references a structure that is not compatible with one of the supported SelectTransform transforms or parentId is Empty.
NoPrivilegeExceptionCaller does not have access to the specified data connector.
InvalidSessionExceptionThe caller context is not associated with a valid session.
DataProviderLoadExceptionThe data provider may throw this exception if it requires third party driver to be installed.
DataConnectionExceptionThe connection cannot be established.
DuplicateItemExceptionThe name for the data cube is not unique.
NotFoundExceptionThe structure with the specified structureId or parentId does not exist.
QuotaExceededExceptionGenerating the data cube would cause the entity quota for data cubes or one of the underlying entity types to be exceeded.
See Also