Install Oracle 12c On Windows

  1. Install Oracle 12c On Windows Server
  2. Oracle 12c For Windows
  3. How To Install Oracle 12c On Windows 10
  4. Install Oracle 12c On Windows 2012 R2
  5. Oracle 12c Download Windows 10

How to install Oracle Database 12C Enterprise Edition on Windows 1. Go to the Oracle Database Download page, Accept the License Agreement. Unzip the downloaded zip file into a folder. Go into the unzipped folder and Double-click on the setup.exe. The installer opens on the screen.

5 Sep 2015CPOL
  1. How to install Oracle Database 12C Enterprise Edition on Windows. In this section, I explained how to install Oracle database 12C on Windows machine. Install Oracle Database12C. Go to the Oracle Database Download page, Accept the License Agreement, Download files for Windows. Unzip the downloaded zip file into a folder.
  2. That’s it you are installed Oracle 12c in your windows operating system. Creating a database. Now we will create global database in the installed server. For that, do the following steps. Go to Start - All Programs - Oracle-OraDB12Home - Configuration and Migration Tools - Database Configuration Assistant (right click on it and Run as Administrator).
  3. Learn how to properly install oracle database 12c on Windows 10 Professional/Home x64 Bit.- LINKS.
  4. How to Install Oracle Database 12c - Steps Download Oracle Database 12c from the official website. Extract/unzip both of the files with 7-zip or Winrar. Find the file inside called 'database'. Run the setup.exe. Wait when the back screen appears. Enter a valid email address in the box.
How to Install Oracle 12c, How to create listener, How to create TablesSpaces and How to restore database

Introduction

For last a few years, I was working with MS SQL Server and

Recently I got a project which was using the oracle database, I faced a lot of difficulty to install and restore oracle database to a single test server

After searching for a simple solution I did not find it. So I thought to write a very simple step by step solution of beginners

Here are the steps for installation and logical restoration of latest backup,

Steps

I am using Windows 7 - 64Bit operating system.

You can download oracle 12c version from the following link

Main Steps

  1. Decrypt both download files to a single folder
  1. Double Click on Setup
  1. Loads Oracle Universal Installer
  1. Then, load First Window of Oracle Installation, Enter your email if needed, else leave it as blank and Remove Tick from check box of “I wish to receive security….” and click “Next” button.
  1. The ollowing warning message will display and click on “Yes” button.
  1. Select the second option “Install database software only” from Installation option of loaded window. And click “Next” button.

7. Select the first option “Single Instance database Installation” if you are using single standalone machine. Then click “Next” button.


  1. Select the product languages you needed, by default English will be selected. Click “Next” button
  1. By default Enterprise edition will be selected, just click “Next” button
  1. You can create a user for oracle or just select “Use Windows Built –in Account” option and click “Next” button.

Install Oracle 12c On Windows Server


  1. Click “Yes” and continue if you get the following message Box.
  1. Click “Next” If the default location has enough space for installation else change the path.
  1. Starts checking the prerequisites
  1. Loads the summary for installation details, Click “Install” button to start installation of the product.
  1. Installation starts and shows the progress of installation.
  1. Once installation finishes successfully click “Close” button.

That’s it you are installed Oracle 12c in your windows operating system.

Creating a database

Now we will create global database in the installed server.

For that, do the following steps

  1. Go to Start -> All Programs -> Oracle-OraDB12Home -> Configuration and Migration Tools ->

Database Configuration Assistant (right click on it and Run as Administrator)

  1. Select “Create Database” option and click “Next” button.
  1. Enter database name, password and select database character Set. And then click “Next” button.
  1. Loads Database Configuration Summary, click on “Finish” button
  1. Starts creating database file and loads the following window.
  1. Click “finish” button once database is created.

Yes.!! Now the database is created

Oracle Listener

Oracle Net Listener configuration, stored in the listener.ora file, consists of the following elements:

  1. Name of the listener
  2. Protocol addresses that the listener is accepting connection requests on
  3. Database services
  4. Control parameters

Now let us create listener. Do the following steps for it.

1. Go to Start -> All Programs -> Oracle-OraDB12Home -> Configuration and Migration Tools -> Net Configuration Assistant.

2. Select first option “Listener configuration” and click “Next” button.

3. Select first option “Add” then click “Next” button.

  1. By default Listener name will be “LISTENER” will be there, just click on “Next” button
  1. Select needed protocols and click “Next” button
  1. Use the standard port no 1521 or enter your custom port no. then click “Next” button.
  1. If it alerts by asking of configuration another listener select “No” and click “Next” button
  1. Loads Listener configuration complete message , click “Next” button
  1. Click “Finish” button

You did it…!!

Restoring a database

Now if you want to restore your logical database you have to create Tablespaces same as like in your source database

Oracle 12c For Windows

Check available table space in your source database using following query

Log in to your created database from SQL plus here is the steps

How To Install Oracle 12c On Windows 10

  1. Go to Start -> All Programs -> Oracle-OraDB12Home -> Application Development -> SQL Plus
  1. Login using SYS and password provided while creating database.

Enter user-name: SYS AS SYSDBA

Password: (Administrative password entered while installing)

Then press Enter…

  1. Run script ('SELECT * FROM DBA_DATA_FILES') to knowthe available TABLESPACES in new database.
  2. Then create remaining TABLESPACES same as like in source server using following queries
  1. If source contains two TABLESPACE files for one TABLESPACE alter the TABLESPACE using following script

Once you creates all tablespaces same as like in source server then create user in new server.

Create User using following query

If you get ORA-65096 Error

Labview runtime engine 7.1.1 download. RUN THE FOLLOWING Script

Session will get altered then again run script for creating user and grand user as dba

Importing

Now… You can import / restore your logical database to new database

Do the following steps

  1. go to start-> cmd as administrator
  2. write 'imp' press enter
  3. enter created user name and password
  4. Then follow the lines.
  • Connected to: Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production

With the Partitioning, OLAP and Oracle Data Mining options

JServer Release 9.2.0.6.0 - Production

  • Import file: expdat.dmp > /mention/path/of/dumpFile/includingFileName.dmp without single quote
  • Enter insert buffer size (minimum is 8192) 30720> (press enter to accept default)
  • Export file created by EXPORT:V09.02.00 via conventional path

import done in US7ASCII character set and AL16UTF16 NCHAR character set

import server uses AL32UTF8 character set (possible charset conversion)

  • List contents of import file only (yes/no): no > press enter
  • Ignore create error due to object existence (yes/no): no > press enter
  • Import grants (yes/no): yes > press enter
  • Import table data (yes/no): yes > press enter
  • Import entire export file (yes/no): no > press enter or type no
  • Username: give the userName for which you want the data to be imported
  • Enter table(T) or partition(T:P) names. Null list means all tables for user
  • Enter table(T) or partition(T:P) name or . if done: press enter
  • . importing TST_001_V2's objects into TST_001_V2

Once it is completed, you can connect to you database and use ….

Install Oracle 12c On Windows 2012 R2

Install oracle 12c on windows 32 bit

Oracle 12c Download Windows 10