Shell script to alert us when specified background process exceeds limit

Hello Everyone, The below script will help us to find number of processes runs in the background and send us alerts based on warning and critical thresholds. Script : # ]$ cat /home/oracle/DBA/bin/running_process.sh

Script execution : Syntax : ./running_process.sh <PROCESS_NAME> <WARNING> <CRITICAL> Here I… Read More

PostgreSQL Interview Q&A Part-3

PostgreSQL Interview Q&A Part-3 Before going into the article, please check our previous article on PostgreSQL Q&A Part-2 1. Can we have different data directories for PostgreSQL Cluster? Under One PostgreSQL installation, you can create multiple Clusters.  Each Cluster will have its own data directory. One… Read More

PostgreSQL Interview Q&A Part-2

PostgreSQL Interview Q&A Part-2 Before going into the article, please check our previous article on PostgreSQL Q&A Part-1 1. What are template0 & template1 databases? As the name suggests, these are template databases that come by default with the Installation. In a fresh installation, both… Read More

GIT INTERVIEW QUESTIONS (PART-2)

Dear Readers, In this article, we will discuss GIT INTERVIEW QUESTIONS.(Part-2) Please check part-1 GIT INTERVIEW QUESTIONS (PART-1) 1. What are different state of git for commiting the code in remote repository Ans:  a. modified(local modification) b. stagged(adding the local code to stagging area,command:git add .)… Read More