0

I create a table and in the tabelnamespace = SYSTEM

when I go to insert I get an error

insert into  mytable(IDENTIFIER ) values ('test')

 08:35:17.120   DBMS    db.world -- ORA-01950: no privileges on tablespace 'SYSTEM'

any ideas?

user3022875
  • 8,598
  • 26
  • 103
  • 167

1 Answers1

0

Your user doesn't have any quota on the system tablespace.

alter user <your user> quota 50m on system;
mmmmmpie
  • 2,908
  • 1
  • 18
  • 26