I am beginning to think about migrating my free tables to SQL Server. My
idea is to use as many remote views as tables there are in the database.
This means, that if in a program I have "USE table1" I will change it now to
"USE view_table1 NODATA", and then use a REQUERY() to fetch the data of the
parametrized view. The rewrite of code I think is minimal with this
approach, and I have all the advantages of a client/server.
Or mabye it would be better not to use remote views at all and use instead
of them SQL pass-through sentences? Then at the beginning of the programm I
would make a SQLEXEC(Select....) into a local cursor. And when transaction
finishes, I would UPDATE the database from that local cursor (because there
are 1 to many relationships).
I would like to hear your comments on both approaches, since many of you
have already done this migrating process.
TiA
Walter