Hello everyone.. I'm doing some scripting through SQL Plus and I had this query (which I forgot to save) that created teh following Header before each row:
INFO_1
--------------------------------------------------
INFO_2
--------------------------------------------------
INFO_3 APRF
-------------------------------------------------- --------------
MESSAGE_DATE
-------------------
Which looks like it cuts the column off at 81.. And it puts this BEFORE each record.. this is what I want.. but now.. it's doing:
INFO_1
--------------------------------------------------
INFO_2
--------------------------------------------------
INFO_3 APRF MESSAGE_DATE
-------------------------------------------------- -------------- -------------------
Which as you can see is not cutting, and it's also only doing that on PAGE break.. I'ms ure it's something with the SQL (Which is included)
Any help would be GREAT.. Thanks
select info_1,info_2, info_3, aprf, message_date
from aibridge_text_message
where
message_date >= '01/01/2003 00:00:00'
and message_date <= '01/30/2003 23:59:59'
order by info_1, message_date