Query SQL Server from Remote

bortiquai

Member
Joined
Jul 5, 2007
Messages
17
Programming Experience
Beginner
I have an application that many users use from all over. However, periodically, data must update a centralized server. What is the best way to do this? I am using a SQL Server Database. I know i could open up a port, and just have the application connect to the Public ip, etc etc... but is there a better way?
 
In terms of speed, etc. Those options are in order from best to worst in my humble opinion. Naturally depending on a few different things. But to create a VPN would be the best way to accomplish this. Replicating the server locally and tranferring all the data requires a decent ammount of work. The third, can be pretty slow. I know web services are great blah blah blah, but some of them can be really slow and based on the fact that there will be multiple users from various locations updating what would seem like large ammounts of data, the web service would just be too slow. I would def suggest setting up a VPN.
 
Back
Top