![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello All: I am in desparate need of assistance. We are using an application called PaperVision Enterprise which takes scanned invoices and puts them into a database for the purpose of easy reference to any scanned invoice in the db. 2 weeks ago while trying to perform a 'match and merge' of the newly scanned docs, we received a Run-time error '-2147217871 (80040e31)": Timeout expired message. After being told by the company who supports this software that they couldn't help me since it is using a MS SQL Server Table Lookup I started googling the error with minimal success. I am not very proficient with SQL so I'm kind of stuck. I have narrowed this down to an ODBC run-time error, but looking for some kind of guidance as to how I can resolve it. Any info would be greatly appreciated. We are using MS SQL Server 2000. |
#3
| |||
| |||
|
|
"The Man" <LeJon7... (AT) gmail (DOT) com> wrote in message news:1172253510.989866.118890 (AT) m58g2000cwm (DOT) googlegroups.com... Hello All: I am in desparate need of assistance. We are using an application called PaperVision Enterprise which takes scanned invoices and puts them into a database for the purpose of easy reference to any scanned invoice in the db. 2 weeks ago while trying to perform a 'match and merge' of the newly scanned docs, we received a Run-time error '-2147217871 (80040e31)": Timeout expired message. After being told by the company who supports this software that they couldn't help me since it is using a MS SQL Server Table Lookup I started googling the error with minimal success. I am not very proficient with SQL so I'm kind of stuck. I have narrowed this down to an ODBC run-time error, but looking for some kind of guidance as to how I can resolve it. Any info would be greatly appreciated. We are using MS SQL Server 2000. Really not much to go on here. It's not clear to me, did this happen just once? Or all the time? Can you open query analyzer and do a sp_who2 on the server in question? It's possible something has a lock on that table. Killing that (and determining who/why) should solve your problem. -- Greg Moore SQL Server DBA Consulting sql (at) greenms.com http://www.greenms.com |
#4
| |||
| |||
|
|
I am in desparate need of assistance. We are using an application called PaperVision Enterprise which takes scanned invoices and puts them into a database for the purpose of easy reference to any scanned invoice in the db. 2 weeks ago while trying to perform a 'match and merge' of the newly scanned docs, we received a Run-time error '-2147217871 (80040e31)": Timeout expired message. After being told by the company who supports this software that they couldn't help me since it is using a MS SQL Server Table Lookup I started googling the error with minimal success. I am not very proficient with SQL so I'm kind of stuck. I have narrowed this down to an ODBC run-time error, but looking for some kind of guidance as to how I can resolve it. Any info would be greatly appreciated. We are using MS SQL Server 2000. |
#5
| |||
| |||
|
|
The Man (LeJon7... (AT) gmail (DOT) com) writes: I am in desparate need of assistance. We are using an application called PaperVision Enterprise which takes scanned invoices and puts them into a database for the purpose of easy reference to any scanned invoice in the db. 2 weeks ago while trying to perform a 'match and merge' of the newly scanned docs, we received a Run-time error '-2147217871 (80040e31)": Timeout expired message. After being told by the company who supports this software that they couldn't help me since it is using a MS SQL Server Table Lookup I started googling the error with minimal success. I am not very proficient with SQL so I'm kind of stuck. I have narrowed this down to an ODBC run-time error, but looking for some kind of guidance as to how I can resolve it. Any info would be greatly appreciated. We are using MS SQL Server 2000. How much do you pay for that support contract? If you are paying anything at all, I suggest that you withhold any payments, until they have helped you with this issue, or sent you a fix. The error you get is one that happens in the client API. By default many client API has a command timeout of 30 seconds, which means that if no data has come back in this time, the client gives up waiting. There are two possible reasons why this timeout elapses: 1) Blocking. 2) The query takes a long time to run. Judging from the output you posted, there is no blocking. (The DB lock you mentioned is perfectly normal. All processes take out a lock on their current database.) On the other hand, process 65 appears to be busy. It has a lot of CPU time accumulated, and I don't like UNKNOWN TOKEN. That's usually a sign of something performing less well. So call the vendor again, and be more insistent that they help you to sort this out. At very least, they should change their app, so that it sets the command timeout 0, which means wait forever. Then at least, you would get a result, even if it would take some time. -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
#6
| |||
| |||
|
|
Thank you very much for your help. I will do that and explain what you told me to our vendor. Hopefully they can help with this information. The one thing that they have helped me to do is set the time out to zero and it seems i still get the same error. |
#7
| |||
| |||
|
|
The Man (LeJon7... (AT) gmail (DOT) com) writes: Thank you very much for your help. I will do that and explain what you told me to our vendor. Hopefully they can help with this information. The one thing that they have helped me to do is set the time out to zero and it seems i still get the same error. Hm, exactly how did you set that timeout? Usually the command timeout is set in code only, or not all, which means that only way to change it is to ship a new binary. But there are other timeouts, that the confused(?) support staff at PaperVision may have gotten you to fiddle with. -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books |
#8
| |||
| |||
|
|
How else can i change the time out? |
|
I went to the query analyzer to change the time out status... |
|
Also i don't know if this could help me but i was thinking of purging the data in my MS SQL server 2000. Do you know how i can go about purging this data? |
![]() |
| Thread Tools | |
| Display Modes | |
| |