0% found this document useful (0 votes)
13 views

Oracle11g Installation

Uploaded by

dagenalwot
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Oracle11g Installation

Uploaded by

dagenalwot
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 12

ORACLE 11G EXPRESS EDITION INSTALLATION

NOTES
Bindu Jose
DOWNLOAD ORACLE 11G & SQL DEVELOPER
• Download Oracle 11g Xpress Edition From Oracle
• https://www.oracle.com/database/technologies/xe-prior-releases.html
• Unzip (Extract All) the zip file to a folder. – Make sure you properly extract the files, i.e. right
click on the zip file and select Extract All
• Download SQL Developer
• On Moodle (under Additional Materials)
• http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
• Download the zip file that include Java.
• Unzip (Extract All) the zip file to a folder. – Make sure you properly extract the files, i.e.
right click on the zip file and select Extract All
TO PERFORM A GRAPHICAL USER INTERFACE
INSTALLATION:
• Step 1. Log on to Windows with Administrative privileges.
• You must be part of the Administrators group on Windows to install Oracle Database XE.
• Step 2. If the ORACLE_HOME environment variable has been set, then use System in the
Control Panel to delete it.
• Step 3. Find the Oracle Database XE installation executable, setup.exe, double-click it.
• You will find this with the extracted files.
START INSTALLATION
• Step 4. In the Oracle Database 11g Express Edition - Install Wizard welcome window, click Next.

• Step 5. In the License Agreement window, select I accept the terms in the license agreement and
then click Next.
DESTINATION FOLDER
• Step 6. In the Choose Destination Location window, either accept the default or click Browse to
select a different installation directory. (Do not select a directory that has spaces in its name.)
Then click Next.
PORT
• Step 7. If you are prompted for a port number, then specify one.
• The following port numbers are the default values:
• 1521: Oracle database listener
• 2030: Oracle Services for Microsoft Transaction Server
• 8080: HTTP port for the Oracle Database XE graphical user interface
• If these port numbers are not currently used, then the installation uses them automatically
without prompting you. If they are in use, then you will be prompted to enter an available port
number.
PASSWORD - IMPORTANT
• Step 8. In the Specify Database Passwords window, enter and confirm the password to use for
the SYS and SYSTEM database accounts. Then click Next.
INSTALL
• Step 9. In the Summary window, review the installation settings, and if you are satisfied, click
Install. Otherwise, click Back and modify the settings as necessary.

INSTALL

• Step 10. In the InstallShield Wizard Complete window, click Finish


CONNECTING TO THE LOCAL DATABASE SERVER
• You must have completed downloading SQL Developer and Extracting the files, if not
• Download SQL Developer
• Extract the ZIP file
• Browse to SQL Developer Application and double click
• Create a connection by ADD Connection
• For the first time connect to the Database Server as an Administrator (sys) using the
password created by you.
• Makes sure you selected
• Connection Type – Basic
• Role – SYSDBA
• Save the connection
• Click CONNECT
• For more clarification please find the screenshot on the next slide.
CONNECTING TO THE LOCAL DATABASE SERVER

Make sure
the Role is
SYSDBA
CREATING USER ACCOUNT

• You must create at least one database user that you will use to create database objects.
• For example, to create a database user named JOE.
• Follow these steps, using the SQL Worksheet Type the following SQL
• Create the user.
CREATE USER joe IDENTIFIED BY password-for-joe ;
• Grant the user the necessary privileges. For example:
GRANT CONNECT, RESOURCE TO joe;
GRANT CREATE VIEW, CREATE ANY VIEW TO joe;
• A database user is a type of database object: a user is associated with a database schema, you
connect to the database as a database user, and the database user is the owner of any database
objects (tables and so on) that you create in the schema associated with the user.
CONNECT TO THE DATABASE AS JOE
• Add a new connection using ADD Connection
• Connection Name – any
• Username - joe
• Password – assigned password
Make sure the
• Makes sure you selected selected Role is
DEFAULT, not
• Connection Type – Basic SYSDBA

• Role - default
• Save the connection
• Click Connect

You might also like