Viewing 15 posts - 181 through 195 (of 206 total)
2000 would use Torn_page_detection to check IO level corruption. Better change it to Checksum.
August 1, 2012 at 9:32 pm
Yes, But i tested it in Express edition. Any limitation?
August 1, 2012 at 6:37 am
sorry for spamming... I misread he created stats.... need to check.
August 1, 2012 at 6:25 am
Sure,
USE [STATS_DB]
GO
Select DATABASEPROPERTY('stats_db', 'IsAutoCreateStatistics')
GO
Create Table Stats_Table ( a Int)
GO
select OBJECT_NAME (OBJECT_ID) ObjectName, * from sys.stats where [OBJECT_ID] = OBJECT_ID('Stats_Table')
If @@ROWCOUNT = 0
Print 'No Stats Available'
Else
Print 'Stats...
August 1, 2012 at 6:21 am
Can you run the below query and post the output.
select scheduler_id, runnable_tasks_count,status from sys.dm_os_schedulers where scheduler_id < 255
Sometimes, a busy CPU may give this wait type.
August 1, 2012 at 6:12 am
"Automatically created statistics was not updated regularly. Although the table is update everyday, last statistics date is last month. Is there a reson for this message?"
1. Have you enabled 'auto...
August 1, 2012 at 6:01 am
Even though 'Auto Create Statistics' is ON, You need to run a query to 'acutally' enabled.Optimizer will not create a statistics until any query fire against the table.
August 1, 2012 at 5:57 am
Apart from 5000 locks threshold, in 32Bit, Lock escalation will happen if 24%of memory is used up by database engine,excluding AWE. In 64, its the over all memory by database...
July 25, 2012 at 10:42 pm
Post here wait types of your backup session. Also, I hope there will be an option (BufferCount, MaxTransferSize) in third party tool. Try to reduce it to some extent which...
July 25, 2012 at 10:09 pm
Log shipping will not work from 2008 to 2005 as backup files are not backward compatible.
July 24, 2012 at 7:11 am
Is your disk in mirrored database fast enough to catch up with principal database? What does the Avg. Disk Write Queue Length counter show?
July 24, 2012 at 7:04 am
Hi Gila,
Correct me if i am wrong, SQL Server Configuration Manager would be checkpointed by CheckPoint Manager in Failover clustering. so will it be a point to consider in...
July 23, 2012 at 6:45 am
http://www.sqlservercentral.com/Forums/Topic1049838-1549-1.aspx
http://www.sqlservercentral.com/articles/Database+Mirroring/72294/
These may help you out.
July 20, 2012 at 7:47 am
Viewing 15 posts - 181 through 195 (of 206 total)