Viewing 15 posts - 61 through 75 (of 104 total)
I get this error:
Msg 102, Level 15, State 1, Server 06LEVINDW, Line 1
Incorrect syntax near '06'.
Here is my code. . .
declare @body1 varchar(4000)
set @body1 = 'New Website Product for the...
May 11, 2010 at 10:07 am
This is what I have. . .
declare @body1 varchar(4000)
set @body1 = 'New Website Product for the ' + CONVERT( VARCHAR( 20 ), GETDATE(), 113 ) +
'. Please see attachment....
May 11, 2010 at 9:40 am
Strange. . . It doesn't like that either. . . Now I am getting:
Msg 102, Level 15, State 1, Server OURSERVER, Line 1
Incorrect syntax near '.'.
And I actually am in...
May 11, 2010 at 9:38 am
Lowell,
I'm not sure why this is happening, but I am getting an error when executing the email:
Msg 208, Level 16, State 1, Server OURSERVER, Line 1
Invalid object name 'WEB_CATALOG_IMAGES'.
The query...
May 11, 2010 at 9:22 am
Lowell (5/11/2010)
in SSMS,expand the "Management Folder" and find Database Mail. you have to know...
May 11, 2010 at 9:09 am
Lowell (5/11/2010)
I think i have what you want; run this select and confirm whether or not this is finding...
May 11, 2010 at 8:51 am
Wow! That seems to do the trick! I had something similar, however, my join wasn't correct and hence why it wasn't working.
Thank you VERY much, Lowell!
May 11, 2010 at 8:39 am
Very well. . . I want to check aganist the WEB_CATALOG_IMAGES table with the Product table. If somehting is in the WEB_CATALOG_IMAGES table that IS NOT in the Product table,...
May 11, 2010 at 7:31 am
Lowell (5/10/2010)
don't think you wan t not exists...you want to confirm that there is at least one row on...
May 11, 2010 at 6:49 am
Lowell (5/10/2010)
IF NOT EXISTS(SELECT 1 FROM TABLEA WHERE ID=1)
AND NOT EXISTS(SELECT...
May 10, 2010 at 8:16 pm
Lynn Pettis (8/5/2009)
That's the difference between a community (SSC) and a forum (all the others).Thanks for the compliment (from all of us) and the feedback.
That's a very good point. ...
August 5, 2009 at 1:55 pm
GSquared (8/5/2009)
cast(case sum(IsNull(hmss.delivered_to_date, 0))
when 0 then 0
else
...
August 5, 2009 at 1:40 pm
GSquared (8/5/2009)
Use NullIf to turn the denominator into a null if it's zero, then use IsNull to...
August 5, 2009 at 1:01 pm
Lynn Pettis (8/5/2009)
donato1026 (8/5/2009)
else ((ABS(SUM(isnull(hmss.CREDIT_MEMOS, 0)) + SUM(isnull(hmss.EVEN_EXCHANGE,...
August 5, 2009 at 12:49 pm
Viewing 15 posts - 61 through 75 (of 104 total)