need more ideas on importing delimited text files

  • Thread starter Thread starter TJS
  • Start date Start date
T

TJS

I need to import delimited text files (several thousand records each) on a
shared hosted website:

currently building insert statements from ASP.net file but this is pig slow
and burns way too much cpu.

Constraints:
- webhost locked out bulk insert ( says it is a security risk )
- building insert queries takes too much cpu
- no admin privileges available
- DTS not allowed on server ( says it is a security risk )
- cannot change settings on things like registry
- cannot use any command line stuff for bcp

There must be another way to do this.

what else is an option??
 
Maybe you could kick this stuff on a thread set to lowest priority. It's
going to Peg out the CPU, but since the priority is so low, other stuff will
still run ok (like ASP.net :) ).

You might also consider a new host.

Michael
 
Back
Top