Toggle Records per Page

zakko

Member³
Is there an option to easily toggle the "Records per Page" settings given in Prferences > Window Types > SQL Window?

For different use cases it makes sense to either have all records or just a limited amount of records displayed in an SQL window. So it could be very convenient to have a toggle via e.g. keyboard shortcut to switch between these preferences on the fly instead of each time diving down into the preferences. Does this already exist?

If so, I'd like to know how to set this up, otherwise I'd like to suggest this option as an improvement for PL/SQL Developer.
 
Can you do something similar with a tab directive? e.g.

Code:
--records=all
select o.object_name, o.subobject_name, o.object_type from dba_objects o
 
Back
Top