【无标题】

##oracle 创建表空间

CREATE tablespace C##LD datafile 'D:\app\orgdb\oradata\orcl\C##LD.dbf' SIZE 10m autoextend on next 10m;

##创建用户指定表空间

CREATE USER C##LD IDENTIFIED BY C##LD DEFAULT tablespace C##LD;

对该用户授权

dba:所有权限

grant dba to C##LD;

你可能感兴趣的:(sql)