Showing posts from July, 2025

How to find The Turnaround Time (TAT) in Oracle SQL

The Turnaround Time (TAT) in Oracle SQL is typically calculated as: TAT = END_TIME - START_TIME It measures total time taken from initiation to completion of a task — not just the repair time. 🧾 Assumed Table Structure CREATE TABLE TASKS ( TA…

How to find MTTR (Mean Time To Repair) in Oracle

In Oracle SQL, to calculate MTTR (Mean Time To Repair) , you typically need a table that records fault start time and fault end time for each incident. 🧾 Assumptions: Table Structure Assume a table like: CREATE TABLE FAULTS ( FAULT_ID NUM…

Load More
That is All