Viewing 15 posts - 21,196 through 21,210 (of 26,490 total)
There have been several threads regarding MySQL Linked Servers; here, let me google that for you.
May 4, 2009 at 3:38 pm
The problem I had with the install of SP 3 on a test server wasn't related to WSUS loading something, what was missing was the .msp files from the install...
May 4, 2009 at 3:26 pm
Anyone else as confused as me about this one?
May 4, 2009 at 3:06 pm
I'm confused. It looks like you created two indexed views, and are joining those two views together to recreate the original table. Why?
May 4, 2009 at 3:04 pm
Balaji (5/4/2009)
Could you please help me out how to restructure...
May 4, 2009 at 2:37 pm
lmu92 (5/4/2009)
Lynn Pettis (5/4/2009)
Have you tried this:
SELECT description
FROM tab1
where description = '''%' + @Description + '%'''
Please note, that is three single quotes at the start and end.
You probably need to...
May 4, 2009 at 1:25 pm
I have to vote for It Depends. I tend to do it both ways, it all depends what I am doing. For single variable sets, I tend to...
May 4, 2009 at 1:24 pm
Indianrock (5/4/2009)
May 4, 2009 at 1:10 pm
Mh (5/4/2009)
I am getting this error if I do that way:The multi-part identifier "sent_info" could not be bound.
Please post the complete query.
May 4, 2009 at 12:59 pm
Have you tried this:
SELECT description
FROM tab1
where description = '''%' + @Description + '%'''
Please note, that is three single quotes at the start and end.
May 4, 2009 at 12:48 pm
I don't think you'd win such a lawsuit. If auto updates are enabled, you have instructed the OS load patches/updates. If you haven't, and it installed along with...
May 4, 2009 at 12:44 pm
Did you try this:
where
isdate(LTRIM(RIGHT(t1.sent_info, 19)))= 0
May 4, 2009 at 12:30 pm
First, let me clarify that I learned about lmgtfy from another poster on SSC (name unknown); but it looks like I've created a monster by using it myself as it...
May 4, 2009 at 12:07 pm
dunnjoe (5/4/2009)
Good question. I had to debug an issue just like this last week with one of the developers. We decided we liked the old style syntax better!
I prefer the...
May 4, 2009 at 10:50 am
For what you are trying to accomplish the SUM() OVER (PARTITION BY ...) does not work as you have found. These window functions haven't been fully implemented for that...
May 4, 2009 at 10:04 am
Viewing 15 posts - 21,196 through 21,210 (of 26,490 total)