The Mystery of Scott/Tiger in Oracle

Team Leader
15Dec2006,21:55   #1
pradeep's Avatar
You must have always wondered why there is a uname / pwd in Oracle called, Scott/Tiger....
Who is this scott ? Here is the answer to ur query....
So, who is Scott?

Bruce Scott was one of the first employees at Oracle (then Software Development Laboratories). He co-founded Gupta Technology (now known as Centura Software) in 1984 with Umang Gupta, and later became CEO and founder of PointBase, Inc. Bruce was co-author and co-architect of Oracle V1, V2 and V3. The SCOTT schema (EMP and DEPT tables), with password TIGER, was created by him. Tiger was the name of his cat.
Team Leader
18Dec2006,10:58   #2
coderzone's Avatar
Thats a nice peace of info.
Go4Expert Member
26Jul2009,20:28   #3
stylishkishore's Avatar
very nice,,.
Mentor
26Jul2009,22:56   #4
xpi0t0s's Avatar
It's only there if you select it at install time. Having a user called scott is by no means compulsory.
Invasive contributor
27Jul2009,00:51   #5
mayjune's Avatar
nice.... been wondering this for quite long
In college we enter Scott/Tiger/Infotech
any idea why infotech...or is it set by our college?
Invasive contributor
27Jul2009,00:51   #6
mayjune's Avatar
nice.... been wondering this for quite long
In college we enter Scott/Tiger/Infotech
any idea why infotech...or is it set by our college?
Mentor
27Jul2009,00:59   #7
xpi0t0s's Avatar
Is it scott/tiger/infotech or scott/tiger@infotech?
If @ then that's the database alias - you're connecting in a client/server configuration and infotech is defined in $ORACLE_HOME/network/admin/tnsnames.ora.
Another way to do the same thing would be to set the environment variable TWO_TASK=infotech, then sqlplus scott/tiger would do the same thing.

If scott/tiger/infotech, no idea, never seen that syntax before, unless the password is "tiger/infotech".
Invasive contributor
27Jul2009,01:21   #8
mayjune's Avatar
@xp
its @

and what i asked was like scott tiger, is infotech come pre installed? if yes any reasons like above?
Mentor
27Jul2009,01:53   #9
xpi0t0s's Avatar
No, infotech will have been setup by your sys admin. Have a look at tnsnames.ora and you'll see how it's defined, not much of any interest in there though.
The scott schema doesn't come pre-installed; you have to select it in the installer.
Invasive contributor
28Jul2009,01:12   #10
nimesh's Avatar
Quote:
Originally Posted by xpi0t0s View Post
Is it scott/tiger/infotech or scott/tiger@infotech?
If @ then that's the database alias - you're connecting in a client/server configuration and infotech is defined in $ORACLE_HOME/network/admin/tnsnames.ora.
Another way to do the same thing would be to set the environment variable TWO_TASK=infotech, then sqlplus scott/tiger would do the same thing.

If scott/tiger/infotech, no idea, never seen that syntax before, unless the password is "tiger/infotech".
I know about the tns file but what is TWO_TASK
Is it used to asign the default database alias?