具体方法:\x0d\x0a首先 用system
用户登陆。\x0d\x0a导入scott.sql脚本(可以在oracle的安装目录的查找),例如我本机的路径,导入就可以写成:\x0d\x0a@D:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\scott.sql\x0d\x0a \x0d\x0a其次 输入:\x0d\x0aalter user scott identified by tiger修改scott
密码\x0d\x0aalter user scott account unlock解锁用户\x0d\x0aconn scott/tiger (以scott模式登录)\x0d\x0ashow user (看看当前用户是否是scott)\x0d\x0aselect * from emp\x0d\x0a那么我们就可以查看到:\x0d\x0aSQL>select * from emp\x0d\x0a EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO\x0d\x0a---------- ---------- --------- ---------- -------------- ---------- ---------- ----------\x0d\x0a 7369 SMITH CLERK 7902 17-12月-8080020\x0d\x0a 7499 ALLEN SALESMAN7698 20-2月 -81 1600300 30\x0d\x0a 7521 WARD SALESMAN7698 22-2月 -81 1250500 30\x0d\x0a 7566 JONES MANAGER 7839 02-4月 -81 297520\x0d\x0a 7654 MARTIN SALESMAN7698 28-9月 -81 1250 1400 30\x0d\x0a 7698 BLAKE MANAGER 7839 01-5月 -81 285030\x0d\x0a 7782 CLARK MANAGER 7839 09-6月 -81 245010\x0d\x0a 7839 KING PRESIDENT17-11月-81 500010\x0d\x0a 7844 TURNER SALESMAN7698 08-9月 -81 1500 0 30\x0d\x0a 7900 JAMES CLERK 7698 03-12月-8195030\x0d\x0a 7902 FORD ANALYST 7566 03-12月-81 300020\x0d\x0a 7934 MILLER CLERK 7782 23-1月 -82 130010\x0d\x0a已选择12行。scott是用户,密码是tiger。oracle公司第一个程序员叫scott,他养的猫叫tiger,这个名字就这么流传下来了。
装好库之后默认是锁定的,需要解锁才能使用
alter user scott account unlock
解锁之后你可以select * from tab里面有4个表的
oracle 怎么
连接scott
oracle11g下scott用户无法连接数据库的解决办法:
1.开始——运行——cmd
输入:sqlplus / as sysdba 连接到数据库
SQL>conn scott/tiger 如果scott不存在,会报ORA-01017的错误,并会断开连接
2.再以SYS用户重新连接
SQL>conn sys/密码 as sysdba
然后在我们按照oracle的目录F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN中(以我的这个目录为例)找到scott.sql的这个文件
运行 SQL>@F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\scott.sql
这样scott用户就被添加进来,默认密码是tiger
SQL>conn scott/tiger 连接成功
SQL>SHOW USER
USER为“SCOTT”
3.如果想修改scott的默认密码可以执行下面命令(先以sys权限登录:sqlplus / as sysdba)
修改scott的登录密码
SQL>alter user scott identified by gg你再拿scott/gg来登录就可以了
4.如果scott.sql文件不存在的话,我们可以自己手动建一个。
新建文本文档将以下内容复制到文件中,然后保存为scott.sql,放到2中的文件夹中,再按照2中的步骤 *** 作即可。
评论列表(0条)