Unfortunately, Oracle doesn't allow the underline parameter to be white space.
:-(
Main Topics
Browse All TopicsI would like to output a blank line between my headings and my data in an SQL statement, i.e. where the underline would normally be output. I have suppressed the underlines by using set underline off, but would like to have a blank line there instead.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
It seems the prior comments address a blank space instead of a blank line. If I understand you correctly, you want to reformat the result set output. SQL*Plus uses the TTITLE control to manage this.
First, find your current value by entering:
SQL> SHOW TTITLE
.... some result here....
To alter this, try:
SQL> SET TTITLE ON SKIP 1
HTH,
dvz
See also http://www.experts-exchang
First, my apologies to paquicuba for dissing a good try. May not be practical for a large result set but it did remove the underscore header (see code).
Secondly, I was wrong with my advice -- tried it myself (no prob with the show btw) but nothing in the past 45 minutes has been able to give you a whitespace row. I may be able to tap some other sources, but for now my solution does not work.
Consider adding the Oracle Product Info zone to your list, to try to reach other experts. Remember, a question may (and should) be cross-posted in three zones.
Business Accounts
Answer for Membership
by: paquicubaPosted on 2009-09-30 at 11:01:39ID: 25461526
Try this:
SET UNDERLINE OFF
SET HEAD OFF
SELECT 'DUMMY' FROM DUAL UNION ALL SELECT ' ' FROM DUAL UNION ALL SELECT DUMMY FROM DUAL;