sys.fn_cdc_get_column_ordinal (Transact-SQL)

Applies to: SQL Server

Returns the column ordinal of the specified column as it appears in the change table associated with the specified capture instance.

Transact-SQL syntax conventions

Syntax

  
sys.fn_cdc_get_column_ordinal ( 'capture_instance','column_name')  

Arguments

' capture_instance '
Is the name of the capture instance in which the specified column is identified as a captured column. capture_instance is sysname.

' column_name '
Is the column to report on. column_name is sysname.

Return Type

int

Remarks

This function is used to identify the ordinal position of a captured column within the change data capture update mask. It is principally used in conjunction with the function sys.fn_cdc_is_bit_set to extract information from the update mask when querying for change data.

Permissions

Requires SELECT permission on all captured columns of the source table. If a database role for the change data capture component is specified for the capture instance, membership in that role is also required.

Examples

The following example obtains the ordinal position of the VacationHours column in the update mask for the HumanResources_Employee capture instance. That value is then used in the call to sys.fn_cdc_is_bit_set to extract information from the returned update mask.

USE AdventureWorks2022;  
GO  
DECLARE @from_lsn binary(10), @to_lsn binary(10),  @VacationHoursOrdinal int;  
SET @from_lsn = sys.fn_cdc_get_min_lsn('HumanResources_Employee');  
SET @to_lsn = sys.fn_cdc_get_max_lsn();  
SET @VacationHoursOrdinal = sys.fn_cdc_get_column_ordinal   
    ( 'HumanResources_Employee','VacationHours');  
SELECT *, sys.fn_cdc_is_bit_set(@VacationHoursOrdinal,  
    __$update_mask) as 'VacationHours'  
FROM cdc.fn_cdc_get_net_changes_HumanResources_Employee  
    ( @from_lsn, @to_lsn, 'all with mask');  
GO  

See Also

Change Data Capture Functions (Transact-SQL)
About Change Data Capture (SQL Server)
sys.sp_cdc_help_change_data_capture (Transact-SQL)
sys.sp_cdc_get_captured_columns (Transact-SQL)
sys.fn_cdc_is_bit_set (Transact-SQL)