Viewing 8 posts - 1 through 8 (of 8 total)
The present mechanism is :
1. Version zero of a document is automatically generated and e-mailed to a user using CDO.
2. The user edits the document and stores in the database...
August 25, 2005 at 8:26 am
"It looks like they never really resolved the xp_Sendmail issue in that thread..." - exactly
I think I'm going to forget it and just...
August 25, 2005 at 7:33 am
(It's not the wording that I disagree with. I think he got the wrong end of the stick, - read the last past of his post i.e. "the query outputs...
August 25, 2005 at 6:39 am
Nope.
The @attach_results = 'true' ensures that the query result is sent as an attachment rather than in the body.
August 25, 2005 at 2:21 am
Just to clarify, you want to retrieve a number and pad it with leading zeros to ensure the value returned is always 9 characters long ?
If so then maybe you...
August 24, 2005 at 8:54 am
Thanks Max, but tried the ANSI output yesterday, it gives me a garbled Hexadecimal mess !
August 24, 2005 at 8:39 am
Oh, I was answering this question:
"How can I get the decimal separtor from SQL Server?"
I should have read on a bit further
I...
August 24, 2005 at 8:00 am
DECLARE @1 float, @2 float, @DecTest float
SET @1 = 1
SET @2 = 2
SET @DecTest = @1/@2
SELECT Substring(CAST(@DecTest AS varchar),2,1) AS Separator
August 24, 2005 at 7:11 am
Viewing 8 posts - 1 through 8 (of 8 total)