Viewing 10 posts - 1 through 10 (of 10 total)
How do I set that up in DTS?
Thanks for the reply
November 28, 2005 at 9:28 am
what I really want to do is drop them so it would read 'A1EC1-52'
November 16, 2005 at 7:06 am
Thanks for all the help. I figued it out. The final query follows:
--build the query
select 'L' as RECTYPE, identity(int, 1, 1)as JELINENO,
--Get the current JENO from the issuesreturns table
(select max(JENO)...
November 14, 2005 at 8:22 am
I figured this out. The answers is:
(select max(JENO) + 1 from issuesreturns) as JENO,
November 14, 2005 at 8:21 am
That seemed to do it.
Thanks for your help
November 4, 2005 at 8:35 am
Here is a much larger snippet of the code:
--build query default value columns
select 'L' as RECTYPE, identity(int, 1, 1)as JELINENO, '800002' as JENO, 'AJE' as JECODE,
'2006' as FY,
-- The...
November 3, 2005 at 11:17 am
Viewing 10 posts - 1 through 10 (of 10 total)