Looking through the query plan for a problem-child procedure that Im trying to fix, I see one area that has the largest cost associated with it and its doing a index scan. Sure enough, there is no index on the column that's being used.
So my question is are index scans about as bad as a full table scan?
I suspect I need to add an index for the column in question...