0
0
AWScloud~10 mins

RDS supported engines in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the Amazon RDS engine for MySQL.

AWS
engine = "[1]"
Drag options to blanks, or click blank then click option'
Asqlserver
Boracle
Cmysql
Dmongodb
Attempts:
3 left
💡 Hint
Common Mistakes
Using unsupported engines like MongoDB which is not supported by RDS.
Confusing engine names with database types.
2fill in blank
medium

Complete the code to specify the Amazon RDS engine for PostgreSQL.

AWS
engine = "[1]"
Drag options to blanks, or click blank then click option'
Apostgres
Bmariadb
Csqlserver
Doracle
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'postgresql' instead of 'postgres' as the engine name.
Confusing PostgreSQL with MariaDB or Oracle.
3fill in blank
hard

Fix the error in the code to specify the Amazon RDS engine for MariaDB.

AWS
engine = "[1]"
Drag options to blanks, or click blank then click option'
Asqlserver
Bmysql
Cpostgres
Dmariadb
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'mysql' instead of 'mariadb' for MariaDB engine.
Using unsupported engine names.
4fill in blank
hard

Fill both blanks to specify the Amazon RDS engine and version for SQL Server.

AWS
engine = "[1]"
engine_version = "[2]"
Drag options to blanks, or click blank then click option'
Asqlserver
B2019
C2017
Doracle
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'oracle' as engine name for SQL Server.
Using invalid version strings.
5fill in blank
hard

Fill all three blanks to specify the Amazon RDS engine, version, and license model for Oracle.

AWS
engine = "[1]"
engine_version = "[2]"
license_model = "[3]"
Drag options to blanks, or click blank then click option'
Aoracle
B12.2
Cbring-your-own-license
Dpostgres
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'postgres' as engine for Oracle.
Using incorrect license model strings.