Forum Replies Created

Viewing 15 posts - 136 through 150 (of 514 total)

  • RE: Give and Take

    Just one side comment Steve. Althought it is nice to put a face to the name, I suggest that you go back to the pictures of Everyday Jones. ...

  • RE: More Releases

    CU6. Apparently whomever got assigned to my case was less than compentant. I re-submitted my request, and got the correct build.

    But I agree that having TESTED service...

  • RE: More Releases

    Has anyone tried to get a copy of it? I am on my third attempt. First response was this is included in SP2. 🙂 Second was...

  • RE: count(*) giving wrong results

    nugroho (2/13/2008)


    If there are nulls, the first query should give result more than the other 2 queries combine because nulls should not be counted in the 2 queries.

    It was part...

  • RE: count(*) giving wrong results

    auaiomrn (2/12/2008)


    I did just finish running dbcc checkdb on a copy of the database from before the "fix", and I got a whole bunch of "Missing or invalid key in...

  • RE: count(*) giving wrong results

    SQLBill (2/11/2008)


    That means if you have one DATETIME that is NULL, it will be counted in both counts.

    -SQLBill

    The OP stated that it was part of the PK (Nulls not allowed).

    Actually...

  • RE: sp_tables causes locking issues?

    Understood 🙂 LOL, best of luck.

  • RE: How to pass multi-row table data into stored proc

    Tom Leykis (2/4/2008)


    This is how I've always done it in the past:

    while @count < 10

    begin

    select @count = @count + 1

    ...

  • RE: Using the result set of a stored procedure...?

    This is the best answer I have found on the subject.

    http://www.sommarskog.se/share_data.html

    Of that the most generic method was the following.

    sp_addlinkedserver @server = 'LOCALSERVER', @srvproduct = '',

    ...

  • RE: Delete statement hangs

    This really sounds like a blocking issue. I read through all the threads, but don't recall you saying if you checked for locks (on the process), not just the...

  • RE: sp_tables causes locking issues?

    Pam,

    That is the question we should be asking! Why is your system doing so much ddl that you are creating contention on the system metadata? Sounds like an...

  • RE: sp_tables causes locking issues?

    In a normal environment where dropping and creating of table (except for temp tables) was a rare occurrence, I would agree. But in this case the OP is stating...

  • RE: sp_tables causes locking issues?

    Kenneth Fisher (2/4/2008)


    I wonder what would happen if you went in and modified it to use "WITH (NOLOCK)" or something similar on all of its queries.

    Kenneth

    You aren't suggesting that it...

  • RE: if exists(...)

    Not that it is significant in this case, but a very minor change will improve the performance.

    IF EXISTS (

    SELECT 1 from syscolumns WHERE ID = object_id('DcReservationContact') and name =...

  • RE: I am so depressed after I work on Question of the Day

    On 3/1/2007 I started the job I am in right now.

    Before I started here the only SQL Server I had used was the express edition and I only knew that...

Viewing 15 posts - 136 through 150 (of 514 total)