在CMD中打sqlplus /nolog
然后再
conn / as sysdba
这个是使用命令窗口登录,但是最后改用plsql方式了。
首先,通过查找路径:
SQL>select name from v$datafile;
这样可以知道表空间的路径
在plsql windows界面,进行这样的操作:
create tablespace test_data
logging
datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\user_data.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
这个是创建表空间
2、创建用户并授权
create user root identified by root default tablespace test_data temporary tablespace temp; 授权 grant connect,resource to root; grant dba to root;