plsql工具oracle怎樣創建表空間和用戶?
--創建表空間: create tablespace 表空間名 datafile 'D:\oradata\orcl\表空間名.dbf' size 100m --表空間大小 autoextend on next 10M maxsize 1024M; --自動增長 --創建用戶: create user 用戶名 identified by 密碼 default tablespace 默認表空間; --授權: grant connect,resource,dba to 用戶名