I have a Tablespace with some tables and I can insert data without problem. Now I want to create a new table and I get this:
- 00000 - "unable to create INITIAL extent for segment in tablespace %s" *Cause: Failed to find sufficient contiguous space to allocate INITIAL extent for segment being created.
My question is: if there is a space problem, why am I able to insert data but not create new tables?
This is the CREATE script:
CREATE TABLE EC_SYS_NOTIFY_KYC (
ID NUMBER(38,0) PRIMARY KEY,
ID_OP NUMBER(38,0),
PROCESS_ID VARCHAR2(50) NOT NULL,
SYSTEM_ID VARCHAR2(50) NOT NULL)
TABLESPACE ECONTKYC_LARGE_1;