There is a simpler way to 'coalesce' a temporary type tablespace
First switch the tablespace back to permenant
Then coalesce the tablespaceCode:alter tablespace xxx permanent;
Lastly switch the tablespace back to temporaryCode:alter tablespace xxx coalesce;
Using this method you do not have to create any additional datafiles or drop any.Code:alter tablespace xxx temporary;
Regards




Reply With Quote