Tuesday, February 21, 2023

Debezium Kullanımı İçin Hazırlık

Örnek
Şöyle yaparız
# Enable CDC for database “demodb”
USE demodb
GO
EXEC sys.sp_cdc_enable_table 

# Enable the data capture on the source table
@source_schema = N'dbo', 
@source_name   = N'Inventory',  
@role_name     = NULL,   
@supports_net_changes = 0
GO


No comments:

Post a Comment

Table Partitioning

Giriş Data Loding yaparken kullanılabilecek yöntemler  şöyle 1. bcp 2. BULK INSERT 3. SQL Server Integration Services (SSIS) Açıklaması şöyl...