Collections:
Reset Lost SYSTEM Password in Oracle
What To Do If DBA Lost the SYSTEM Password in Oracle?
✍: FYIcenter.com
If the DBA lost the password of the SYSTEM user account, he/she can go to the Oracle server machine, and run SQL*Plus on server locally with the operating system authentication method to gain access to the database. The tutorial exercise below shows you how:
(Terminal server to the Oracle server machine) (Start SQL*Plus) SQL>CONNECT / AS SYSDBA Connected. SQL> ALTER USER SYSTEM IDENTIFIED BY ssap_iyf; User altered.
Notice that the (/) in the CONNECT command tells SQL*Plus to use the current user on local operating system as the connection authentication method.
⇒ Types of Commands Executed in SQL*Plus in Oracle
⇐ Error: Could not Resolve the Connect Identifier in Oracle
2020-08-13, 4438🔥, 0💬
Popular Posts:
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...
What Are the Basic Features of a Trigger in SQL Server? Since a SQL Server trigger is a really an ev...
Where to find answers to frequently asked questions on Conditional Statements and Loops in SQL Serve...