Is it possible to select columns from multiple destination tables and include them in a single source table in AWS DMS? For example:
I have the following tables in a Postgres database:
users {
id (PRIMARY KEY)
name
}
trips {
id (PRIMARY KEY)
user_id
number
}
I want to be able to create a rule/task in DMS to select columns trips.number
and users.name
for a table called trips_with_user_name
.