Create User Name and Password on SQL Server Database Using SQL Plus
SQL plus: Release
10.2.0.1.8 – Production on wed Feb 7 20:23:26 2018
Copyright <c> 1982.
2005, Oracle. All right reserved.
Enter user-name: system
Enter password:
Connected to:
Oracle Database 10g Express
Edition Release 10.2.0.1.0 – Production
SQL> create user Subham identified by sql;
User created.
SQL> grant dba to Subham;
Grant succeeded.
SQL> disconnected;
Disconnected from Oracle
Databse 10 g Express Edition Release 20.2.0.1.0 – Production
SQL> connect;
Enter user-name: Subham
Enter password:
Connected.
SQL>
Comments
Post a Comment