CHANGE_TRACKING_CURRENT_VERSION (Transact-SQL)
SQL Server 2008
Returns a version that is associated with the last committed transaction. This version can be used when you enumerate changes by using CHANGETABLE.
The following example declares the local variable @next_baseline for storing the current version of tracked changes, and then uses the CHANGE_TRACKING_CURRENT_VERSION() function to obtain the value for the variable.
DECLARE @next_baseline bigint; SET @next_baseline = CHANGE_TRACKING_CURRENT_VERSION();
