Viewing 15 posts - 31 through 45 (of 122 total)
Same sort of workround as me then, but thanks for the response. I think my colleagues would find bcp more intimidating than SSIS - I have shown everyone how a...
March 31, 2010 at 10:46 am
I suppose I'm going to have to overcome my distaste for HTML email then 😉
March 18, 2010 at 9:28 am
Mark-101232 (1/8/2010)
SELECT Customer, MAX(Trx) AS Trx
FROM MyTable
WHERE Trx IS NOT NULL
GROUP BY Customer
HAVING COUNT(DISTINCT Trx)=1)
UPDATE m
SET Trx=c.Trx
FROM MyTable m
INNER JOIN CTE c ON c.Customer=m.Customer
WHERE...
January 8, 2010 at 7:40 am
Lynn Pettis (1/8/2010)
Scott-144766 (1/8/2010)
Customer Trx
A2 124
A2 ...
January 8, 2010 at 7:23 am
JStiney (11/20/2009)
/* Author: Richard...
November 23, 2009 at 4:34 am
Have you everted time too? This was posted a week in the future...
November 18, 2009 at 6:36 am
Have you tried using the GZIP component native to .NET libraries? You can get to it via the script component, which I use often and without issue. I...
September 4, 2009 at 8:21 am
I've gone down the xp_cmdshell route and it's working. It's a shame as it feels like a much less elegant solution but it's doing the job so I won't complain....
September 3, 2009 at 3:58 am
No, there's no logging option. I'm open to using other zipping tools, especially if they're free!
September 2, 2009 at 9:43 am
I'll try that, but I'm sure it's the zip that's failing. The text files are written to disk but the zip file isn't.
September 2, 2009 at 9:25 am
The job step never completes so there's nothing in the history (apart from the stop job request I have to issue). The package runs in a couple of minutes but...
September 2, 2009 at 9:11 am
And just to clarify, when people refer to braces, they are really talking about orthodontia.
I'm usually discussing ways of keeping my trousers from falling down. My father-in-law is a carpenter...
August 12, 2009 at 10:06 am
Looks great, but I must admit I find it hard to take the name seriously. What next - Ultimate Fighter tote bag?
July 24, 2009 at 7:52 am
Viewing 15 posts - 31 through 45 (of 122 total)