SQL Plan Comparison

The plan of an SQL can change, and the change is justified if it doesn’t degrade performance. Changes in the values of bind variables,  change in statistics etc. can change the plan which is often an expected behavior. But now and then you may see a change that degrades performance. Below script compares the plans for  SQL s from […]

What is Tuning?

In the context of database processing, tuning can be defined as a set of techniques that helps the database to operate more efficiently–with higher throughput. Database tuning can be at the SQL statement level, or at the system level. SQL Tuning SQL Tuning is a set of techniques used to execute the SQL in the […]