Click here to Skip to main content
15,905,322 members
Home / Discussions / Database
   

Database

 
GeneralRe: Mail Pin
sardinka30-Jul-03 3:26
sardinka30-Jul-03 3:26 
QuestionWildcard SELECT in MySQL? Pin
MKlucher25-Jul-03 5:11
MKlucher25-Jul-03 5:11 
AnswerRe: Wildcard SELECT in MySQL? Pin
ZoogieZork25-Jul-03 6:54
ZoogieZork25-Jul-03 6:54 
GeneralRe: Wildcard SELECT in MySQL? Pin
MKlucher25-Jul-03 7:03
MKlucher25-Jul-03 7:03 
GeneralRe: Wildcard SELECT in MySQL? Pin
dabuskol3-Aug-03 19:44
dabuskol3-Aug-03 19:44 
GeneralYukon ! Pin
Nino_124-Jul-03 20:01
Nino_124-Jul-03 20:01 
GeneralSQL server timeout expired Pin
Imtiaz Murtaza24-Jul-03 18:59
Imtiaz Murtaza24-Jul-03 18:59 
GeneralRe: SQL server timeout expired Pin
Mike Dimmick29-Jul-03 3:05
Mike Dimmick29-Jul-03 3:05 
This could be a lock timeout. Lock timeouts might occur if you begin an explicit transaction but never commit it or roll it back. The default transaction isolation level is READ COMMITTED, where different sessions can only see data committed by other sessions, not data that hasn't yet been committed.

If you have a situation where connection A has updated a row but not committed the change, and connection B tries to read it, B will block waiting for A to commit before it can read. If you have a situation where B has a recordset open and hasn't read all of it, and A's update would affect that recordset, A will block until B closes its recordset. This assumes server-side cursors - with client-side cursors and forward-only, read-only recordsets, SQL Server just throws the whole resultset at B.

ADO normally uses connection pooling, so there's rarely much cost to closing and reopening a connection if you've used it recently. If it isn't used, ADO will close the connection fully, saving server resources.

Check your transactions and your connection logic.
Generalprocedure Pin
aquaman22-Jul-03 16:46
aquaman22-Jul-03 16:46 
GeneralPrimary Key Pin
Anthony988722-Jul-03 9:57
Anthony988722-Jul-03 9:57 
GeneralRe: Primary Key Pin
Chris Meech23-Jul-03 2:45
Chris Meech23-Jul-03 2:45 
GeneralRe: Primary Key Pin
Jon Hulatt24-Jul-03 5:36
Jon Hulatt24-Jul-03 5:36 
Generalglobal DataSet Pin
haimon1522-Jul-03 8:19
haimon1522-Jul-03 8:19 
GeneralRe: global DataSet Pin
Arjan Einbu27-Jul-03 7:49
Arjan Einbu27-Jul-03 7:49 
Questionhow to get parameters into table Pin
don7cry21-Jul-03 3:12
don7cry21-Jul-03 3:12 
AnswerRe: how to get parameters into table Pin
Nino_121-Jul-03 18:33
Nino_121-Jul-03 18:33 
GeneralRe: how to get parameters into table Pin
don7cry22-Jul-03 0:48
don7cry22-Jul-03 0:48 
GeneralRe: how to get parameters into table Pin
Arjan Einbu22-Jul-03 1:32
Arjan Einbu22-Jul-03 1:32 
GeneralRe: how to get parameters into table Pin
don7cry22-Jul-03 4:34
don7cry22-Jul-03 4:34 
GeneralSearch the database; Pin
Bo Hunter20-Jul-03 12:17
Bo Hunter20-Jul-03 12:17 
GeneralRe: Search the database; Pin
Nino_120-Jul-03 15:57
Nino_120-Jul-03 15:57 
GeneralRe: Search the database; Pin
Ian Darling21-Jul-03 8:37
Ian Darling21-Jul-03 8:37 
GeneralRe: Search the database; Pin
Rein Hillmann23-Jul-03 6:01
Rein Hillmann23-Jul-03 6:01 
GeneralRe: Search the database; Pin
Ian Darling23-Jul-03 6:14
Ian Darling23-Jul-03 6:14 
GeneralAssign One ConnObj Pointer to another Pin
Johan_yo17-Jul-03 11:27
Johan_yo17-Jul-03 11:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.