Viewing 15 posts - 301 through 315 (of 758 total)
WolfgangE (12/19/2012)
with the appropriate version of SQLServer you can do the rebuild with the ONLINE-option so there would not be any downtime. Otherwise use the REORGANIZE-command instead of the...
December 19, 2012 at 2:16 am
GilaMonster (12/11/2012)
SQLSACT (12/11/2012)
December 11, 2012 at 5:44 am
Any chance of referential integrity between these 2 tables?
December 11, 2012 at 4:52 am
nidhis (12/11/2012)
I see there are no Key Lookups when I run the same query using sp_executesql...
December 11, 2012 at 4:34 am
GilaMonster (12/10/2012)
If the select's session was holding an IS (from an open transaction and previous statements), that's enough to block the index rebuild....
December 10, 2012 at 2:36 am
GilaMonster (12/10/2012)
What locks was it holding?
I check sp_lock 88 when it was happening and it was holding a mixture of IX, IS key and page locks. If memory serves, sp_lock...
December 10, 2012 at 2:21 am
GilaMonster (12/10/2012)
What was session 88 doing?
According to sp_who2, a select statement from the same table I was rebuilding on. It wasn't active though, it was in a sleeping state
I checked...
December 10, 2012 at 2:06 am
GilaMonster (11/29/2012)
November 29, 2012 at 12:38 am
One is a replacement of the entire page and one is the replacement of the contents of the page. To me, this seems like 2 different things, clearly in this...
November 29, 2012 at 12:10 am
GilaMonster (11/28/2012)
SQLSACT (11/28/2012)
This seems like the page is not written back to disk, but rather the page contents that have changed are written to the corresponding pages on disk.
And...
November 28, 2012 at 11:55 pm
Brandie Tarvin (11/28/2012)
SQLSACT (11/28/2012)
Now, when that change gets reflected on disk, does the changed page in Memory replace the corresponding page on disk?
"replace" is a poor choice of words...
November 28, 2012 at 11:28 pm
Thanks Gail
Please don't get me wrong, I'm not saying that you're are being contradictory. There's obviously a huge difference between what you're implying and what I'm inferring.
The 8kb page in...
November 28, 2012 at 11:26 pm
Grant Fritchey (11/28/2012)
November 28, 2012 at 10:01 am
Thank You Gail
Please bear with me
The 8kb page in memory is written to disk, to the appropriate 8kb chunk of the data file.
On one of my posts regarding this, this...
November 28, 2012 at 10:00 am
Perry Whittle (11/28/2012)
SQLSACT (11/28/2012)
GilaMonster (11/28/2012)
Yes, it is necessary. Rebuild the system databases, start SQL, restore the backups of the system DBs.
Could this possibly work:
>> Restore the Master database to another...
November 28, 2012 at 2:41 am
Viewing 15 posts - 301 through 315 (of 758 total)