GetColumnPartitionSize method

Returns the global autoincrement partition size assigned to the specified column.

Syntax
Visual Basic
Public Function GetColumnPartitionSize( _
   ByVal columnID As Integer _
) As UInt64
C#
public ulong GetColumnPartitionSize(
   int columnID
);
Parameters
  • columnID   The ID number of the column. The value must be in the range [0,ULCursorSchema.ColumnCount-1]. The first column in the table has an ID value of zero.

Return value

The column's global autoincrement partition size as a System.UInt64.

Remarks

All global autoincrement columns in a given table share the same global autoincrement partition.

See also