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;