Hi,
I want the column headings to printed only once in my output.
The following query returns 100 rows and the output is displayed in the below format. Repeating the column heading for every page.
I tried setting the pagesize=0 but it truncates the column heading.
select user_name,user_id
from fnd_user where rownum<=100
USER_NAME USER_ID
--------------- -------
ANONYMOUS -1
AUTOINSTALL 1
CONCURRENT MANA 4
....
....
USER_NAME USER_ID
--------------- -------
PHILLM01 1324
BREENM01 1104
BRIGGS01 1105
BROCKK01 1106
BROOKJ01 1107
BROWNS01 1108
BRUCED01 1109
BURNSD01 1110
100 rows selected.
I want the column headings to be displayed only once in the output like,
USER_NAME USER_ID
--------------- -------
PHILLM01 1324
CONFIG 1027
HOUSEKEEPER 1028
..
..
..
330 rows selected