InterviewSolution
Saved Bookmarks
| 1. |
How Do You Redistribute A Table? |
|
Answer» USE Create Table As (CTAS) to redistribute the data in a table. While creating the NEW table specify the DISTRIBUTE on CLAUSE to distribute the data on the new COLUMNS. Use Create Table As (CTAS) to redistribute the data in a table. While creating the new table specify the distribute on clause to distribute the data on the new columns. |
|