I'm unloading a table within a Unix Shell Script through SQL and need the delimiter to be nothing. I want the three columns to blend together seamlessly. The reason is after the tables are unloaded we're saving them to a mainframe which needs one big long line. Any ideas? Thanks a bunch.
2006-07-14
06:50:22
·
3 answers
·
asked by
Jason
2
in
Computers & Internet
➔ Programming & Design
the table has numbers in place. when i add: Delimiter " to the end of the select line, it makes the quotation mark the delimiter. looking for now space between columns
2006-07-14
06:55:37 ·
update #1
I must not be making myself clear.
Three columns which have data:
1234 - EYE
5678 - EAR
9100 - NOSE
select EYE, EAR, NOSE Delimiter ??
from table1
What goes where the ?? are to get the result
123456789100
If you use:
select EYE, EAR, NOSE Delimiter '?'
from table1
your table would look like
1234?5678?9100
not what i want
2006-07-14
07:07:37 ·
update #2