Sets the total number of characters that SQL*Plus displays on one line before beginning a new line. WINDOW adjusts the linesize and pagesize for the formatted output according to the width and height of the screen. If the output is longer than the screen width, then the output is wrapped accordingly
1 2 3 4 5 |
Example To set the linesize for the output to 30, enter SQL> SET LINESIZE 30 SQL> SHOW LINESIZE linesize 30 |
To dynamically change […]