码迷,mamicode.com
首页 > 数据库 > 详细

oracle创建表空间和用户

时间:2016-06-15 12:42:19      阅读:682      评论:0      收藏:0      [点我收藏+]

标签:

Oracle表空间和用户的创建
1、plsql中,使用管理员账户登录
2、create tablespace test datafile ‘D:\test.ora‘ size 1000m;--创建表空间,test为表空间名称
3、create user test identified by test default tablespace test quota 500m on users;--创建用户
--第一个test为用户名
--第二个test为密码
--第三个test为表空间名
4、grant all privileges to test;--进行授权
--test为用户名
5、用刚才创建的用户名test登录

oracle创建表空间和用户

标签:

原文地址:http://www.cnblogs.com/liuranjsj/p/5586824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!