We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0316661 commit 510874fCopy full SHA for 510874f
1 file changed
sqlserver-delta-plugins/docs/sqlserver-cdcSource.md
@@ -51,6 +51,13 @@ EXEC sys.sp_cdc_help_change_data_capture
51
GO
52
```
53
54
+### Grant permission on user defined type
55
+If the tables to be replicated contain columns of user defined types, the table owner must grant EXECUTE permissions on
56
+the custom data types to the database user specified in the replication job.
57
+``````
58
+GRANT EXECUTE ON TYPE::YOUR_TYPE to YOUR_USER
59
+```
60
+
61
Setting up JDBC Driver
62
-----------
63
If it is not already installed, instructions for installing the Microsoft SQL Server JDBC driver can be found on the
0 commit comments