1. When I use an explicit cursor I write something like this:
cursor c_rent;
fetch c_rent into r_rent;
close c_rent;
But PL/SQL Beautifier changes it to:
cursor c_rent;
fetch c_rent
into r_rent;
close c_rent;
I must admit that I don't like it at all. But I can't change this behaviour. Are...