Hi all,
I'm currently experiencing a similar problem as posted at
http://forums.aspfree.com/t28331/s.html . I've tried the suggestions posted there without any luck. I am working with SQL Server Version 8.
Here's my problem/symptoms: I am trying to run an UPDATE sql statement
"UPDATE prodGuidelines_tbl SET ID=15 WHERE ID=" & selectGen from within my ASP code, where selectGen is the variable storing the record ID. The strange symptom is that this works perfectly fine for most of the records (6 in total in the table), but it produces a "Timeout Expired" error for the second row. (eg. when selectGen = 2).
Here are the columns in the table prodGuidelines_tbl and their data types, just in case:
genGuidelines_Name --> varchar, length 100
genGuidelines_Filename --> varchar, length 100
effDate --> varchar, length 20
Applies_To --> varchar, length 10
ID (this is the primary key) --> int, length 4
Data --> image, length 16
Mime --> nvarchar, length 25
FG_Type --> int, length 4
Any help would be greatly appreciated. Just ask if you need more info. Thanks in advance.