HoustonGuy
Programmer
I have quite a few heavy queries I'm running against a production server.
A few points:
I'm not a fan of NOLOCK in this instance, since I can get dirty reads.
I don't have Group by, or Order by clauses that might benefit from referencing an indexed field.
I do have Where clauses, but most of them aren't referencing Indexed fields.
I'm performing basic Selects, Inserts and Updates.
Is there a way in my queries that I can optimize performance?
I can't find a Hint that would seem to help my optimization efforts.
I know optimization is a big area of discussion, and my question seems vague, but I haven't found anything else to try in my code to help.
Many thanks in advance!
A few points:
I'm not a fan of NOLOCK in this instance, since I can get dirty reads.
I don't have Group by, or Order by clauses that might benefit from referencing an indexed field.
I do have Where clauses, but most of them aren't referencing Indexed fields.
I'm performing basic Selects, Inserts and Updates.
Is there a way in my queries that I can optimize performance?
I can't find a Hint that would seem to help my optimization efforts.
I know optimization is a big area of discussion, and my question seems vague, but I haven't found anything else to try in my code to help.
Many thanks in advance!