Do you support bulk insert to SQL?

Discussion in 'Pre-sales questions' started by markmark, Mar 9, 2009.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I am planning to order a plan. Do my SQL user have bulk insert enabled?
     
  2. mjp

    mjp

    I'm afraid the answer is 'no,' as it would be from most shared hosts. It is mainly a performance issue. You will usually find that bulk insert or load data infile (MySQL) are not allowed on shared db servers. Two or three (or 20) users simultaneously dumping large amounts of data at high speeds - it's kind of a recipe for "how to slow a db server to a painful crawl."

    Not to mention various other unpleasant problems that could arise when dumping large amounts of data into quota restricted databases. For instance, someone repeatedly trying to dump a 600MB data file into a database with a 500MB quota... "Why does this keep failing! I guess I'll just have to try again."

    So yeah, I know it's no fun trying to insert large amounts of data, but there are some scripts out there that will read your data file, break it into small chunks and systematically insert them. Couldn't point you to anything specific at the moment, but they are out there.
     
  3. ...Well said ;-)

    markmark, which DB server will these records be coming from?
    Salute,
    Mark
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page