Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
2 views

Install Oracle Database_ A Step By Step Guide To Install Oracle Database

This document provides a step-by-step guide for installing Oracle Database 12c on Windows 10. It details the necessary steps including downloading the installer, extracting files, and configuring settings during the installation process. Additionally, it explains how to connect to the database after installation and modify the tnsnames.ora file for database access.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Install Oracle Database_ A Step By Step Guide To Install Oracle Database

This document provides a step-by-step guide for installing Oracle Database 12c on Windows 10. It details the necessary steps including downloading the installer, extracting files, and configuring settings during the installation process. Additionally, it explains how to connect to the database after installation and modify the tnsnames.ora file for database access.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 19

11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Home / Getting Started with Oracle Database / Install Oracle

Install Oracle

Summary: this tutorial shows you step by step how to install Oracle Database 12c in Windows 10.

Installing Oracle Database


To install Oracle database on your computer, you need to download the installer from the download
page of Oracle website.

After having the installation les which are in ZIP format, you need to extract them into a speci c folder
on your computer.

The following picture shows the structure of the folder of the Oracle installation les after extraction.

Now you need to double-click the setup.exe le to start the installation process. There will be 9 steps
which mostly automatically execute.

https://www.oracletutorial.com/getting-started/install-oracle/ 1/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

Step 1. The installer asks you to provide your email address to get the latest security issues and
updates. You can ignore it by clicking the Next button

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Because I didn’t provide the email address, the Oracle database installer con rm it, you just need to click
the No button to continue.

Step 2. In step 2, Oracle installer ask you to whether you want to create and con gure a database, install
⤒ at
database software only or just upgrade an existing database. Because you install the Oracle database
the rst time, choose the option 1 and click the Next button.
https://www.oracletutorial.com/getting-started/install-oracle/ 2/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Step 3. The installer allows you to choose the system class. Because you install Oracle on your
computer, not a server, therefore, you choose the rst option: desktop class and click the Next button.

https://www.oracletutorial.com/getting-started/install-oracle/ 3/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Step 4. This step allows you to specify the Windows user account to install and con gure Oracle Home
for enhanced security. Choose the third option: “Use Windows Built-in Account”.

https://www.oracletutorial.com/getting-started/install-oracle/ 4/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Step 5. in this step you can (1) choose the folder on which Oracle database will be installed, (2) Global
database name and password, (3) pluggable database name.

https://www.oracletutorial.com/getting-started/install-oracle/ 5/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Step 6. The installer performs the prerequisite check.

https://www.oracletutorial.com/getting-started/install-oracle/ 6/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Step 7. The installer shows you the summary of the information such as global settings, database
information, etc. You need to review the information and click the install button if everything is ne.

https://www.oracletutorial.com/getting-started/install-oracle/ 7/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Step 8. The installer starts installing Oracle database. It will take a few minutes to complete, depending
on your computer.

https://www.oracletutorial.com/getting-started/install-oracle/ 8/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

https://www.oracletutorial.com/getting-started/install-oracle/ 9/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

https://www.oracletutorial.com/getting-started/install-oracle/ 10/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

You will see the Database Con guration Assistant window. Click the Password management… button to
enter the password for Oracle database accounts.

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Enter the password for SYS and SYSTEM accounts and then click OK button.

Step 9. Once installation completes successfully, the installer will inform you as shown in the following
screenshot. Click the Close button to close the window. ⤒

https://www.oracletutorial.com/getting-started/install-oracle/ 11/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

Connecting to Oracle Database


First, launch the SQL developer application provided by the Oracle Database.

Second, right-click the connections node and choose New Connection … menu item to create a new
connection.

https://www.oracletutorial.com/getting-started/install-oracle/ 12/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

Third, enter the information that you provided during the installation process as shown in the following
screenshot. Click the Connect button to connect to the Oracle Database.

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

SQL developer will display all objects as shown below.

Congratulation! you have installed Oracle Database 12c successfully. Let’s start exploring Oracle.


Adding an entry to the tnsnames.ora le

https://www.oracletutorial.com/getting-started/install-oracle/ 13/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

