Forum Replies Created

Viewing 15 posts - 421 through 435 (of 717 total)

  • RE: SQL Server 2008 R2

    Thanks for the question.

    Though I think it would have been better as a multi-select question. (Of course that would have caused more problems with the multi-server administration option.)

  • RE: What's the best way to count?

    You didn't include the restriction on the index_id in your query on the DMV, so that might be the issue.

    Try this and see what you get:

    select

    sum(row_count)

    from

    sys.dm_db_partition_stats

    where

    object_id = object_id('dibs_tmb_saalist')

    and index_id in...

  • RE: How Truncate statement ?

    Thanks for the question, I think it is good to help people understand the limitations of TRUNCATE TABLE.

  • RE: Activity Monitor Permission

    Thanks for the question.

  • RE: What's the best way to count?

    Oleg Netchaev (10/19/2010)


    Very true indeed. I did have quite few unfortunate years in my career when I had to work with Oracle databases. I remember it used to really frustrate...

  • RE: What's the best way to count?

    I answered it correctly because I knew what the author was talking about, but for myself I will stick with COUNT(*). (It runs in under 2 seconds on our 70...

  • RE: Color coding

    Interesting question, but even better discussion. Thanks all!

  • RE: Computed Column Divide by Zero?

    Thanks for the question!

  • RE: Are all rounds created equal

    Thanks for the question.

    As a note I have always hated the round "to even" method that Microsoft sometimes uses.

  • RE: Restore from LiteSpeed

    Is the extractor utility available to people that don't have a LiteSpeed license? (For example if someone is sending me a backup they created using LiteSpeed and I need to...

  • RE: ANSI NULLS

    Thanks for the question.

  • RE: Fun with IDENTITY - Part II

    Kevin Gill (10/8/2010)


    Didn't notice it was a table variable! Gah! 🙂

    I almost didn't notice, and was think this is exactly the same as the question from a few days ago......

  • RE: Backup Types

    Nice question, thanks!

  • RE: Potential Issue with Re-Naming Stored Procedures

    Mohammad Meimandi (10/7/2010)[hrWell as far as the application is concerned no error has occured here. The SQLDMO pulled all objects and scripted them successfully. Only when running the generated script...

  • RE: Potential Issue with Re-Naming Stored Procedures

    Nice article, I think it is good to bring light to this situation.

    However, I think it is interesting that you only found the problem because of bad data on a...

Viewing 15 posts - 421 through 435 (of 717 total)