I’m writing a com object that will be a web service and a standard DCOM used by desktop applications. I been trying to improve its performance.
Specs:
Database: SQL Server
All Data checking is done by COM
Can not use FoxPro Database objects or Remote Views
So I have been using Sql Pass Through to get blank cursors and then turn them into Updateable cursors.
To add 5 master records in Return Merchandise Authorization and 100 detail records along with a log table describes what user do what and when that’s 1000 records in 10.898 seconds. Which is 0.010898 seconds per record.
Since I started I was able to increase performance by half, should i be looking for more ways to squeeze more speed out of this?
Specs:
Database: SQL Server
All Data checking is done by COM
Can not use FoxPro Database objects or Remote Views
So I have been using Sql Pass Through to get blank cursors and then turn them into Updateable cursors.
To add 5 master records in Return Merchandise Authorization and 100 detail records along with a log table describes what user do what and when that’s 1000 records in 10.898 seconds. Which is 0.010898 seconds per record.
Since I started I was able to increase performance by half, should i be looking for more ways to squeeze more speed out of this?