Install Oracle Database 12c on Windows

Wiki

The Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system produced and marketed by Oracle Corporation.

Official Website www.oracle.com

Download Link www.oracle.com/technetwork/database/enterprise-edition/downloads

Operating System Version : Microsoft Windows 8.1 Pro 64-bit Build 9600
Oracle Database Version  : Database 12c Release 1 Standard Edition, Standard Edition One, and Enterprise Edition (12.1.0.1.0)

Install

Download install file and extract two zip file to the same path

Install Oracle Database 12c on Windows

Locate the executable installation file to install, double-click setup.exe

Install Oracle Database 12c on Windows

install-oracle-atabase-12c-on-windows-3

Locate the executable installation file to install double-click [setup.exe]

Install Oracle Database 12c on Windows

This is just for testing, skipping updates

install-oracle-atabase-12c-on-windows-5

install-oracle-atabase-12c-on-windows-6

install-oracle-atabase-12c-on-windows-7

install-oracle-atabase-12c-on-windows-8

install-oracle-atabase-12c-on-windows-9

install-oracle-atabase-12c-on-windows-10

install-oracle-atabase-12c-on-windows-11

install-oracle-atabase-12c-on-windows-12

install-oracle-atabase-12c-on-windows-13

Finally, it finished

Install Oracle Database 12c on Windows

Verify the Installation

Start → SQL Plus, if you got

ERROR :
ORA-01033: ORACLE initialization or shutdown in progress

It may be the case, the database did not stop correctly. Try out following, open Dos command prompt:

c:> sqlplus /nolog
sql> connect sys/manager as sysdba
sql>shutdown immediate
sql> startup
sql> exit

While startup it may show error message like some of the parameter is missing. Note down that parameter and update in initSID.ora file, if you got error:

ORA-01017 invalid username/password;logon denied

Try to run follow command in SQL Plus:

SQL>conn/as sysdba # Operating system authentication login
SQL>alter user system identified by system; # User "system" password changes to "system"

If the password is a string of numbers to change, need to use quotation marks, like this:

SQL>alter user system identified by "12345678";

Open Oracle SQL Developer, if you got message like this Enter the full pathname for java.exe

C:\app\Administrator\product\12.1.0\dbhome_1\jdk\bin\java.exe

Visit in browser https://127.0.0.1:5500/em/login

Install Oracle Database 12c on Windows

0.00 avg. rating (0% score) - 0 votes