0% found this document useful (0 votes)
6 views

Oracle Installation VM 19c

The document provides instructions for setting up Oracle Database Developer VMs, including the use of the SYS and SYSTEM users for database administration. It outlines the installation process for Oracle 19c on both Windows and Linux, and includes links for additional resources and software downloads. Additionally, it mentions unlocking default user accounts and creating a directory for sample schemas after installation.

Uploaded by

Stephen Efange
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Oracle Installation VM 19c

The document provides instructions for setting up Oracle Database Developer VMs, including the use of the SYS and SYSTEM users for database administration. It outlines the installation process for Oracle 19c on both Windows and Linux, and includes links for additional resources and software downloads. Additionally, it mentions unlocking default user accounts and creating a directory for sample schemas after installation.

Uploaded by

Stephen Efange
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

pre-built developer vms

https://www.oracle.com/downloads/developer-vm/community-downloads.html

Database App Development VM:

https://www.oracle.com/database/technologies/databaseappdev-vm.html

Oracle DB Developer VM:

https://www.oracle.com/database/technologies/databaseappdev-vm.html#license-
lightbox

The sys user is the highest priviledged user specifically created for high level
administrative tasks in Oracle.
So the sys user needs to use the SYSDBA or SYSOPER role while connecting to the
database.

Users:

hr
sh

==> connect as either system user or sys user:

sys
system

The system user is a normal user that has dba privilege.


sys is the highest privilege user in the Oracle database.

Note: SYS Oracle users are the highest priviledged users in the Oracle database.
SYS user has to connect with the sysdba or sysoper role.

Basic or TNS connection type ?

With TNS the connection is in the tnanames.ora file - Specify the network alias -
select your container database name.

R click and connect to the db of choice.


Connect using the SQL green icon at the top of SQL Developer page. This allows you
to open multiple connections of the SQL Worksheet.

Ctrl + Enter
F9
Run

Install Oracle 19c:

You can install Oracle Rapidly by:

1. Installing the VirtualBox or VMware and import the image.

Or you can go the expert and manual way:

2. Installing the database directly to your desired OS.


a. Windows - cbtnuggets
b. Linux

Oracle Standard and EE are free for personal use but not for Comercial use.

https://www.oracle.com/database/technologies/oracle-database-software-
downloads.html

add 2nd NIC card


System eth0
System eth1 # Here is the 2nd NIC - 192.168.56.2

login as: oracle


[email protected]'s password:

oracle/oracle

************************************************** Learn Linux Basics and Later


install Oracle 19c on Linux:
Installs:

https://www.linkedin.com/learning/linux-overview-and-installation/welcome
or
https://www.linkedin.com/learning/learning-centos-linux-2/configuring-the-network-
manually

https://www.linkedin.com/learning/learning-virtualbox-2/learning-virtualbox

Download Linux:
http://mirror.centos.lax1.serverforge.org/7.9.2009/isos/x86_64/CentOS-7-x86_64-DVD-
2009.iso

Links:
https://linuxcbt.com/subscribe
https://drive.google.com/file/d/1Y92Xrpm3_hWY8IWSMFky7Jp3_MfzUBBh/view?usp=sharing

==> Create a Windows 10 VM to Install Oracle 19c on Windows:

https://www.microsoft.com/en-us/software-download/windows10

Create Windows 10 installation media: https://go.microsoft.com/fwlink/?


LinkId=691209

Create installation media (ISO file, USB flash drive or DVD)

Get the Itdvds app:


https://itdvds.com/Training/Windows10AdministrationTraining.aspx

look for these from the link above:


Installing Windows 10 Part 1 ---------------------> https://www.youtube.com/watch?
v=snKIS98ykJ4
Installing Windows 10 Part 2

***********************************************************************************
********

After the installation, the pluggable database will be initially closed.


You need to open the pluggable database to be able to use the sample schemas.
The hr user is locked by default, so you need to unlock it.

sqlplus sys/oracle as sysdba;

alter user hr identified by oracle account unlock;


alter user sh identified by oracle account unlock;
alter user oe identified by oracle account unlock;
alter user pm identified by oracle account unlock;
alter user ix identified by oracle account unlock;

create directory import_dir as 'C:\SAMPLE_SCHEMAS';

You might also like