
Ultimate access to all questions.
Your company is using AWS DMS to migrate a MySQL database to Amazon RDS. The MySQL database includes a table with product inventory, which has a JSON column for storing product attributes. What approach should be taken to handle the JSON column during the migration?
A
Convert the JSON column to a string and store it in a text column in RDS.
B
Flatten the JSON column and create separate columns for each attribute in RDS.
C
Keep the JSON column as is in RDS, as RDS supports JSON data types.
D
Remove the JSON column and store product attributes in a separate table.