Explanation
You issued an ALTER TABLE statement that involves an operation which requires:
However, a check is made before this operation begins to see if enough space is available in the TTM, and if the answer is no, this message is generated.
The SQLSTATE that equates to this SQL return code is 57S05.
User Response
You can make the TTM larger, but it can take a long time to perform this operation if there are many rows in the table. Therefore, instead of making the TTM larger consider doing the following:
You can still use ALTER TABLE to change the definition of the table, but null load the area first so that there are no rows to copy to the TTM.
|
Copyright © 2015 CA Technologies.
All rights reserved.
|
|