Oracle Find queries not using bind variables

Hi, Using bind variable in the queries is very crucial for performance tuning.     If you don’t use bind variables in the SQL queries then Oracle will know similar sqls differently like following. select * from customer where id=63; select * from customer where id=34; Above queries are almost same, just id variable is … Continue reading Oracle Find queries not using bind variables