1

I got message on Oracle when creating schema:

ORA-01658: Unable to create INITIAL extent for segment in tablespace using application.

I have searched to solve this issue, but it is still not working.

Anyone have the same problem?

APC
  • 144,005
  • 19
  • 170
  • 281
user3354967
  • 37
  • 1
  • 4
  • 1
    Possible duplicate of [ORA-01658: unable to create INITIAL extent for segment in tablespace TS\_DATA](http://stackoverflow.com/questions/37071152/ora-01658-unable-to-create-initial-extent-for-segment-in-tablespace-ts-data) – APC Mar 02 '17 at 08:03

1 Answers1

1

You need to have the DBA privileges to resolve this problem.

See the Oracle forum discussion.

  1. extend the datafile to add space (ALTER DATABASE DATAFILE <name> RESIZE <new size>)

  2. add a new datafile to the tablespace (ALTER TABLESPACE <tablespace name> ADD DATAFILE <datafile name>

Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331