Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 8

1) OPEN Oracle 12c Folder

2) Right Click on setup file


3) Select “Run As Administrator” and then select “YES”
4) IN below window “DESELECT ALL CHECK BOXES” AND
then SELECT “NEXT”

5) In SELECT INSTALLATION OPTION window select “create and configure database” and select NEXT
6) IN SYSTEM CLASS window select “desktop class” and select NEXT

7) In Oracle Home User window , select “Create New Windows User” and then enter the details

Username: OracleHomeUser

Password: Oracle1

Confirm Password: Oracle1

And Now select “NEXT”


8) In Typical Installation window, verify below details
Under which drive Oracle is installing
Enter the password for administrator “manager_5”
[ The above password is for 2 user accounts, system and sys ]
Check and remember the pluggable database name.
Hints: IN oracle 12c Release 1 , the default pluggable database name is PDBORCL
IN oracle 12c Release 2, the default pluggable database name is ORCLPDB

And now select “NEXT”


9) If the system is display any error messages like below, then click YES , then your installation will be continued.

[ If you get any java related popup windows during installation process, then select PRIVATE and continue your installation. ]
10) In SUMMARY window select NEXT / INSTALL
11) In database configuration assistant window, Hit OK
12) In FINISH window , select CLOSE

After Installation:

1) Check the Oracle services


MyComputer
Right Click
select Manage
Double click services and applications
Again double click services
Browse for Oracle services
[ tnslistener & oracle service , Should be in Running state ]

2) Check tnsnames.ora file


C:\app\OracleHomeUser\product\12.2.0\dbhome_1\network\admin\tnsnames.ora

Double click tnsnames.ora, and cross check your tnsnames file with below content

Tnsnames.ora file content

# tnsnames.ora Network Configuration File: C:\app\OracleHomeUser\product\12.1.0\dbhome_1\network\admin\tnsnames.ora

# Generated by Oracle configuration tools.

LISTENER_ORCL =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))


ORACLR_CONNECTION_DATA =

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))

(CONNECT_DATA =

(SID = CLRExtProc)

(PRESENTATION = RO)

ORCL =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = orcl)

ORCLPDB =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = ORCLPDB)

3) Open SQL*PLUS
conn sys as sysdba
password:  (system user password )

Then follow as below


 alter pluggable database all open;
 alter pluggable database pdborcl save state;
 conn system/[password]
 alter session set container=PDBORCL;
 create your user account here
 grant permissions to your user account
 conn with your user account

You might also like