Viewing 15 posts - 35,041 through 35,055 (of 49,552 total)
I so wish I knew why this happened....
Solution's simple, though far from obvious.
Run DBCC OpenTran. There'll likely be a reference to replicated and unreplicated LSNs. The replicated will probably be...
December 31, 2009 at 7:55 am
I wrote up my goals and intentions on my blog. Post scheduled for midnight (my time). What I'm focusing on next year is not SQL Server though.
December 31, 2009 at 3:21 am
This is insane. There's a nested loop join between thousands of rows. I cannot see why that loop join is there, it's the worst kind of join for those row...
December 31, 2009 at 2:02 am
You should not even be considering updating the system tables unless you are willing to deal with a corrupt and unusable database afterwards. Say you did update the xtype, now...
December 31, 2009 at 12:57 am
digitalox (12/30/2009)
December 31, 2009 at 12:47 am
Interesting. Same backup? Same time of day?
Are you sure the state is 'recovering' not 'restoring'?
December 31, 2009 at 12:46 am
Lil SQL (12/30/2009)
Gail - Part of the filter is absolutely looking at the two date columns to grab the latest records.Amazing insight! What does this mean to you?
Not really...
December 31, 2009 at 12:45 am
digitalox (12/30/2009)
snippet from script:CASE WHEN user_lookups > user_seeks AND type_desc IN ('CLUSTERED', 'HEAP', 'UNIQUE CLUSTERED') THEN 'REALIGN'
I would really question the accuracy of that script. The only valid values for...
December 30, 2009 at 2:09 pm
digitalox (12/30/2009)
December 30, 2009 at 1:57 pm
SQL_Quest-825434 (12/30/2009)
What does Mark as Active partition do ? (disk management -> point to the drive and rt click --> mark partition as active)
Makes that the boot partition, ie the...
December 30, 2009 at 12:45 pm
Recovery (restart-recovery) goes through the logs, rolls back transactions that started but never committed and rolls forward transactions that did commit. The latter may not be so relevant for a...
December 30, 2009 at 12:37 pm
I'm going to guess...
Ascending date column and the query's filtering for the latest records. Right?
December 30, 2009 at 12:35 pm
Please post table definitions, index definitions and execution plan, as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
December 30, 2009 at 12:32 pm
Rather than using the table viewer (which can be a little glitchy), use the T-SQL commands.
UPDATE <TableName>
SET <Column name> = 'facebook'
WHERE <Column Name> = 'acebook'
This will update all...
December 30, 2009 at 2:10 am
That shows the lookup done to the clustered index. So whenever a NC index is not covering and there's a key lookup, that's a lookup to the clustered index.
As far...
December 30, 2009 at 1:40 am
Viewing 15 posts - 35,041 through 35,055 (of 49,552 total)