Oracle数据库的初始化

安装

初始化

Windows: 
1.进入命令行 :快捷键win+r  cmd
2.进入sql模式:sqlplus/nolog;
3.开始连接: conn / as sysdba;
4.创建表空间
Create tablespace tablespace datafile 'G:\app\Administrator\oradata\test.dbf' size 100M;
5. 创建用户
create user yhb identified by yhb default tablespace tablespace;
6. 授权
 grant connect,resource to yhb;
 grant dba to yhb;
7. 为新用户设置密码
alter user yhb identified by 123456;

你可能感兴趣的:(Oracle数据库的初始化)