Oracle创建表空间和用户
create tablespace IBIS4
logging
datafile 'D:\oracle\oradata\Oracle9i\IBIS4.dbf'
size 1024m
autoextend on
next 512m maxsize unlimited
extent management local;
create user ibis4 identified by 12345678 default tablespace IBIS4;
grant all privileges to ibis4;