Oracle

创建表空间、创建用户sql语句

日期:2015/6/28来源: IT猫扑网

  创建表空间

  create tablespace printpro_tblSps logging datafile

  '/oracle/printpro_db/print1.dbf' size 5G,

  '/oracle/printpro_db/print2.dbf' size 5G,

  '/oracle/printpro_db/print3.dbf' size 5G,

  '/oracle/printpro_db/print4.dbf' size 5G,

  '/oracle/printpro_db/print5.dbf' size 5G,

  '/oracle/printpro_db/print6.dbf' size 5G,

  '/oracle/printpro_db/print7.dbf' size 5G,

  '/oracle/printpro_db/print8.dbf' size 5G,

  '/oracle/printpro_db/print9.dbf' size 5G,

  '/oracle/printpro_db/print0.dbf' size 5G

  autoextend on extent management local;

  创建用户

  create user printpro identified by printpro default tablespace printpro_tblSps;

  授权用户权限

  grant connect to printpro;

  grant resource to printpro;

  drop tablespace printpro_tblSps;

  //grant dba to usertest; 后试试能不能使用这个用户建用户。

  //grant connect to usertest; 后看看能不能用这个用户连接到数据库

  //grant resource to usertest; 后看看这个用户能不能建表等。

相关文章

相关下载

网友评论

我要评论...
    没有更早的评论了
    取消