oracle创建表空间和用户

前端之家收集整理的这篇文章主要介绍了oracle创建表空间和用户前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 使用管理员账户登录
  2. 运行create tablespace test datafile ‘D:\test.ora’ size 1000m; 这里的test为表空间名称,路径自己指定。
  3. 运行create user jim identified by 123456 default tablespace test quota 500m on users; 这里jim为用户名,123456为密码。
  4. 运行grant all privileges to jim; 执行该语句给jim用户授权,此时jim用户就可以登录了。
原文链接:https://www.f2er.com/oracle/207806.html

猜你在找的Oracle相关文章