Click here to Skip to main content
15,901,035 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My company has a program that stores data on the server and also maintains a copy on the end-users computer. The local copy is used to speed up reads (primarily for reporting). Every time an insert, update, or delete happens it first happens on the server, then the modified data is copied to the client.

We are currently using SQL Express 2005 as the local DB. The #1 source of problems we have (~35,000 computers run the software daily) is SQL. It could be some other program modifies our instance, some other software causes SQL to become unstable, SQL won't install due to some error on the machine, etc.

Are there any other alternatives to using SQL as the local DB? We would stream everything from the server as needed, but our salesmen refuse to allow us to have minimum specs on our software, so we have customers with dial-up and hundreds of thousands of historical records that they run reports on.

I've seen some XML based solutions but I don't know if they could handle large volumes of data.
Posted
Comments
CHill60 2-May-13 13:40pm    
You must be generating a lot of traffic. Couldn't you run reports on the server and then just download the final results down to the local pc?

1 solution

Take a look at "nosql" technologies like my article here : RaptorDB - the Document Store[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900