Skip to main content

Posts

Showing posts from January, 2017

RESOLVING SHUTDOWN IMMEDIATE HANG SITUATIONS

Many times Oracle DBA's are often faced with situation where shutting down the instance with shutdown immediate seems to take infinite time and gives an impression that the session in hung. In most of the cases this is not a hang. Hang can be defined as a scenario when few sessions/processes are waiting on some action and in turn blocking other session/processes to complete their tasks. Now the original sessions could be waiting because of resource issues or Oracle Bugs. Shutdown immediate can take long time to complete (appear to be hung) because of three reasons: Uncommitted transactions are being rolled back. SMON is cleaning temp segments or performing delayed block clean-outs. Processes still continue to be connected to the database and do not terminate. 1. Uncommitted transactions are being rolled back: This is the case when the message 'Waiting for smon  to disable tx recovery' is posted in the alert log after we issue shutdown immediate. There ...

STEPS TO INSTALL ORACLE DATABASE 12C ON ORACLE LINUX 7.x

Installing Oracle Database 12c After the Installation of Oracle Linux follow the following steps:- STEP ONE : Install the following packages ·         Login as root ·         Create a new file on the terminal using the command: #  vi rpm_packages.txt ·         Copy the packages below, paste and save the file. binutils-2.23.52.0.1-12.el7.x86_64 compat-libcap1-1.10-3.el7.x86_64 compat-libstdc++-33-3.2.3-71.el7.i686 compat-libstdc++-33-3.2.3-71.el7.x86_64 gcc-4.8.2-3.el7.x86_64 gcc-c++-4.8.2-3.el7.x86_64 glibc-2.17-36.el7.i686 glibc-2.17-36.el7.x86_64 glibc-devel-2.17-36.el7.i686 glibc-devel-2.17-36.el7.x86_64 ksh libaio-0.3.109-9.el7.i686 libaio-0.3.109-9.el7.x86_64 libaio-devel-0.3.109-9.el7.i686 libaio-devel-0.3.109-9.el7.x86_64 libgcc-4.8.2-3.el7.i686 libgcc-4.8.2-3.el7.x86_64 libstdc++-4.8.2-3.el7.i686 libstdc++-4.8.2-3....

Installing Oracle Linux 7

Obtaining and Preparing Installation Media Download Oracle Linux installation media from the Oracle Software Delivery Cloud at http://edelivery.oracle.com/linux. This ISO image contains everything needed to boot a system and start an installation. However, to complete the installation, you must specify the location. However, to complete the installation, you must specify the location of the packages, for example on a local disk or an NFS share. The Red Hat Compatible Kernel (RHCK) is used during the installation. Both the Unbreakable Enterprise Kernel Release 3 (UEK R3) and the RHCK aer installed. After installation, the system boots the UEK R3 kernel by default. Installing Oracle Linux Manually To install Oracle Linux, you need to boot the system from the boot image . Use the graphical installation program to install Oracle Linux provided that the system has sufficient memory and the video card is supported. Otherwise, text-based installation. Use the up an...