I have a problem with a script timing out while fetching data form a query on large table.
The table have 9,521,457 rows.
The query I\'m trying to preform is
Set the CommandTimeout on the command object
var command = connection.CreateCommand(); command.CommandTimeout = 0; //zero specifies never timeout. //Any number greater than zero is the number of seconds before //the command will time out.