Oracle创建表空间
创建表空间
	create tablespace 空间名字
	datafile '路径名字'
	size 大小
	autoextend on 
	next 大小
创建用户
	cretae user 用户名 identified by 密码 default tablespace 空间名
授权
	grant dba to 用户名
	create tablespace 空间名字
	datafile '路径名字'
	size 大小
	autoextend on 
	next 大小
	cretae user 用户名 identified by 密码 default tablespace 空间名
	grant dba to 用户名
