I have an UPDATE query in a C# program that sets all the fields to 0 with no WHERE clause.  There is about 600k items so yeah it's lot of data.  the query craps out with a time out error so it never actually executes.  Is there a way to speed up such query?  Would indexing play a role here (doubt it, as I'm not using WHERE, just updating all records).
If I can't speed it up, is there a way within C# to stop it from timing out?
			
			If I can't speed it up, is there a way within C# to stop it from timing out?
				
		
			