Open this page in the API Guide

IDataInputService.RenameDataStorageColumn Method

Renames the data storage column.

Namespace:  Dundas.BI.Data.DataInput
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void RenameDataStorageColumn(
	DataInputTransform transform,
	string originalName,
	string name
)

Parameters

transform
Type: Dundas.BI.Data.Transforms.DataInputTransform
The data input transform.
originalName
Type: System.String
The original name of the column.
name
Type: System.String
The new column name.
Exceptions
ExceptionCondition
ArgumentNullExceptiontransform is null.
ArgumentExceptionoriginalName or name is null or Empty.
NotFoundExceptionThe column with the specified originalName could not be found.
NoPrivilegeExceptionThe caller does not have the Write privilege on the underlying parent entity.
InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also