Seleziona le tue preferenze relative ai cookie

Utilizziamo cookie essenziali e strumenti simili necessari per fornire il nostro sito e i nostri servizi. Utilizziamo i cookie prestazionali per raccogliere statistiche anonime in modo da poter capire come i clienti utilizzano il nostro sito e apportare miglioramenti. I cookie essenziali non possono essere disattivati, ma puoi fare clic su \"Personalizza\" o \"Rifiuta\" per rifiutare i cookie prestazionali.

Se sei d'accordo, AWS e le terze parti approvate utilizzeranno i cookie anche per fornire utili funzionalità del sito, ricordare le tue preferenze e visualizzare contenuti pertinenti, inclusa la pubblicità pertinente. Per continuare senza accettare questi cookie, fai clic su \"Continua\" o \"Rifiuta\". Per effettuare scelte più dettagliate o saperne di più, fai clic su \"Personalizza\".

Step 3: Create Your Target Amazon RDS for PostgreSQL Database

Modalità Focus
Step 3: Create Your Target Amazon RDS for PostgreSQL Database - Database Migration Guide
Questa pagina non è tradotta nella tua lingua. Richiedi traduzione

In this step, you create a new Amazon RDS for PostgreSQL database to use as a migration target for DMS Schema Conversion. Also, you configure a new database user on your target Amazon RDS for PostgreSQL database.

If you already created the target database, skip this step and proceed with the configuration of your database user.

To create an Amazon RDS for PostgreSQL database for DMS Schema Conversion

  1. Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/.

  2. Choose your AWS Region.

  3. Choose Create database.

  4. For Engine type, choose PostgreSQL.

  5. For Templates, choose Free tier.

  6. For DB instance identifier, enter a unique name for your PostgreSQL database.

  7. For Master password and Confirm master password, enter a secure password that includes at least 8 printable characters.

  8. For Virtual private cloud (VPC) under Connectivity, choose sc-vpc. You created this VPC in Step 1.

  9. For Public access, choose Yes.

  10. Keep the rest of the settings as they are, and then choose Create database.

After you create your Amazon RDS for PostgreSQL database, configure a new database user. Then, use the credentials of this user in DMS Schema Conversion. We encourage not using the admin user in the DMS Schema Conversion migration project.

To configure your target database user, create a new user and grant CREATE ON DATABASE and the rds_superuser role.

You can use the following code example to create a database user and grant the privileges.

CREATE ROLE user_name LOGIN PASSWORD 'your_password';
GRANT CREATE ON DATABASE db_name TO user_name;
GRANT rds_superuser TO user_name;
ALTER DATABASE db_name OWNER TO user_name;

In the preceding example, replace user_name with the name of your user. Then, replace your_password with a secure password. Finally, replace db_name with the name of your target Amazon RDS for PostgreSQL database.

PrivacyCondizioni del sitoPreferenze cookie
© 2025, Amazon Web Services, Inc. o società affiliate. Tutti i diritti riservati.