Viewing 15 posts - 16 through 30 (of 34 total)
Craig,
You should have no worries with a polling interval of 30 seconds, commercial products dwarf that load.
The next step is determining which counters fluctuate enough to be relevant (for constant...
December 8, 2010 at 12:17 pm
Bsql_Dev,
The needs described are what we call Disaster Recovery or DR. The first task in architecting DR is establishing Recovery Point Objectives RPO and Recovery Time Objectives RTO. RPO is...
November 30, 2010 at 2:49 pm
The benefits of configuring tempdb to use multiple files are both io throughput and parellelism. Cores can "attach" to their own file, enhancing parallel execution. Adding disks always helps, that's...
November 4, 2010 at 1:11 pm
Verify tempdb is on 4 - 8 equally sized files.
Experiment with maxdop initially at 4. Parallelism is typically your friend, not always.
The goal should be designing queries to have...
October 26, 2010 at 6:23 pm
SQLIO is great tool for testing server perfomance prior to installing SQL, it produces latency and throughput numbers that can be compared before and after your server level tweaks. You...
September 28, 2010 at 6:07 pm
The options are database mirroring or SAN mirroring.
Ability to be synchronous is dictated by latency. The primary factor is typically distance between facilities.
Dan
September 27, 2010 at 2:28 pm
I would consider grouping content databases on seperate mount points instead of splitting databases on secondary files. This will spread out your IO and provide flexibility in addressing IO concerns...
August 9, 2010 at 3:14 pm
From a standardizaton standpoint yes the Primary / Composite Key columns should be the first column(s). Don't underestimate the benefits of designing legibility into your solutions.
From a performance angle yes...
August 4, 2010 at 3:54 pm
Capacity Planning - Measure and compare peak and business hours requirements for Memory, CPU, Disk IO and Network Bandwidth. Peak for some systems may be during off hours while backups...
August 4, 2010 at 12:07 pm
I wouldn't consider local maintenance plans to be a scalable solution.
As your environment grows you may see a need for a centralized management solution.
Dan
July 28, 2010 at 12:47 pm
How is the user experience now? You might want to run a trace just to verify that what SpotLight reports is really a valid concern.
Reads, Duration and CPU for the...
July 15, 2010 at 6:13 pm
I would recommend concentrating on the first eight tables listed in the stored procedure proc_UpdateStatistics.
The proper maxdop setting depends on a number of variables. Experiment!
Dan
July 15, 2010 at 12:07 pm
SharePoint suffers from known database design issues that can impact performance over time. The use of composite keys and GUID's for clustered indexes requires diligent maintanance. Specific tables will degrade...
July 15, 2010 at 11:00 am
Run ALTER DATABASE <dbname> SET PARTNER SAFETY FULL to synchronize the databases before failing over.
Verify synchronization with:
SELECT
sd.Name,
dm.*
FROM...
June 14, 2010 at 5:21 pm
Run SQLIO to benchmark disk performance.
Adjust Queue Depth setting on HBA to at least 64.
Stripe disks on SAN frame, do not use host based striping. Do not concatenate large quantities...
April 12, 2010 at 4:32 pm
Viewing 15 posts - 16 through 30 (of 34 total)