Install Oracle Database_ A Step By Step Guide To Install Oracle Database
Install Oracle Database_ A Step By Step Guide To Install Oracle Database
Install Oracle
Summary: this tutorial shows you step by step how to install Oracle Database 12c in Windows 10.
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
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
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
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
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
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
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
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
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
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.
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
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.
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
1 C:\app\<user>\product\12.1.0\dbhome_1\network\admin\
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.
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
GETTING STARTED
SELECT
ORDER BY
SELECT DISTINCT
WHERE
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
CROSS JOIN
Self Join
GROUP BY
HAVING
UNION
INTERSECT
MINUS
GROUPING SETS
CUBE
ROLLUP
PIVOT
UNPIVOT
INSERT
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
NUMBER
FLOAT
BINARY_FLOAT
CHAR
NCHAR
VARCHAR2
NVARCHAR2
DATE
INTERVAL
TIMESTAMP
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
Drop Columns
HOME START HERE BASIC ADVANCED PL/SQL FUNCTIONS INTERFACES
DROP TABLE
TRUNCATE TABLE
RENAME Table
ORACLE CONSTRAINTS
PRIMARY KEY
FOREIGN KEY
UNIQUE
CHECK
NOT NULL
ORACLE VIEWS
CREATE VIEW
DROP VIEW
Updatable Views
Inline Views
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
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.
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
https://www.oracletutorial.com/getting-started/install-oracle/ 19/19