1.快速创建开发数据库
--创建表空间
create tablespace XXXXX datafile 'D:\oracle\product\10.2.0\oradata\oral10\xxxxx.dbf' size 100M;
--创建用户
create user username identified by password default tablespace voice_yasen;
--用户基本权限
grant connect,resource to voice_yasen;
--如果需要使用IMP倒入数据,最简单方式给他DBA权限
grant dba to voice_yasen;
2.修改ORACLE-WEB管理服务的端口
call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),'/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',8000));