-- 创建表空间(weixinDemo 为表空间名称 D:\app\Administrator\product\11.2.0\dbhome_1\database\weixinDemo.ora 表示表空间存放的路径 )
create tablespace weixinDemo datafile 'D:\app\Administrator\product\11.2.0\dbhome_1\database\weixinDemo.ora' size 1000m
-- 给表空间添加用户(第一个weixin 为用户名 第二个weixin 为密码 weixinDemo为表空间 )
create user weixin identified by weixin default tablespace weixinDemo quota 500m on users;
-- 给这个用户授权 (weixin 表示授权用户)
grant all privileges to weixin;