Oracle创建数据库

创建表空间create tablespace PDB_VIDEOS_PACE datafile 'F:/ORACLE/app/oradata/orcl/PDB_VIDEOS_PACE.dbf' size 200M autoextend on next 5M maxsize 3000M;

创建用户并赋值默认表空间create user jsby identified by jsby default tablespace PDB_VIDEOS_PACE;

赋予用户对应权限:grant update any table to jsby;   grant select any table to jsby;   grant create any view to jsby;   grant create any sequence to jsby;   grant create any table to jsby;   grant delete any table to jsby;

          grant insert any table to jsby;   grant connect to jsby;

 

posted @ 2017-09-13 15:40  dreamzhao  阅读(148)  评论(0编辑  收藏  举报