Search
 
SCRIPT & CODE EXAMPLE
 

SQL

default username and password for oracle 11g

Run SQL*PLUS using Run SQL Command Line in Oracle Database 11g
Connect to Oracle Database as SYSDBA as follows:

SQL>connect as sysdba
It will ask you to enter username. Enter SYS as username. change_on_install as   Password
When prompted for password, enter , which is the password for SYS account.

SQL> ALTER USER system IDENTIFIED BY oracle;
The above command changes password of SYSTEM account to oracle. Be careful passwords are case-sensitive.
That's all you have to do to change password for SYSTEM account when you forget the password.
Here is the snapshot of the SQL*PLUS screen, which shows all required steps.
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle sql count occurrences of value in column 
Sql :: min max in sql 
Sql :: sql transfer table in other 
Sql :: create user in mysql 
Sql :: wp_query raw sql 
Sql :: Oracle SQL join three tables and group by column 
Sql :: data types in sql 
Sql :: Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , , = or when the subquery is used as an expression. 
Sql :: how to print some string in mysql 
Sql :: group by 
Sql :: sql reverse 
Sql :: trigger sql server 
Sql :: sql and operator 
Sql :: mysql run file command 
Sql :: error code 1241 mysql 
Sql :: 3rd height salary sql 
Sql :: datatables server side filter where clause 
Sql :: oracle multiple insert 
Sql :: how to link java and mysql 
Sql :: postgres add foreign key to existing table 
Sql :: Oracle Procedure ex2 
Sql :: drop all tables db2 
Sql :: decode plsql 
Sql :: mysql select all and rename one 
Sql :: PDOException: SQLSTATE[HY093]: Invalid parameter numb 
Sql :: select all fron table 
Sql :: db2 foreign keys 
Sql :: sqlalchemy where in query 
Sql :: mysql and 
Sql :: column value should show as latest using sql query 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =