美文网首页
Oracle数据库的初始化

Oracle数据库的初始化

作者: YuWenHaiBo | 来源:发表于2016-10-28 16:10 被阅读23次

安装

初始化

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数据库的初始化

      本文链接:https://www.haomeiwen.com/subject/hedeuttx.html