Click here to Skip to main content
15,889,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello every one;

I have a question; we want develop a management software that used in three areas of a company; office, factory One and factory two.

it is proper to apply online offline database that update every 15 mins, or every time that user want.
the question is : is it possible to sync SQL database file to Dorpbox and share with other users while use sql database at the same time without any conflict problem?

or the best way is use sql server in web hosting center?

this software will work in production line; with tracing production progress by barcode reader; So disconnection on internet is not acceptable for a single sql server database;
what is the best online offline solution with a main sql database?

I want in each separate part of company; use software and save data in themes sql databases and if connected to internet, save changes to main sql server in host.
Posted
Updated 15-Feb-14 22:26pm
v3

Use SQL Server and access the same DB from all locations via the single instance: don't try to have multiple versions of SQL update the same database file, it will cause massive hassles unless you do it properly via replication - which is not a trivial subject in any way, and it intended for "local copy" database use such as a salesdroid who doesn't have permanent access to the online DB and makes occasional updates.

Trying to sync a file across multiple SQL instances via dropbox would be a disaster!
 
Share this answer
 
thank you for replying;

this software will work in production line; with tracing production progress by barcode reader; So disconnection on internet is not acceptable for a single sql server database;
what is the best online offline solution with a main sql database?

I want in each separate part of company; use software and save data in themes sql databases and if connected to internet, save changes to main sql server in host;
 
Share this answer
 
v2
Comments
Kornfeld Eliyahu Peter 16-Feb-14 3:59am    
Do not post your comment as a solution - use 'Have a Question or Comment?' button instead...
Hadi IR 16-Feb-14 7:00am    
Sorry I am beginner in this site

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