Viewing 5 posts - 1 through 5 (of 5 total)
Thank you very much!! That gave me what I wanted, although now it made me rethink this whole process and is giving me more work to do. lol Regardless, it...
January 5, 2012 at 7:49 am
your first line:
select j.Name , (case when k.Job_ID ISnull then 'Temporary' else 'Permanent' end )as 'Job_Status' from
should have a space between is and null:
case when k.job_ID IS NULL then...
January 5, 2012 at 7:36 am
yes, it would but I don't need the AutoID in the results just the type. There are times when I need to send AutoID 55 in as a type 2...
September 13, 2011 at 11:01 am
In the OLD DB Source Editor in SSIS the SQL command text looks like this:
SELECT
' ' AS WTIPOST
,Transfer_Num
,? AS WTTYP
,FrStore
,ToStore
,ItemNum
,Qty
,' ' AS WTINEG
,'00000000' AS WTIDATE
FROM ...
September 13, 2011 at 8:20 am
The problem is that it may be a 2, 4 or 6. I currently have 3 separate SSIS packages to handle each of the different types and I am trying...
September 13, 2011 at 6:46 am
Viewing 5 posts - 1 through 5 (of 5 total)