IDataInputServiceDeleteStorageRecords Method |
Deletes multiple data records from the specified storage table.
Namespace:
Dundas.BI.Data.DataInput
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (8.0.2.1001)
Syntaxvoid DeleteStorageRecords(
Guid dataCubeId,
Guid dataInputTransformId,
ICollection<Guid> recordIds
)
Sub DeleteStorageRecords (
dataCubeId As Guid,
dataInputTransformId As Guid,
recordIds As ICollection(Of Guid)
)
void DeleteStorageRecords(
Guid dataCubeId,
Guid dataInputTransformId,
ICollection<Guid>^ recordIds
)
abstract DeleteStorageRecords :
dataCubeId : Guid *
dataInputTransformId : Guid *
recordIds : ICollection<Guid> -> unit
Parameters
- dataCubeId
- Type: SystemGuid
The data cube ID for which the current storage table was created. - dataInputTransformId
- Type: SystemGuid
The data input transform ID. - recordIds
- Type: System.Collections.GenericICollectionGuid
The record IDs.
Exceptions| Exception | Condition |
|---|
| ArgumentException | dataCubeId is Empty or recordIds is or empty. |
| NotFoundException | The data cube with the specified ID does not exist or the warehouse table with the specified ID does not exist. |
| NoPrivilegeException | The caller does not have the DataCubeInput privilege or the caller does not have the Read on the data cube. |
| InvalidSessionException | The caller context is not associated with a valid session. |
See Also