oracle创建表空间并赋予权限

CREATE TEMPORARY TABLESPACE 表空间

         TEMPFILE  数据存储路径('D://oracle//NEW_NAMESPACE.DBF')

         SIZE 32M

         AUTOEXTEND ON

         NEXT 32M MASIZE UNLIMITED

         EXTENT MANAGEMENT LOCAL;



create user 用户名 identified by 密码 default tablespace 表空间名;
grant connect,resource to 用户名;
原文地址:https://www.cnblogs.com/yanlong300/p/7677500.html