0

I am using

Run SQL Command Line

to connect with database, previously I am able to connect with username 'system' and password 'root' but when I tried to connect using SQL>connect system/root

it is showing error

ERROR:
ORA-01017: invalid username/password; logon denied

All services are running, after long time I am trying to connect may be I forgot my credentials can anyone help me how to change or reset both username and password I am on windows platform,

subbu royal
  • 584
  • 4
  • 12
  • 29
  • Possible duplicate of [changing password with oracle's SQL Developer](http://stackoverflow.com/questions/3086332/changing-password-with-oracles-sql-developer) – Florin Ghita Mar 16 '16 at 07:33

1 Answers1

0

I too reset my password few days back. You can reset your password by this

ALTER USER username IDENTIFIED BY password

Connect to db first

SQL> conn /as sysdba

More information Docs

FallAndLearn
  • 4,035
  • 1
  • 18
  • 24