Viewing 15 posts - 21,196 through 21,210 (of 26,484 total)
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
happycat59 (5/3/2009)
May 4, 2009 at 9:54 am
I'm slightly confused as to what is being asked. In addition to data and expected results, the DDL for the tables involved and your current code would also be...
May 4, 2009 at 9:50 am
RBarryYoung (5/4/2009)
PhilM99 (5/4/2009)
It's hard to remember you started out to drain the swamp when you're up to your *** in alligators. --old IT saying
Sorry if I have offended the...
May 4, 2009 at 8:59 am
Hearing the differences between Oracle and SQL Server, although interesting, is getting a bit old.
Let's remember one crucial thing SQL Server Oracle.
Let's stop complaining about the differences and just...
May 4, 2009 at 8:22 am
laailalalaa (5/4/2009)
how can i cancel the operation that triggered.. a trigger in some cases?
say i have an after insert trigger for a Students(id int, name varchar(15)) table and if i...
May 4, 2009 at 8:02 am
Viewing 15 posts - 21,196 through 21,210 (of 26,484 total)