amazon-redshift-utils
amazon-redshift-utils copied to clipboard
Add scenario for migrating schema with all tables contained
Description of changes:
Add scenario for migrating schema with all tables contained.
Migrate single schema:
{
"unloadSource": {
"schemaName": "public"
},
"copyTarget": {
"schemaName": "public"
}
}
Migrate multiple schemas:
{
"unloadSource": {
"schemaNames": [
"model",
"public"
]
},
"copyTarget": {
"schemaNames": [
"model",
"public"
]
}
}
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.