Reputation: 1943
I installed Oracle 11g and I am trying to CREATE TABLESPACE using user 'Scott' but I am getting "insufficient privileges". What should I do ? I am connected to SQL Developer using 'Scott' user.
Upvotes: 0
Views: 480
Reputation: 49062
You cannot do CREATE TABLESPACE
without SYSTEM
privilege. It is a prerequisite.
From documentation -
You must have the CREATE TABLESPACE system privilege.
Upvotes: 1