On Jun 23, 5:32 am, Grampus <srikar...@gmail.com> wrote:
> I m using windows 7 64 bit. Oracle 10g installation is not successful
> in my system. Got few errors while creating a initial database.
> (related to tnsora, ....)
>
> All the oracle related application are installed, but unable to login
> with Scott/Tiger.
>
> Thanks,
> Srikar Chepuri

scott/tiger is no longer a valid default login.  You need to connect
as SYS as SYSDBA and create a user for testing:

$ sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 - Production on Wed Jun 23 22:23:46 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.


Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
Production
With the Partitioning, OLAP, Data Mining and Real Application Testing
options

SQL> grant create session to scott identified by tiger;

Grant succeeded.

SQL> connect scott/tiger

Connected.

SQL>


David Fitzjarrell



-- 
You received this message because you are subscribed to the Google
Groups "Oracle PL/SQL" group.
To post to this group, send email to Oracle-PLSQL@googlegroups.com
To unsubscribe from this group, send email to
oracle-plsql-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/Oracle-PLSQL?hl=en

Reply via email to