The application is a Server with 100 clients on it collecting measurement data. The clients are running a compiled Acess/VB6 app. w/RDO. The Odbc linked tblMaster consists of SampleDateTime, FileName, OperatorCode, Observation,RefNo. When tblMaster is updated-through any of the 100 clients at any time, we would like to resequence all the records in tblMaster with the same filename as the current filename in the client, using the RefNo to reflect its position with respect to the SampleDateTime. We need the server to do the work! This is easily done with a Stored Procedure in SQL 7. Prefer not to write a UDF. A possible-but messy solution--
1. "Execute" create temp table including a RefNo-Autonum.
2. "Execute" an append to the table with desired Filename.
3. "Execute" and update to tblMaster from the temp table.
4. Delete temp table.
Any suggestions?
1. "Execute" create temp table including a RefNo-Autonum.
2. "Execute" an append to the table with desired Filename.
3. "Execute" and update to tblMaster from the temp table.
4. Delete temp table.
Any suggestions?