oracle创建表空间、用户、授权

前端之家收集整理的这篇文章主要介绍了oracle创建表空间、用户、授权前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在命令提示符下登录sqlplus / as sysdba
创建表空间用于存放数据,存放位置随意,定义存放大小
create tablespace weixintb datafile 'C:\app\Administrator\oradata\weixin\weixintb.DBF' size 5G;
创建用户并授予权限
create user weixindb identified by weixindb default tablespace weixintb;
grant connect to weixindb;
grant dba to weixindb;
grant resource to weixindb;

猜你在找的Oracle相关文章