- 查看服务端字符集:select userenv('language') from dual
- 建立tablespace:create tablespace test1 datafile '/infowarelab/oradata/test1.dbf' size 10M;
- 建立用户: create user tom identified by tom default tablespace test1 ;
- 授权:grant connect,resource to smart
identified by smart;
grant dba to smart;
grant create any table to tom;
grant create any trigger to tom;
grant create any sequence to tom;
grant create any procedure to tom;