We had (gone now) a developer who wanted to have access to our VFP tables
(several hundred mb worth) for "live" queries on a low-traffic web site.
His solution, doing all his development in ASP.net, was to create duplicate
tables on an SQL server and import the VFP data on a schedule which allowed
as up-to-date data for the queries as was possible (perhaps every 15
minutes, but no less than once an hour).
I objected to this scheme as being inefficient in that it moved many
thousands of times the amount of needed data across our various links (a
shared 10 mb pipe to the web server was the bottleneck), when he could have
accessed the data directly from ASP.net using OLEDB.
His only point was that this allowed him to use SQL stored procedures.
Can anyone give opinions on the pros and cons of these 2 approaches?
Thanks.