Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We're transitioning over to a database is going to be stored on its own separate server; previously I only accessed it locally.

This is something I've never done before, so I'm wondering if anyone has any general advice about some caveats when dealing with non local databases? Are there specific things I should look out for as opposed to when dealing with a local database? I'm not even sure how to do this yet, and while I'm in the process of reading up on it, if anyone knows of any good tutorials for working with a separate database server for the first time, that'd be very appreciated.

share|improve this question
2  
This really isn't a question that can be answered on Stack Overflow... I would suggest picking up a good intro to MSSQL book and/or getting some training. If you aren't in a position to buy -- most decent city libraries have good books. Not to sound trite but even 'SQL for dummies' probably isn't a bad way to go - I've learned more than a few topics reading the ???? for dummies book. – RThomas Feb 3 '12 at 1:34
1  
You need to learn about connection strings to get at the server - and you should learn the principles of not retrieving too much data; always only retrieve what you really need, so do not use SELECT * FROM ...... but specify the columns you need. Also: always have a good WHERE clause to avoid returning way too many rows - only get as much as you can handle. – marc_s Feb 3 '12 at 6:03
I know how to use SQL, I've worked with connection strings and databases and all that, that really wasn't my question. I was wondering if there were some specific things I should do differently when I'm not connecting to a dedicated SQL server on a separate machine over a network, instead of one on the local machine. – cost Feb 3 '12 at 19:53
You mean except a real dserver ing many times more powerfull than your workstation and you having additional network latency so thousand small requests get slower? – TomTom Feb 6 '12 at 7:53

closed as off topic by Ernest Friedman-Hill, Will Feb 6 '12 at 18:36

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.