SQL>conn sys/password as sysdba;
SQL>create user test identified by password default tablespace users
SQL>quota unlimited on users;
SQL>grant create session to test;
SQL>grant create table to test;
SQL>conn test/test;
SQL>create table table_name(col1 type1,col2 type2...);
    说明:一个具有相应对象(即表,视图,序列,同义词等)的用户就是一个方案,
也称用户模式。
    上面的用户test当创建自己的表后,它即成为一个方案或模式。