09-05-2006 06:11 PM
09-06-2006 09:41 AM
John -
Each batch test socket is a separate execution. What database management system are you using? If you are using Access, which is file based, it is recommended that you enable the Share Data Link Between Executions option on the Data Link tab of the Database Options dialog box. If you do not do this, you basically have a separate connection to the file for each socket and these connections are using a file based locking mechanism to arbitrate which connection can write to the file. If you share the connection, the Access provider handles the arbitration in memory and the speed will be much faster. In general you should probably enable this option. Note that if you enable Use Transaction Processing with a shared connection, the logging feature can only log one socket at a time because it needs to be able to roll back on a logging error.
09-06-2006 10:14 AM
09-08-2006 09:27 AM