C:\oraclexe\app\oracle\product\11.2.0\server\bin>sqlplus
SQL*Plus: Release 11.2.0.2.0 Production on Dom Nov 10 14:21:32 2013
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name: system
Enter password:
ERROR:
ORA-01017: invalid username/password; logon denied
Para solucionar este inconveniente, nos conectaremos mediante el sysdba para cambiar el password del usuario system :
- Conectarnos al sysdba
- Cambiar el password del usuario system por changeit
SQL*Plus: Release 11.2.0.2.0 Production on Dom Nov 10 14:48:10 2013
Copyright (c) 1982, 2010, Oracle. All rights reserved.
SQL>
SQL> conn /as sysdba;
Connected.SQL> alter user system identified by changeit;
User altered.
SQL>
SQL> exit
Disconnected from Oracle Database 11g Express Edition Release 11.2.0.2.0 - Produ
ction
Volvemos a intentar conectarnos con el password cambiado
C:\oraclexe\app\oracle\product\11.2.0\server\bin>sqlplus
SQL*Plus: Release 11.2.0.2.0 Production on Dom Nov 10 14:49:09 2013
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name: system
Enter password:
Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
SQL>
SQL>
Y listo! ya tenemos el acceso a nuestra base datos.
No hay comentarios:
Publicar un comentario