I recently faced the following error:
ORA-01688: unable to extend table RATEL.MV_IN_GPRS_SPLIT partition SYS_P54817 by 128 in tablespace RATEL" while loading data into the database.
To resolve it I am trying to add a new datafile on Oracle 11g using the following query:
ALTER TABLESPACE RATEL ADD DATAFILE 'e:\app\oracle\oradata\rvas\RATEL141.dbf' SIZE 20000M AUTOEXTEND ON MAXSIZE 32000M; However, the query is executing endlessly and no datafile has been created.
How can I verify if the datafile has been created or not? What would cause a datafile to not be created?