Logining into Oracle11g from shell
The basic Oracle interface is sqlplus
, and to start it, enter
shell> sqlplus userid/password@oracle.cs.und.edu:1521/orcl
SQL*Plus: Release 11.2.0.1.0 Production on Wed Sep 11 13:40:50 2013
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL>
You need to change your password with the following command the first time you use Oracle:
SQL> alter user userid identified by pwpwpwpw;
where pwpwpwpw
is whatever new password you want.
Note that, unlike Unix login names and passwords, Oracle account names and passwords are NOT case sensitive.