数据库版本: SQL> select * from v$version; BANNER -------------------------------------------------------------------------------- Oracle - 64bit Production PL - Production CORE Production TNS - Production NLSRTL Version - Production 1.设置环境变量和创建目录 $ export
1.创建表空间 create tablespace ts_aw logging datafile 'd:\app\Administrator\product\tablespace\ts_aw.dbf' size 10M autoextend on next 5M maxsize 20480M; 2.创建用户 create user hb identified by hb default tablespace ts_aw; 3.给用户授权限 grant connect,resource,dba t