InterviewSolution
Saved Bookmarks
| 1. |
How can you move a tablespace to a different DASD volume allocated to that tablespace if you have to use STOGROUP? |
|
Answer» The method to move the TABLESPACE to a different DASD volume ALLOCATED to that tablespace is: ALTER STOGROUP - ADD VOLUME (new volume) DELETE VOLUME (old volume) REORG TABLESPACE or RECOVER TABLESPACE So, BASICALLY, the method is that we create a new STOGROUP that points to the new volume and ALTER the tablespace and REORG or RECOVER the tablespace. |
|