Hi,
as more and more people are using the database, I decided to put all the data into a SQL Server backend and give the users only the frontend(Forms and Reports with linked tables).
From the Design point of view I have created queries that run on the linked tables. Forms and Reports are based on the queries and I try to filter as much as possible to reduce the network traffic. Because some users are supposed to connect via Internet/VPN to the SQL Server.
While I am testing on my local maschine everything seems to be running fast. But my concern is that when the users fills out forms the data will be populated with every update of a control. Do you think that this will generate a lot of traffic or does the linked table management handle form inputs?
Is there any way to suppress the save of data on every change and make the submit only on a click on a button event?
Any Ideas will be appreciated.
as more and more people are using the database, I decided to put all the data into a SQL Server backend and give the users only the frontend(Forms and Reports with linked tables).
From the Design point of view I have created queries that run on the linked tables. Forms and Reports are based on the queries and I try to filter as much as possible to reduce the network traffic. Because some users are supposed to connect via Internet/VPN to the SQL Server.
While I am testing on my local maschine everything seems to be running fast. But my concern is that when the users fills out forms the data will be populated with every update of a control. Do you think that this will generate a lot of traffic or does the linked table management handle form inputs?
Is there any way to suppress the save of data on every change and make the submit only on a click on a button event?
Any Ideas will be appreciated.