Perhaps I'm misunderstanding.
If the back-end is robust (e.g., SQL-Server), how does that affect the
quality of the network connecting the front-ends to the back-ends?
Regards
Jeff Boyce
Microsoft Office/Access MVP
> Perhaps I'm misunderstanding.
>
> If the back-end is robust (e.g., SQL-Server), how does that affect the
> quality of the network connecting the front-ends to the back-ends?
It doesn't.
But, when you are working with a file-server... that is, all the word done
on the user machine, with the data residing on a server, any interruption in
connection can leave you with pointers and values set in the back-end (more
to the point, after the interruption, when you start over, they will be
_wrongly_ set, as though an operation were still in progress). That is, your
database will be corrupted (usually, but not always, fixable with Compact
and Repair).
With a server, you are essentially sending a request, which will be
processed on the server, and then the result will be sent back... if the
user's machine is not connected, no damage is done on the server because the
database transaction was complete server-side, it's just that the user's
software was not available or able to receive and acknowledge and do
something with it.
Larry Linson
Larry
Jeff Boyce - 21 Aug 2007 18:32 GMT
Thanks, Larry. That scenario makes sense...
Jeff
>> Perhaps I'm misunderstanding.
>>
[quoted text clipped - 21 lines]
>
> Larry