Viewing 3 posts - 1 through 3 (of 3 total)
Can these two SELECT statements be mergerd into one with the ORDER BY happening first?
SELECT [controlNum], [transDate] FROM [EDI_Control].[dbo].[InterchangeControl] WHERE controlNum > 0 ORDER BY [transDate];
SELECT [controlNum], [transDate] FROM [EDI_Control].[dbo].[InterchangeControl]...
September 4, 2009 at 2:01 pm
Yes I know that. I think a 10 is trying to be inserted again because of the way the table is sorted... Mapforce sees the 9 as the last...
September 4, 2009 at 1:05 pm
1. Good question. I made it char(9) because the field I'm mappping it to is a 9 character fixed length field. That was my thinking at the time.
2....
September 4, 2009 at 12:54 pm
Viewing 3 posts - 1 through 3 (of 3 total)