A quick question for the performance gurus out there.
We have an application that we have ported over to SQLServer 2K, and the reads seem to be happening pretty quickly now. For the most part, we are about 98% reads and 2% deletes and updates, so getting the reads optimized was pretty high up on the list of priorities.
Now I need to focus on the Updates and Deletes. When we do updates and deletes, they are usually in groups of 2-4 objects that are linked and get acted upon at the same time.
Whenever we do these updates, it seems that the first one is taking 2 seconds, the second object is taking 2 seconds, and then it tails off to a more respectable 50-150ms per object. The tables in question have 16,000 entries each, and the column I am deleting on (ObjectId) is the primary key for each table.
Is there any way I can get this to perform better?
thanks,
Jack
Jack De Winter
Software Developer
MedTel Software
We have an application that we have ported over to SQLServer 2K, and the reads seem to be happening pretty quickly now. For the most part, we are about 98% reads and 2% deletes and updates, so getting the reads optimized was pretty high up on the list of priorities.
Now I need to focus on the Updates and Deletes. When we do updates and deletes, they are usually in groups of 2-4 objects that are linked and get acted upon at the same time.
Whenever we do these updates, it seems that the first one is taking 2 seconds, the second object is taking 2 seconds, and then it tails off to a more respectable 50-150ms per object. The tables in question have 16,000 entries each, and the column I am deleting on (ObjectId) is the primary key for each table.
Is there any way I can get this to perform better?
thanks,
Jack
Jack De Winter
Software Developer
MedTel Software