The tnsnames.ora le is typically located in the following directory:

1 C:\app\<user>\product\12.1.0\dbhome_1\network\admin\

HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 


If you follow the above installation steps, then the le is located at the following directory:

1 C:\app\product\12.1.0\dbhome_1\network\admin\

You rst open the tnsnames.ora le using any text editor such as Notepad or Notepad++. Then, you
need to add the following lines at the end of the le:

1 PDBORCL =
2 (DESCRIPTION =
3 (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
4 (CONNECT_DATA =
5 (SERVER = DEDICATED)
6 (SERVICE_NAME = pdborcl)
7 )
8 )

After that, you can save the le and close it. It is time to download and load a sample database into the
Oracle Database server.

Was this tutorial helpful?

 Yes  No

« Previous Tutorial:
What Is Oracle Database
Next Tutorial:
Oracle Sample Database

»
https://www.oracletutorial.com/getting-started/install-oracle/ 14/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

Search this website


HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

GETTING STARTED

What Is Oracle Database

Install Oracle Database Server

Download Oracle Sample Database

Create Oracle Sample Database

Connect To Oracle Database Server

ORACLE DATA MANIPULATION

SELECT

Oracle DUAL Table

ORDER BY

SELECT DISTINCT

WHERE

Table & Column Aliases

AND

OR

FETCH ⤒

https://www.oracletutorial.com/getting-started/install-oracle/ 15/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

BETWEEN

IN

LIKE
HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 
IS NULL

Joins

INNER JOIN

LEFT JOIN

RIGHT JOIN

FULL OUTER JOIN

CROSS JOIN

Self Join

GROUP BY

HAVING

UNION

INTERSECT

MINUS

GROUPING SETS

CUBE

ROLLUP

PIVOT

UNPIVOT

INSERT

INSERT INTO SELECT

INSERT ALL

UPDATE

DELETE

MERGE

Subquery

Correlated Subquery

EXISTS

https://www.oracletutorial.com/getting-started/install-oracle/ 16/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

NOT EXISTS

ANY

ALL
HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

ORACLE DATA TYPES

Oracle Data Types

NUMBER

FLOAT

BINARY_FLOAT

CHAR

NCHAR

VARCHAR2

NVARCHAR2

DATE

INTERVAL

TIMESTAMP

TIMESTAMP WITH TIME ZONE

ORACLE DATA DEFINITION

CREATE TABLE

Identity Column ⤒
ALTER TABLE

https://www.oracletutorial.com/getting-started/install-oracle/ 17/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

ALTER TABLE ADD Column

ALTER TABLE MODIFY Column

Drop Columns
HOME START HERE BASIC ADVANCED  PL/SQL FUNCTIONS  INTERFACES 

DROP TABLE

TRUNCATE TABLE

RENAME Table

Oracle Virtual Column

ORACLE CONSTRAINTS

PRIMARY KEY

FOREIGN KEY

UNIQUE

CHECK

NOT NULL

ORACLE VIEWS

CREATE VIEW

DROP VIEW

Updatable Views

Inline Views

WITH CHECK OPTION

https://www.oracletutorial.com/getting-started/install-oracle/ 18/19
11/24/2019 Install Oracle Database: A Step By Step Guide To Install Oracle Database

ABOUT ORACLE TUTORIAL RECENT TUTORIALS

OracleTututorial.com
HOME website
START HEREprovides
BASIC Managing
ADVANCED  Transaction
PL/SQL in Python
FUNCTIONS  INTERFACES 
Developers and Database Administrators with
Deleting Data From Oracle Database in Python
the updated Oracle tutorials, scripts, and tips.

Updating Data In Oracle Database from Python


SEARCH
Inserting Data Into Table from Python

Search this website Using Bind Variables to Pass Data to and from
Oracle Database
SITE LINKS

Oracle Books

About

Contact

Privacy Policy

Terms of Use

Copyright © 2019 Oracle Tutorial. All Rights Reserved.

https://www.oracletutorial.com/getting-started/install-oracle/ 19/19

You might also like