Viewing 15 posts - 46 through 60 (of 112 total)
28GB sounds ok for max server memory if this is a DB server.if you have allocation contention on your tempdb data file try with increasing tempdb data files to 1/4...
August 23, 2012 at 11:48 pm
Raid 10 is a better option if you have enough disk space.The write are done faster on raid 10 beacause unlike raid 5 there's no need to calculate the parity.So...
August 22, 2012 at 3:20 pm
First you have to take a Full backup and then You can take Log backups
August 18, 2012 at 1:26 am
So there's no difference between using DROP_EXISTING=ON,ONLINE=OFF and dropping and recreating a non-Clustered index .Is there?
August 17, 2012 at 11:38 am
Of the top of my head you can check the data types of columns.I have seen so many times that column's data type is set to INT for storing very...
August 13, 2012 at 6:47 pm
As a general guideline if the sum(signal_wait_time_ms)/sum(wait_time_ms) is more than 20% it could be a good indication of CPU bottleneck if that's what your looking for.The signal_wait_time_ms shows how...
August 10, 2012 at 5:13 pm
GilaMonster (8/10/2012)
pooyan_pdm (8/8/2012)
August 10, 2012 at 2:22 pm
No I don't think so
from MSDN:
This SQL Server 2000 system table is included as a view for backward compatibility. We recommend that you use the current SQL Server system...
August 9, 2012 at 2:02 pm
Lynn Pettis (8/9/2012)
pooyan_pdm (8/9/2012)
August 9, 2012 at 1:35 pm
I know it does not make that much scence but try backing up the log two times in a row it might help
August 9, 2012 at 12:35 pm
you van use rowmodctr column in sys.sysindexes to check the number of rows inserted,updated or deleted in the index since the last time stats were updated on that index.from SQL...
August 9, 2012 at 12:23 pm
run select * from sys.databases and check log_reuse_wait_desc
you might have an active transaction to check that you can use dbcc opentran('DBName')
August 9, 2012 at 12:06 pm
What I said is a general guidline and is true, yes with a ever increasing key the inserts does not cause the fragmentation but generally speaking beacuse most of the...
August 8, 2012 at 10:20 pm
Viewing 15 posts - 46 through 60 (of 112 total)