Zuvor habe ich einen Benutzer erstellt:
SQL>create user suhail identified by password
SQL>User created.
SQL>Grant create session,create table to suhail;
SQL>Grant Succeeded.
Aber wenn ich mich als anmelde suhail
und versuche, eine zu erstellen table
, wird eine Fehlermeldung angezeigt ORA-01950: no privileges on tablespace 'SYSTEM'
. Welcher Fehler ist das? Warum tritt es auf?
SQL> connect suhail
Enter password:
Connected.
SQL> create table suhail_table(name char(10));
create table suhail_table(name char(10))
*
ERROR at line 1:
ORA-01950: no privileges on tablespace 'SYSTEM'
Ich verwende Oracle Database 11g Express Edition Release 11.2.0.2.0
alter database default tablespace users