ORA-01631

Error: ORA-01631: max # extents (string) reached in table string.string

Causa: A table tried to extend past MAXEXTENTS.

Acción: If MAXEXTENTS is less than the system maximum, raise it. Otherwise, you must re-create with larger initial, next or PCTINCREASE parameters.

COMENTARIOS:

por ISAAC GUEVARA | 21/11/2006 15:10:30

RE: ORA-01631

TENGO ESTE ERROR RE: ORA-01631 QUE SE ME ESTA PRESENTANDO, EN LA APLICACION ORACLE
Y CUANDO VOY A ELIMINAR DATOS DE UNA TABLA ME ARROJA EL MISMOM ERROR Y NO ME DEJA EJECUTAR EL COMANDO DELETE.
COMO LO PUEDO SOLUCIONAR
MI CORREO ES : GUEVARAID@PDVSA.COM

por Anónimo | 22/11/2006 09:12:28

RE: ORA-01631

Una idea para solucionar este problema es volver a crear la tabla pero cambiando el valor de la extension inicial
Para saber el tamaño actual de la tabla, compruebalo con la siguiente sentencia:
SELECT SUM(BYTES)/1024/1024
FROM DBA_EXTENTS
WHERE SEGMENT_NAME='nombre_de_la_tabla';
Y con el resultado que te de esta consulta prueba a re-crearte la tabla ( con sus datos ) con número inicial de extensiones igual al número devuelto anteriormente en la consulta
Si esto funciona, utiliza esta tabla.
Espero que funcione.