Long Identifiers in Oracle Database 12c Release 2

All DBAs & Developers would have always wondered that why Oracle has the identifier limit of 30 bytes whereas other rdbms SQL Server, MySQL etc have much bigger limit. Well honestly even I don’t know that, it has been this way ever since despite multiple request from customers/developers to Oracle to increase the identifier limit,…

SQL Server

This Series of posts would be to cover internals of SQL Server. Once we understand the internals we would start with installation, then basic administration and finally performance tuning & troubleshooting. The list of articles on SQL Server posted on this blog would also be linked below:- Install SQL Server 2017 on Linux SQL Server…

Sybase ASE

This Series of posts would be to cover internals of Sybase ASE. Once we understand the internals we would start with installation, then basic administration and finally performance tuning & troubleshooting. The list of articles on Sybase posted on this blog would also be linked below:- Sybase ASE – Take backup for Cross-Platform Load in…

MySQL

This Series of posts would be to cover internals of MySQL Database. Once we understand the internals we would start with installation, then basic administration and finally performance tuning & troubleshooting. The list of articles on MySQL posted on this blog would also be linked below:-

Installing 12c RAC on Oracle Linux 7

Without further ado, following are the steps to construct your own lab with a 2 node 12c RAC on Linux 6 using Oracle Virtual Box. You can download the required software from below links:- Oracle Linux 7 Oracle VirtualBox Grid Infrastructure 12cR1 Oracle 12cR1 To give you an overview, this is what we are going to…

Installing 12c RAC on Oracle Linux 6

Without further ado, following are the steps to construct your own lab with a 2 node 12c RAC on Linux 6 using Oracle Virtual Box. You can download the required software from below links:- Oracle Linux 6 Oracle VirtualBox Grid Infrastructure 12cR1 Oracle 12cR1 To give you an overview, this is what we are going to…

Installing Oracle Linux 6 on VirtualBox VM

This is a quick post on installing Oracle Linux 6 on VirtualBox. This post was originally intended to create a VM (1st node) of a RAC setup. You can download the required software from below links:- Oracle Linux 6 Oracle VirtualBox STEP 1 – Oracle VirtualBox Installation. Run the setup from the downloaded Oracle VirtualBox…

Installing Linux 7 on Oracle VirtualBox VM

This is a quick post about installing Oracle Linux 7 on VirtualBox VM. We would start by installing Oracle Linux 7 using a Oracle VM Virtual Box:- First of all download Oracle VM Virtual BOX (comment below if you aren’t able to download a copy) compatible to your operating system. For instance in my env. the…

Index Skip Scans

An index skip scan occurs when the initial column of a composite index is “skipped” or not specified in the query. Basically skip scanning lets a composite index be split logically into smaller sub-indexes, making every sub-index a viable candidate to be used by optimizer to come up with an efficient plan. The number of logical…

Index Fast Full Scans

Index Fast Full Scans are similar to Index Full Scans i.e they read index blocks in unsorted order, as they exist on disk.This scan does not use the index to probe the table, but reads the index instead of the table, essentially using the index itself as a table.