Scheduling Oracle jobs using DBMS_JOB

-- scheduling at 01:00 am declare jobno number; begin dbms_job.submit(jobno, '<procedurename>;',TRUNC(sysdate)+1/24,'TRUNC(sysdate+1)+1/24'); end; -- every 2 hours declare jobno number; begin dbms_job.submit(jobno, …

How to kill SNIPED sessions dynamically using PL/SQL in Oracle

In Oracle, to kill sniped sessions dynamically using SQL, you can use EXECUTE IMMEDIATE inside a PL/SQL block. Understanding Sniped Sessions A sniped session is a session that has been marked as inactive (due to profile settings like IDLE_TIME in …

How to View Current database parameters in Oracle

To view current database parameters in Oracle, you can use the following methods: 🔹 1️⃣ View All Parameters Using V$PARAMETER Run the following SQL query to see all current database parameters : SELECT name, value FROM v$ parameter ORDER BY na…

Masking data in Oracle | Example Mobile number / Aadhaar Number

🔹 Masking a Mobile Number in Oracle Masking a mobile number means partially hiding digits for privacy while displaying only a few visible characters. Below are different ways to achieve this in Oracle. ✅ 1️⃣ Mask Middle Digits (Show First & Last …

Calculating the Number of Days in a Year in Oracle

Calculating the Number of Days in a Year in Oracle In Oracle, the number of days in a year can vary depending on whether it's a leap year (366 days) or a non-leap year (365 days) . Below are different ways to determine this: ✅ 1️⃣ Basic Calculat…

MONTHS_BETWEEN Function in Oracle | Get Age in Years

MONTHS_BETWEEN Function in Oracle The MONTHS_BETWEEN function in Oracle calculates the number of months between two dates. ✅ Syntax MONTHS_BETWEEN(date1, date2) date1 – The later date. date2 – The earlier date. Returns a decimal number (fraction…

Load More
That is All