第一步:下载两个安装包。注意是下载windows系统支持下的包。
第二步:将两个安装包选中解压到一个文件夹下!注意是选中两个包解压!
第三步:根据安装提示一步步安装。到安装完成时,会有一个口令管理的按钮,点击进入,取消锁定scott数据库,并设置其密码。
第四步:登录数据库。
在不知道密码的情况下的登录方法:
SQL*Plus: Release 11.2.0.1.0 Production on 星期一 1月 10 22:25:16 2011
Copyright (c) 1982, 2010, Oracle.
请输入用户名:
输入口令:
连接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter user sys identified by admin;
用户已更改。
SQL> conn sys/admin as sysdba;
已连接。
SQL> alter user system identified by admin;
用户已更改。
SQL> alter user scott identified by tiger;
用户已更改。