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.
SELECT * FROM ......but specify the columns you need. Also: always have a goodWHEREclause to avoid returning way too many rows - only get as much as you can handle. – marc_s Feb 3 '12 at 6:03