Showing posts with label oracle. Show all posts
Showing posts with label oracle. Show all posts

Thursday, February 1, 2024

Steps to install oci8 on centos 8

The following steps is valid for Oracle 11g, you can modify as per your oracle version in a similar fashion.1. Install the Oracle Instant Client:    - Download the Oracle Instant Client RPM packages for your architecture from the Oracle website (https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html). You'll need  oracle-instantclient-basic , ...

Tuesday, August 22, 2023

Physical IP Vs Virtual IP Vs SCAN IP (with Examples)

Physical IP, Virtual IP, and SCAN IP are terms often used in the context of networking and IT infrastructure. Let's break down the differences between these concepts:1. Physical IP (Internet Protocol):A physical IP address is a unique numerical label assigned to each device (like computers, routers, servers, etc.) connected to a network. It serves as an identifier that helps in routing data packets to the correct destination. Physical IP addresses...

Tuesday, July 25, 2023

What is Archive logs in Oracle database?

An archive log is a term commonly used in the context of database management systems, particularly with relation to Oracle Database.In a database system, the archive log refers to a copy of a redo log file that has been filled with data and then archived (backed up) to a storage location, such as a separate disk or tape. The redo log files store a record of changes made to...

Saturday, June 3, 2023

Differences between Datafile and Tablespace

  Datafile Tablespace Definition Physical file used by the DBMS to store data Logical storage container within a database Purpose Stores actual data, indexes, and other database objects Provides a logical organization and management structure for storing and accessing data ...

Friday, June 2, 2023

Real Application Clusters (RAC) in database

RAC stands for Real Application Clusters, and it is a feature of Oracle Database that allows multiple instances (database servers) to simultaneously access and manage a single database. This distributed architecture provides several benefits in terms of high availability, scalability, and performance.In a RAC configuration, multiple servers are interconnected, forming a cluster....