Last active
April 11, 2022 00:17
-
-
Save cassioeskelsen/2a420b8fd52d2515bc33737cebcb71cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Criação de uma nova capture instance */ | |
EXEC sys.sp_cdc_enable_table | |
@source_schema = N'Faturamento' | |
@source_name = N'NotasFiscais', | |
@role_name = N'CDC_Reader', | |
@capture_instance = N'NotasFiscais002', | |
@supports_net_changes = 0 | |
GO | |
/* Exclusão da antiga capture instance */ | |
EXEC sys.sp_cdc_disable_table | |
@source_schema = N'Faturamento', | |
@source_name = N'NotasFiscais', | |
@capture_instance = N'NotasFiscais001' | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment