You are on page 1of 1

password for connection -- arun/arun123

7007358083
now new password is arun/arun321
sqlplus / as sysdba
The slash (/) indicates that the database should authenticate you with operating
system authentication.
At the SQL Command Line prompt, enter the following command:
SQL> STARTUP
If the command is successful, it displays output similar to the following. (Syst
em global area sizes will vary depending on the amount of physical memory in you
r Oracle Database XE host computer.)
ORACLE instance started.
Total System Global Area 599785472 bytes
Fixed Size
1220804 bytes
Variable Size
180358972 bytes
Database Buffers
415236096 bytes
Redo Buffers
2969600 bytes
Database mounted.
Database opened.
(Optional) Enter the following SQL query to verify that the database started up
properly:
SQL> select count(*) from hr.employees;
The query results should look similar to the following:
COUNT(*)
---------107
To exit the SQL Command Line. enter the following command:
SQL> EXIT
create user arun identified by arun123;
alter user arun identified by arun321;
grant CREATE SESSION, ALTER SESSION, CREATE DATABASE LINK, CREATE MATERIALIZED VIEW, CREATE PROCEDURE, CREATE PUBLIC SYNONYM, CREATE ROLE, CREATE SEQUENCE, CREATE SYNONYM, CREATE TABLE, CREATE TRIGGER, CREATE TYPE, CREATE VIEW, UNLIMITED TABLESPACE to arun;

You might also like