Viewing 15 posts - 421 through 435 (of 717 total)
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.)
October 22, 2010 at 12:23 pm
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...
October 22, 2010 at 12:19 pm
Thanks for the question, I think it is good to help people understand the limitations of TRUNCATE TABLE.
October 21, 2010 at 3:08 pm
Oleg Netchaev (10/19/2010)
October 19, 2010 at 6:08 pm
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...
October 19, 2010 at 6:01 pm
Interesting question, but even better discussion. Thanks all!
October 15, 2010 at 10:45 pm
Thanks for the question.
As a note I have always hated the round "to even" method that Microsoft sometimes uses.
October 13, 2010 at 6:16 pm
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...
October 13, 2010 at 6:08 pm
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......
October 8, 2010 at 9:42 am
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...
October 7, 2010 at 11:17 am
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...
October 7, 2010 at 10:07 am
Viewing 15 posts - 421 through 435 (of 717 total)