connect scott/tiger;--=============创建表空间====================错误处
create tablespace stusys
datafile 'E:\oracle\stusys.dbf'
size 5m;--===============创建用户======================错误处
create user husong
identified by hu
default tablespace
temporary tablespace temp;
--===============授予连接==================错误处grant connect to husong;--==============授予使用资源============错误处grant resource to husong;--==============连接===========================错误处connect husong/hu;
为什么这段代码运行的时候,没有权限,请哪位高手讲解一下?