权限
conn system/rjxy as sysdba;
模式(方案):用户所拥有的数据库对象的集合
用户与模式是一对一的
scott用户拥有的所有对象都属于scott模式
同一个模式下不能存在同名对象
用户可以直接访问其他模式对象,但是要获得权限select * from scott.emp;
创建账户
create tablespace aa datafile 'd:\aa.dbf' size 2m;
create temporary tablespace bb tempfile 'd:\bb.tpf'