SQL Compact Edition 3.5 SP 1 - LockTimeOutException - how to debug? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T16:16:03Zhttp://stackoverflow.com/feeds/question/92601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/92601/sql-compact-edition-3-5-sp-1-locktimeoutexception-how-to-debug1SQL Compact Edition 3.5 SP 1 - LockTimeOutException - how to debug?Bob King2008-09-18T13:38:33Z2008-09-18T18:31:15Z
<p>Intermittently in our app, we encounter LockTimeoutExceptions being throw from SQL CE. We've recently upgraded to 3.5 SP 1, and a number of them seem to have gone away, but we still do see them occasionally. I'm certain it's a bug in our code (which is multi-threaded) but I haven't been able to pin it down precisely. Does anyone have any good techniques for debugging this problem? The exceptions log like this (there's never a stack trace for these exceptions):</p>
<blockquote>
<p>SQL Server Compact timed out waiting for a lock. The default lock time is 2000ms for devices and 5000ms for desktops. The default lock timeout can be increased in the connection string using the ssce: default lock timeout property. [ Session id = 6,Thread id = 7856,Process id = 10116,Table name = Product,Conflict type = s lock (x blocks),Resource = DDL ]</p>
</blockquote>
<p>Our database is read-heavy, but does seldom writes, and I <em>think</em> I've got everything protected where it needs to be.</p>
<p>EDIT: SQL CE already automatically uses NOLOCK <a href="http://msdn.microsoft.com/en-us/library/ms172398(sql.90).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms172398(sql.90).aspx</a></p>
http://stackoverflow.com/questions/92601/sql-compact-edition-3-5-sp-1-locktimeoutexception-how-to-debug/95370#953700Answer by Bob King for SQL Compact Edition 3.5 SP 1 - LockTimeOutException - how to debug?Bob King2008-09-18T18:31:15Z2008-09-18T18:31:15Z<p>I just realized that 3.5 SP1 includes new information in the exception that let me pin in down.</p>
<blockquote>
<p>SQL Server Compact timed out waiting for a lock. The default lock time is 2000ms for devices and 5000ms for desktops. The default lock timeout can be increased in the connection string using the ssce: default lock timeout property. [ Session id = 6,Thread id = 7856,Process id = 10116,<em>Table name = Product</em>,Conflict type = s lock (x blocks),<em>Resource = DDL</em> ]</p>
</blockquote>
<p>I was able to identify that it was occuring when were trying to drop an existing table that must have open connections to it.</p>