Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 2.09 KB

cdc-ddl-history-transact-sql.md

File metadata and controls

38 lines (32 loc) · 2.09 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
cdc.ddl_history (Transact-SQL)
cdc.ddl_history (Transact-SQL)
VanMSFT
vanto
02/22/2023
sql
system-objects
reference
cdc.ddl_history_TSQL
cdc.ddl_history
cdc.ddl_history
TSQL

cdc.ddl_history (Transact-SQL)

[!INCLUDE SQL Server]

Returns one row for each data definition language (DDL) change made to tables that are enabled for change data capture. You can use this table to determine when a DDL change occurred on a source table and what the change was. Source tables that haven't had DDL changes won't have entries in this table.

We recommend that you don't query the system tables directly. Instead, execute the sys.sp_cdc_get_ddl_history stored procedure.

Column name Data type Description
source_object_id int ID of the source table to which the DDL change was applied.
object_id int ID of the change table associated with a capture instance for the source table.
required_column_update bit Indicates that the data type of a captured column was modified in the source table. This modification altered the column in the change table.
ddl_command nvarchar(max) DDL statement applied to the source table.
ddl_lsn binary(10) Log sequence number (LSN) associated with the commitment of the DDL modification.
ddl_time datetime Date and time that the DDL change was made to the source table.

See Also

sys.sp_cdc_help_change_data_capture (Transact-SQL)
cdc.fn_cdc_get_all_changes_<capture_instance> (Transact-SQL)