Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL 7 & Multi Processor

Status
Not open for further replies.

GenTrac

Technical User
May 14, 2004
98
We have SQL 7 installed on a multi processor NT4 ML370 Compaq server, 2,5Gb of RAM and SQL patched with SP4. The problem that I have is that when SQL is configured to use both processors it slows do all queries. Once 1 processor is selected it executes a lot faster. Anyone knows of dual processor issues? Do I need to install NT4 SP6a again after I installed SP4 for SQL?
 
Some queries can run faster without the parralism. Try leaving the SQL Server configured to use both processors, but have one of the offending queries restricted to a single processor. You do this by adding OPTION (MAXDOP 1) to the end of the select.
Code:
select Col1, Col4
from Table
where something = 'somethingelse'
OPTION (MAXDOP 1)
SP6a might help on this. But I don't really think so.

Denny

--Anything is possible. All it takes is a little research. (Me)

[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top