From d0c006f6f55b413a4619d5b56a707efd8b9fafc3 Mon Sep 17 00:00:00 2001 From: Vojtech Juranek Date: Fri, 25 Mar 2022 15:06:39 +0100 Subject: [PATCH] DBZ-2793 Add schema filters to SQL server documentation --- .../modules/ROOT/pages/connectors/sqlserver.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/documentation/modules/ROOT/pages/connectors/sqlserver.adoc b/documentation/modules/ROOT/pages/connectors/sqlserver.adoc index 0eafce73c..298fda16d 100644 --- a/documentation/modules/ROOT/pages/connectors/sqlserver.adoc +++ b/documentation/modules/ROOT/pages/connectors/sqlserver.adoc @@ -2095,6 +2095,14 @@ The connector is also unable to recover its database history topic. ==== +|[[sqlserver-property-schema-include-list]]<> +|No default +|An optional, comma-separated list of regular expressions that match names of schemas for which you *want* to capture changes. Any schema name not included in `schema.include.list` is excluded from having its changes captured. By default, all non-system schemas have their changes captured. Do not also set the `schema.exclude.list` property. + +|[[sqlserver-property-schema-exclude-list]]<> +|No default +|An optional, comma-separated list of regular expressions that match names of schemas for which you *do not* want to capture changes. Any schema whose name is not included in `schema.exclude.list` has its changes captured, with the exception of system schemas. Do not also set the `schema.include.list` property. + |[[sqlserver-property-table-include-list]]<> |No default |An optional comma-separated list of regular expressions that match fully-qualified table identifiers for tables that you want {prodname} to capture; any table that is not included in `table.include.list` is excluded from capture. Each identifier is of the form _schemaName_._tableName_.