Forum Replies Created

Viewing 15 posts - 21,196 through 21,210 (of 26,484 total)

  • RE: Like operator

    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...

  • RE: SET vs SELECT

    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...

  • RE: SP3 bundled with regular microsoft updates

    Indianrock (5/4/2009)


    If installing a sql service pack has the potential to break things, then it should be installed in Dev and tested first. Perhaps this is no longer a...

  • RE: datetime conversion error

    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.

  • RE: Like operator

    Have you tried this:

    SELECT description

    FROM tab1

    where description = '''%' + @Description + '%'''

    Please note, that is three single quotes at the start and end.

  • RE: SP3 bundled with regular microsoft updates

    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...

  • RE: datetime conversion error

    Did you try this:

    where

    isdate(LTRIM(RIGHT(t1.sent_info, 19)))= 0

  • RE: Are the posted questions getting worse?

    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...

  • RE: Where and Join On Clause the Same?

    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...

  • RE: Problem with sum( ) over (partion by)

    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...

  • RE: Disable windows authentication login

    happycat59 (5/3/2009)


    Before choosing to remove BUILTIN\Administrator, please be aware that this is the default mechanism used by SQL Server to grant the local admin group SysAdmin privilege to SQL Server....

  • RE: Alternatives to temporary table which takes Procedure Return and a primary key from a table

    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...

  • RE: Matrix multiplication without cursors?

    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...

  • RE: The "Numbers" or "Tally" Table: What it is and how it replaces a loop.

    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...

  • RE: cancel the 'triggering' operation

    laailalalaa (5/4/2009)


    hello

    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...

Viewing 15 posts - 21,196 through 21,210 (of 26,484 total)