The following sql produces the o/p where u see a lot of blanks.
select 'z' from dual;
'Z'
--------------------------------
z
What I really want the o/p to be
'Z'
-
z
Is there an option to set so that the o/p width is what the heading width is and not add any extra blanks.
I know the column option on SQL*Plus, but thre you got to define all the columns and ther o/p formats. I want something more generic, something at system level.
Thanks
select 'z' from dual;
'Z'
--------------------------------
z
What I really want the o/p to be
'Z'
-
z
Is there an option to set so that the o/p width is what the heading width is and not add any extra blanks.
I know the column option on SQL*Plus, but thre you got to define all the columns and ther o/p formats. I want something more generic, something at system level.
Thanks