Whenever I execute select statements in a command line tool, it does not use all the space.
I changed the buffer size and window size and it just doesn't work.
Here is a screenshot:
In sqlplus do the following:
SET LINESIZE 1500
sqlplus does not automatically adjust its output width so that it matches the width of the terminal window. You need to change the width withset linesize 120
set linesize 120
You can consult the SQL * Plus documentation for more information on controlling the output format.
Oracle:
, DB/Oracle glogin.sql $ORACLE_HOME/sqlplus/admin
SET LINESIZE 9999;
SQL Plus.
Setting Windows console properties will not help. You must tell the oracle sqlplus engine to output the output in your perferred manner. This is done using Setoptions.
Set
Example:
SET LIN 300
Will use 300 columns per row
Source: https://habr.com/ru/post/1742736/More articles:Инициализация "новых пользователей" в Rails - ruby-on-railsTechnologies Used in Remote Administration (Non-RD) Applications - c #Original home control - version-controlusing Windows Media Encoder to record a screen - windowsFuture client-server code verification? - dnsКак скрыть ярлыки в html - javascriptбиблиотека библиотеки иерархии С#? - любой знает один (например, GetDirectChildren, GetAllChildren, GetParent) - c#Утечка мусора? Сценарий утечки моста? - memory-leaksClass Enumerations in Java - javaSQL selects a maximum of two time periods - sqlAll Articles