Oracle中用sys用户建表权限不足
过程如下:SQL> show user;USER is "SYS"SQL> create user test identified by test;User created.SQL> create table test.t(id int);create table test.t(id int)*ERROR at line 1:ORA-01950: no privileges on tablespace "USERS"原因:标题首先有点标题...