ORACLE的测试用户Scott

Oracle数据库的测试用户Scott的密码为什么是Tiger?

1977年6月,Larry Ellison 与 Bob Miner 和 Ed Oates 在硅谷共同创办了一家名为软件开发实验室(Software Development Laboratories,SDL)的计算机公司(Oracle公司的前身)。

    那个时候,32岁的Larry Ellison,这个读了三家大学都没能毕业的辍学生,还只是一个普通的软件工程师。公司创立之初,Miner是总裁,Oates为副总裁,而 Ellison,因为一个合同的事情,还在另一家公司上班。

    没多久,第一位员工Bruce Scott加盟进来。Scott用户的密码Tiger,那是 Scott养的猫的名字.

激活scott用户

 1 SQL> conn scott/tiger;
 2 ERROR:
 3 ORA-28000: the account is locked
 4 Warning: You are no longer connected to ORACLE.
 5 SQL> conn /as sysdba
 6 Connected.
 7 SQL> alter user scott account unlock;
 8 User altered.
 9 SQL> conn scott/tiger;
10 ERROR:
11 ORA-28001: the password has expired
12 Changing password for scott
13 New password: *****
14 Retype new password: *****
15 Password changed
16 Connected.
17 SQL> conn scott/tiger;
18 Connected.
View Code
原文地址:https://www.cnblogs.com/thescentedpath/p/Scott.html