Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
We have a prescription medication database that contains several million records for testing drug/drug interations when prescribing medications for patients. Several of the 75 or so tables have 1M+ records in them. We haven't noticed a slowdown on selecting records from the table, however, we have used a few local views in VFP, and it runs much faster when accessing the view through OLE DB when we use the Enterprise Server and the IIS for the ES is on the same machine as the .dbc containing the views and .dbfs for the files (cuts down on the network traffic between the view and the tables). The only slowdown you're going to notice is probably inserting records. SELECTs are fast, but when you do an INSERT through OLE DB, it's not quite as fast as the talking directly to the data through a VFP app. Nothing to complain about, but if you're inserting 100+ records in a loop, you'll notice it.
|