Question

i am doing a spool of sql select output. i have the below sql settings

        SET FEEDBACK OFF
        SET HEADING OFF
        SET LINESIZE 800
        SET PAGESIZE 50000
        SET TRIMSPOOL ON
        SET TERMOUT OFF
        SET ECHO OFF

The problem is there is a blank line inserted into the spool file before select statement output. Not sure what sql settings i need to add.

Was it helpful?

Solution

It's printing a blank page heading - use:

SET PAGESIZE 0
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top