Forum Replies Created

Viewing 15 posts - 54,136 through 54,150 (of 59,068 total)

  • RE: is there any difference between != and <>

    Sting manipulation? Complex mathematical calcs? Heh... Let's have a race... let's start with string manipulation... How about splitting a comma seperated column and returning a table with the...

  • RE: Pass Table type Output parameter in SQL2000

    Then I'd use a function with a table variable... not gonna hurt performance any more than a stored proc.

  • RE: Pass Table type Output parameter in SQL2000

    How many rows do you intend to return with 250 columns?

  • RE: Trigger Trivia

    Good synopsis of uses, Andy!

  • RE: Issue in Query

    Sounds to me like Tab1 is nothing more than a subset of Tab2... that would cause such a return even though only an inner join were present.

  • RE: Debugging an SP

    vaidyanathan_kalyanasundaram (10/30/2007)


    On a remote server...but my log in id has accees to SP_Sdidebug

    I can't find any documention to support my thought on this, but don't you need to have "SA"...

  • RE: Pass Table type Output parameter in SQL2000

    1. Pretty sure the answer is "No".

    2. I guess I'm not sure what you mean anymore... you can get a result set from a sproc and use it...

  • RE: INSERT A Record Based on Count

    Well Jeff, it looks like you've got another comparison between the new 2005 T-SQL options and good 'ol fashioned set based operations. Here's another great reason not to jump right...

  • RE: Script

    You bet... thank all of you folks for the feedback.

  • RE: Pass Table type Output parameter in SQL2000

    1. Yes... you would need to use it in dynamic SQL within the sproc, though.

    2. No, but you can from a User Defined Function... (table variable, that is).

  • RE: Select case Problem

    I can tell you you'll never get "8" because it has the exact same criteria as "7" which will always qualify first in your case statement. They ARE order...

  • RE: Using join in delete operation

    I'd only be regurgitating what's in Books Online... recommend you lookup "DELETE" in Books Online for a full explanation of SQL Server's proprietary and nasty fast DELETE. You might...

  • RE: UPDATELINEAGE Function

    Things like this are normally simple syntax errors... of course, no one can troubleshoot that for you because you didn't post any code 😉

  • RE: single cots

    p.s. In English, they are "single quotes"...

  • RE: single cots

    SELECT QUOTENAME(3,'''')

Viewing 15 posts - 54,136 through 54,150 (of 59,068 total)