@@ -38,7 +38,8 @@ to capture changes.
3838- [ ] [Grant the user the necessary permissions](#grant-the-user-the-necessary-permissions)
3939```
4040
41- 1 . <a id =" connect-to-sql-server-as-an-admin-user " ></a >Connect to your database as an admin user and create a new user for the connector:
41+ 1 . <a id =" connect-to-sql-server-as-an-admin-user " ></a >
42+ Connect to your database as an admin user and create a new user for the connector:
4243
4344 ``` sql
4445 USE master
@@ -53,7 +54,8 @@ to capture changes.
5354
5455 Replace ` <username>` and ` <password>` with a username and password for the new user and replace ` <database>` with the name of your database.
5556
56- 1 . < a id= " grant-the-user-the-necessary-permissions" >< / a> Grant the user the necessary permissions:
57+ 1 . < a id= " grant-the-user-the-necessary-permissions" >< / a>
58+ Grant the user the necessary permissions:
5759
5860 ` ` ` sql
5961 USE master
@@ -78,7 +80,8 @@ Change Data Capture (CDC) must be enabled for the database and for each table yo
7880- [ ] [Add the Debezium user to the CDC role](#add-the-debezium-user-to-the-cdc-role)
7981` ` `
8082
81- 1 . < a id= " enable-cdc-for-the-database" >< / a> Enable CDC for the database by running the following command:
83+ 1 . < a id= " enable-cdc-for-the-database" >< / a>
84+ Enable CDC for the database by running the following command:
8285
8386 ` ` ` sql
8487 EXEC msdb.dbo.rds_cdc_enable_db '<database>'
@@ -87,7 +90,8 @@ Change Data Capture (CDC) must be enabled for the database and for each table yo
8790
8891 Replace ` <database>` with the name of your database.
8992
90- 1 . < a id= " enable-cdc-for-each-table-you-want-to-capture" >< / a> Enable CDC for each table you want to capture by running the following commands:
93+ 1 . < a id= " enable-cdc-for-each-table-you-want-to-capture" >< / a>
94+ Enable CDC for each table you want to capture by running the following commands:
9195
9296 ` ` ` sql
9397 USE <database>
@@ -108,7 +112,8 @@ Specifying a new name will create a corresponding database role that has full ac
108112captured change data.
109113 {{< / note > }}
110114
111- 1 . < a id= " add-the-debezium-user-to-the-cdc-role" >< / a> Add the Debezium user to the CDC role:
115+ 1 . < a id= " add-the-debezium-user-to-the-cdc-role" >< / a>
116+ Add the Debezium user to the CDC role:
112117
113118 ` ` ` sql
114119 USE <database>
0 commit comments