I have a table with 100 columns. When selecting data in SQL Plus
the output wraps, making it difficult to read.
What I’d rather like is either a horizontal scroll bar to appear or somehow send the output to less
I run following statements in SQLPlus –
SET LINESIZE 32000;
SET PAGESIZE 40000;
SET LONG 50000;
SPOOL output.txt
SELECT * FROM big_table;
Then in bash
I run –
less output.txt
The output still appears wrapped and unreadable.