oracle 创造表空间,用户,授权

oracle 创建表空间,用户,授权1.创建表空间SQL create tablespace uadp datafile F:\oracle\product\10.2

oracle 创建表空间,用户,授权
1.创建表空间
SQL> create tablespace uadp datafile 'F:\oracle\product\10.2.0\oradata\orcl\test.dbf' size 200m autoextend on next 10m maxsize unlimited;

2.创建用户
SQL> create user hym identified by hympassword default tablespace hym;

3. 授权
SQL> grant connect, resource, dba to hym;