I'm trying to migrate some data from SQL Server to AWS Aurora (Postgres) by using the babelfish capability. It was recently added as a target in the AWS DMS service. However, the connection test fails with the following message:
Test Endpoint failed: Application-Status: 1020912, Application-Message: User does not have to create table permission Endpoint initialization failed.
What I did was follow the babelfish target documentation that suggests those steps for permissions setup (connected to the 1433 port).
- Create a login and password to use when connecting to the server.
- Create the virtual database for your Babelfish cluster.
- Create the T-SQL user for your target database.
- For each table in your Babelfish database, GRANT permissions to the tables.
CREATE LOGIN dms_user WITH PASSWORD = 'experiments';
GO
CREATE DATABASE database_test;
GO
USE database_test
GO
CREATE USER dms_user FOR LOGIN dms_user
GO
After that, I apply the SELECT, DELETE, INSERT, REFERENCES, UPDATE grants for each table in database_test
database. This is the setup of my babelfish endpoint:
Am I missing something? Why my user has no create table
permission after completing step 3?