SQL Server 2008 Optimization
Posted
by hgulyan
on Server Fault
See other posts from Server Fault
or by hgulyan
Published on 2010-06-11T09:30:42Z
Indexed on
2010/06/12
7:53 UTC
Read the original article
Hit count: 364
I've learned today, if you append to your query
OPTION (MAXDOP 0)
your query will run on multiple processors and if it's huge query, query will perform faster.
I know general guidelines on query optimizations (using indexes, selecting only needed fields etc.), my question is about SQL Server optimization. Maybe changing some options in configurations or anything else.
What guidelines are there for SQL Server Optimization?
Thank you.
P.S. I suppose, this is not the right place to ask server related questions. Should I delete it or maybe it can be migrated to serverfault?
© Server Fault or respective owner