Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating CDC maintenance documentation. #90

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.6.2
current_version = 2.6.3
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# tap-mssql 2.6.3 2024-10-17
* Updating CDC documentation with a packaged method to maintain CDC tables.

# tap-mssql 2.6.2 2024-10-09
* Resolving issue when a table has a primary key and unique key. Both unique and primary key
columns were being identified as the primary key for the target table. Prioritising the
Expand Down
94 changes: 94 additions & 0 deletions MS_CDC_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -593,4 +593,98 @@ EXEC [sys].[sp_cdc_disable_table]
@source_name = @source_name,
@capture_instance = @capture_instance_temp

```

## Code to manage structural changes (DDL) to tables being captured.

The following code is a variant of the code above in a packaged form.

This may assist the process of maintaining CDC tables when the base table has a structural change.

```sql
--Automated sqlserver-cdc-re-enrolled procedures.

CREATE PROCEDURE [mydatabase].[DisableCDC]
@schema_name NVARCHAR(512),
@table_name NVARCHAR(512)
AS
BEGIN
DECLARE @capture_instance NVARCHAR(512) = @schema_name + '_' + @table_name;
EXEC sys.sp_cdc_disable_table
@source_schema = @schema_name,
@source_name = @table_name,
@capture_instance = @capture_instance
END;
GO
CREATE PROCEDURE [mydatabase].[EnableCDC]
@schema_name NVARCHAR(512),
@table_name NVARCHAR(512)
AS
BEGIN
EXEC sys.sp_cdc_enable_table
@source_schema = @schema_name,
@source_name = @table_name,
@role_name = RoleChangeDataCapture,
@supports_net_changes = 1
END;
GO
create procedure [mydatabase].[ReEnrollCDCTable]
@source_schema varchar(max),
@source_name varchar(max)
as
begin
declare @cdc_schema varchar(max) = 'cdc'
declare @column_list varchar(max)
declare @sql varchar(max)
declare @capture_instance varchar(max)
set @capture_instance = @source_schema + '_' + @source_name
declare @ct_table varchar(max)
set @ct_table = @capture_instance + '_ct'
declare @capture_instance_temp varchar(max)
set @capture_instance_temp = @capture_instance + '_temp'
declare @ct_table_temp varchar(max)
set @ct_table_temp = @capture_instance_temp + '_ct'
exec sys.sp_cdc_enable_table
@source_schema = @source_schema,
@source_name = @source_name,
@role_name = N'RoleChangeDataCapture',
@supports_net_changes = 1,
@capture_instance = @capture_instance_temp
select @column_list = stuff((
select ',' + column_name
from (
select ct.column_name
from information_schema.columns ct
inner join information_schema.columns ctt
on ct.column_name = ctt.column_name
where ct.table_name = @ct_table and ct.table_schema = @cdc_schema
and ctt.table_name = @ct_table_temp and ctt.table_schema = @cdc_schema
) x
for xml path('')), 1, 1, '')
set @sql = 'insert into ' + @cdc_schema + '.' + @ct_table_temp +
'(' + @column_list + ') select ' + @column_list +
' from ' + @cdc_schema + '.' + @ct_table
exec(@sql)
exec dbo.disablecdc @source_schema,@source_name;
exec dbo.enablecdc @source_schema,@source_name;
set @sql = 'insert into ' + @cdc_schema + '.' + @ct_table +
'(' + @column_list + ') select ' + @column_list +
' from ' + @cdc_schema + '.' + @ct_table_temp
exec(@sql)
exec sys.sp_cdc_disable_table
@source_schema = @source_schema,
@source_name = @source_name,
@capture_instance = @capture_instance_temp
end
go

--Example-cdc-re-enroll-tables

-- Stop the CDC processing
exec sp_cdc_stop_job
-- Align CDC tables with new table structure
exec mydatabase.ReEnrollCDCTable 'schema1','table_a'
exec mydatabase.ReEnrollCDCTable 'schema2','table_b'
-- Restart the CDC processing
exec sp_cdc_start_job
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tap-mssql"
version = "2.6.2"
version = "2.6.3"
description = "A pipelinewise compatible tap for connecting Microsoft SQL Server"
authors = ["Rob Winters <[email protected]>"]
license = "GNU Affero"
Expand Down
Loading