Forum Replies Created

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

  • 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,'''')

  • RE: displaying records horizontally

    Oh, I understand what you want to do... but why do you want to do this to perfectly good data? Why do you need all of 1 person's info...

  • RE: Query times inconsistent

    Now I remember... it's called "Parameter Sniffing" and, apparently, it can crush otherwise effecient code. Lots of good info on the Web about it... Google it...

  • RE: Query times inconsistent

    Of course it's going to take some time... your sproc has four relatively large SELECTS and they ALL must be recompiled even if only one is going to be used...

    The...

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