There seems to be a line break after every 11 entries in my script output in SQL developer. How can I get rid of it?
1 Answer
SQL Developer output use same format as SQL*Plus.
you can use SHOW ALL command to view all availables format setting.
You can try your own fitness by changing PAGESIZE value.
2 Comments
thatjeffsmith
Correct. Default pagesize is 11.
thatjeffsmith
set pagesize 0 select line from user_source; -- execute F5 for quick sanity check
