It is really annoying that when I run a select command in SQL*Plus such as:
SELECT * FROM books;
The output is really badly formatted and unreadable (row cells are not in a row but separated by line breaks etc):
How can I configure it to show SELECT results in a nicer way?
EDIT:
This is my login.sql file contents:
SET ECHO OFF
SET SERVEROUTPUT ON SIZE 1000000
SET PAGESIZE 999
SET LINESIZE 132
EDIT2:
Affer increasing the LINESIZE:
SET LINESIZE 32000
It now looks like this:
Increase the linesize, e.g SET LINESIZE 32000
or use SET WRAP OFF
(but this will truncate long values)