Oracle SQL 命令一些记录

添加表空间
create tablespace smartbot datafile 'smartbot.ora' size 100m reuse default storage(initial 500k next 500k pctincrease 20);
create user smartbot identified by smartbot default tablespace smartbot quota 30m on users;
grant connect,resource to smartbot;

修改用户名和密码

alter user smartbot identified by mima;
原文地址:https://www.cnblogs.com/GeeWu/p/2419868.html