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?
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...
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.
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...
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...
April 17, 2009 at 6:02 am
Ooh - that's much better. I knew I was looking at this the wrong way. Thank you.
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...
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.
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.
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...
February 26, 2009 at 7:28 am
Looks like I'll carry on kludging then. Thanks for the help.
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
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...
May 14, 2008 at 3:17 am
Viewing 15 posts - 46 through 60 (of 123 total)