Hello,
I need to export this table to a text file. Here is how the table was created:
Select row_id+
column1+
column2+
char(13)+
row_id+
column3
from my table
With Char(13), it should split the data into 2 rows per record. However, after I export the table using DTS, it showed only one long row per record. What am I doing wrong? Was using Char(13) incorrect?
Note that row_id showed twice.
Thanks.
I need to export this table to a text file. Here is how the table was created:
Select row_id+
column1+
column2+
char(13)+
row_id+
column3
from my table
With Char(13), it should split the data into 2 rows per record. However, after I export the table using DTS, it showed only one long row per record. What am I doing wrong? Was using Char(13) incorrect?
Note that row_id showed twice.
Thanks.