Forum Replies Created

Viewing 15 posts - 10,921 through 10,935 (of 14,953 total)

  • RE: String Comparison Explanation

    More likely, there was actually some difference in the text when it was imported. Possibly in copy-and-pasting it into the SQL query, it got reformatted to have a space...

  • RE: String Comparison Explanation

    ASCII 10 is a line-feed, ASCII 32 is a space. That's why they are different. They'll look the same when you just select them, but to the computer,...

  • RE: String Comparison Explanation

    I'm not sure why you would want the checksum of the characters. Why not something more generally useful, like the ASCII value? With the ASCII value, you could...

  • RE: Guest editorial: SQL Code Metrics

    I think one of the reasons that databases and their tools have lagged behind other software development is that it still requires human expertise to make a database perform very...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (2/18/2009)


    I have to agree on reading books. I have a bunch of books I keep in my car (my portable library) so I can have them at...

  • RE: String Comparison Explanation

    The method of import won't make a difference.

    What you might try is breaking it down, character by character, and comparing that.

    If you have a numbers table, you can do something...

  • RE: The Value of Your Time

    On the original point of the editorial, yeah, there's a definite line between doing something off-job-description for the team, or doing something that should be at a lower level but...

  • RE: The Value of Your Time

    On Darren's point, I can certainly see the CEO wanting to be appraised of such situations. Were I in charge, I'd want to know about emergency travel needs, or...

  • RE: The Value of Your Time

    Jason Miller (2/18/2009)


    nicholas.catley (2/18/2009)


    ...taling of getting the person with the right skills doing appropriate tasks, I really thing that someone with a better grasp of the grammar of the English...

  • RE: SQL Newb and "'CREATE/ALTER PROCEDURE' must be the first statement in a query batch."

    You need to have a batch separator in there. In default installations of Management Studio, it's "go".

    Add "go" to the line above "CREATE PROCEDURE", on a line all by...

  • RE: Using Variables in SELECT statements

    If your proc actually gets a list that looks like "ID1,ID2,ID3" as opposed to "1,2,3", then you'll need to change the "replace" part of the XML string to:

    replace(@IDs, ',ID', '"...

  • RE: Using Variables in SELECT statements

    Here's a high-performance way to accomplish what I'm talking about. Doesn't use a Numbers table, instead uses XML, which gets the same performance. Either one will work, but...

  • RE: Are the posted questions getting worse?

    As a follow-up to the whole thing about BOL, I did end up finding a book, The SQL 2000 Bible, that was adequate to get a total newbie (me) up...

  • RE: Guest editorial: SQL Code Metrics

    If you had something that would pop up and tell you, "this query involves a cross-join", or "this query will involve multiple table scans of large tables", or something like...

  • RE: SQL or Oracle

    Lynn Pettis (2/17/2009)


    Back to the topic at hand (at least for the moment). Both products have their place or else they both would not exist. Where I may...

Viewing 15 posts - 10,921 through 10,935 (of 14,953 total)