Viewing 15 posts - 46 through 60 (of 123 total)
They are probably carriage return/line feed characters. Have you got the header row delimiter set to {CR}{LF} in the connection manager?
--
Scott
July 24, 2009 at 5:02 am
I'd be tempted just to copy the data from server B to server A, run my query with an inner join and then delete the newly copied data from server...
--
Scott
July 24, 2009 at 4:51 am
That's more like the answer I'd expected than the answer I'd hoped for, but thanks.
--
Scott
April 29, 2009 at 9:25 am
I know this is less of an issue with Database Mail than SQL Mail, but if your mail service fails then your trigger will fail too. I've got into the...
--
Scott
April 29, 2009 at 7:01 am
Same issue here. I did notice that my insert query wasn't actually returning any rows, so changed the job from
INSERT INTO Table (Field1, Field2, Field3)
SELECT a.F1, a.F2, a.F3 FROM Table2
to
IF...
--
Scott
April 17, 2009 at 6:02 am
Ooh - that's much better. I knew I was looking at this the wrong way. Thank you.
--
Scott
April 9, 2009 at 7:55 am
That's correct. TRXID is a unique value in my source data, but not in my desired output. I should also add that in the source I can't guarantee that the...
--
Scott
April 9, 2009 at 7:43 am
RTRIM has no effect. I suppose fewer spaces is an improvement, but the client won't be happy until there are none. It's good, but it's not right.
--
Scott
February 26, 2009 at 9:49 am
Hi Jack
Setting @width=25 just pads each line out to 25 characters, which isn't the desired effect.
--
Scott
February 26, 2009 at 9:01 am
Instead of using xp_sendmail like this, I create a table with fields for recipient, subject, message body and a nullable date field message_sent. I then have a job running every...
--
Scott
February 26, 2009 at 7:28 am
Looks like I'll carry on kludging then. Thanks for the help.
Scott
--
Scott
August 1, 2008 at 2:23 am
The metadata says DT_NUMERIC (38,0) for the column, even when I do an explicit cast to decimal(10,2) in the source query. I can't see a way to edit the metadata.
Scott
--
Scott
July 31, 2008 at 9:54 am
Can you do this on a remote server? We have a mirrored database and I want to write a script to enable and disable jobs on both servers in the...
--
Scott
May 14, 2008 at 3:17 am
Viewing 15 posts - 46 through 60 (of 123 total)