-
If the schemas you are migrating do not exist on the PostgreSQL database, then create the schemas.
-
Create the AWS DMS user to connect to your target database, and grant Superuser or the necessary individual privileges (or use the master username for RDS).
CREATE USER postgresql_dms_user WITH PASSWORD 'password'; ALTER USER postgresql_dms_user WITH SUPERUSER;
-
Create a user for AWS SCT.
CREATE USER postgresql_sct_user WITH PASSWORD 'password'; GRANT CONNECT ON DATABASE database_name TO postgresql_sct_user; GRANT USAGE ON SCHEMA schema_name TO postgresql_sct_user; GRANT SELECT ON ALL TABLES IN SCHEMA schema_name TO postgresql_sct_user; GRANT ALL ON ALL SEQUENCES IN SCHEMA schema_name TO postgresql_sct_user;
Step 3: Configure Your PostgreSQL Target Database
Modalità Focus
Did this page help you? - Yes
Thanks for letting us know we're doing a good job!
If you've got a moment, please tell us what we did right so we can do more of it.
Did this page help you? - No
Thanks for letting us know this page needs work. We're sorry we let you down.
If you've got a moment, please tell us how we can make the documentation better.
Argomento successivo:
Step 4: Use AWS SCT to Convert the Oracle Schema to PostgreSQLArgomento precedente:
Step 2: Configure Your Oracle Source DatabaseHai bisogno di aiuto?
PrivacyCondizioni del sitoPreferenze cookie
© 2025, Amazon Web Services, Inc. o società affiliate. Tutti i diritti riservati.