- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to change the ORACLE ID's password without...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 05:43 PM
тАО04-16-2003 05:43 PM
How to change the ORACLE ID's password without login to ORACLE DATABASE?
Someone advise me if we install the SQL-PLUS to our client PC, we can do that.
Is there another way?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 05:57 PM
тАО04-16-2003 05:57 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
If the Oracle ID is Authenticated User then just, telnet to any normal user then change the unix password using passwd command.
If you need more then please write your problem.
Thanks
Zafar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 06:56 PM
тАО04-16-2003 06:56 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 07:10 PM
тАО04-16-2003 07:10 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
Anyway,any tool you need to login into the database for any changes in the structure.
If your Qs was to understand like
you are looking to change the password of the user from the PC sqlplus client instead of logging into the server machine which holds the Oracle database.
If that is the case then you can install the SQL-plus client and Net8 utilities on the PC.
Configure the Net8 to connect to the database from the PC.
You can do that by using Network administration menu and choosing the Net8 configuration Assistant.
From the new window you can select the "local net services configuration" to confifure the connection to the database.
Then use SQL-plus to connect to the database and then use
alter user
to change the password
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-17-2003 05:26 PM
тАО04-17-2003 05:26 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
Such as OEM, SQLPlus whatever tool you use. You must connect the database and alter user to change password. Oracle has not advised any method to amend it's logical content when the database is down.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-21-2003 05:57 PM
тАО04-21-2003 05:57 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
When you say "ORACLE ID", normally the oracle user (UNIX account) i which belongs to a DBA group is the oracle software (RDBMS) owner. And secondly there will be an oracle account in the database when you create a user called oracle. But the authentication depends on how you created either operation system authenticated or identified by password.
Now if you haev the oracle account operation system authenticated, you need not log on to the database to change the account password. Change it at the opration system level just like any unix user account.
If the Oracle user in the database is identified by a password, then you have to login as system through SQLPLUS or svrmgrl ---> connect....> internal and then change the password.
I hope this helps. Sorry for the delayed reply, office was closed for easter break.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-21-2003 08:41 PM
тАО04-21-2003 08:41 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
You can telnet to the box running the oracle database. It has a version of sqlplus installed as well.
Then its
sqplus internal
alter user oracle identified by password
You're done.
If by chance you're talking about the OS password for the oracle user, the command is passwd
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-22-2003 12:03 PM
тАО04-22-2003 12:03 PM
Re: How to change the ORACLE ID's password without login to ORACLE DATABASE?
Well there are several ways to do this.
Question one: does the oracle database use system or database verification. if system level database verification:
1. login as root,
2. passwd oracle
Did you mean the password for oracle users: sys, system, etc. these will have to be changed from within the database. sqlplus or svrmgrl
after logging in as the
user
you would
alter sys identified by
Tim