I'm trying to grab about 300,000 rows of data from my database at one time, but my server times out at about 50k rows. (This is true, even when updating the rows.) Is there a way to increase this time out if I do not have direct access to my server?
txbakers
3:40 am on Mar 14, 2007 (gmt 0)
You can set the server.timeout in the code for that application. I don't know what language you are using, but in ASP it's as simple as Server.Timeout = 60 (in minutes)
bmcgee
3:00 am on Mar 19, 2007 (gmt 0)
For ASP, you use Server.ScriptTimeout = x Where x = the value you supply is seconds, not minutes.