Click here to Skip to main content
16,011,804 members
Home / Discussions / Database
   

Database

 
GeneralRe: Problem inserting xml string into temp table (inserting only a part of string not complete) Pin
Eric Dahlvang1-Sep-06 5:34
Eric Dahlvang1-Sep-06 5:34 
QuestionIDENTITY (1, 1) Pin
Brendan Vogt1-Sep-06 1:38
Brendan Vogt1-Sep-06 1:38 
AnswerRe: IDENTITY (1, 1) Pin
Eric Dahlvang1-Sep-06 12:10
Eric Dahlvang1-Sep-06 12:10 
Questionconcurrency violation Pin
webspeed1-Sep-06 0:20
webspeed1-Sep-06 0:20 
QuestionColumns not displaying in Crystal Report Pin
Ratish Aravind31-Aug-06 8:28
Ratish Aravind31-Aug-06 8:28 
QuestionHow to overcome transaction deadlock error Pin
kavithapuranik31-Aug-06 1:11
kavithapuranik31-Aug-06 1:11 
AnswerRe: How to overcome transaction deadlock error Pin
Stephen McGuire31-Aug-06 2:32
Stephen McGuire31-Aug-06 2:32 
AnswerRe: How to overcome transaction deadlock error Pin
Colin Angus Mackay31-Aug-06 4:47
Colin Angus Mackay31-Aug-06 4:47 
A deadlock happens because two processes are locking ojects that the other needs. Essentially neither can continue until the other has completed. Since neither process can continue, then also neither process can complete. SQL Server will detect this and choose one process as the victim and cancel its transaction.

To prevent this happening in the first place you should try and ensure that all access to objects (e.g. tables) happen in the same sequence in all transactions. That is, if you have a transaction that updates table A then table B it will potentially deadlock with another transaction that updates table B then table A.


QuestionSql Server2000: Msg 8101 Pin
indiaone30-Aug-06 23:37
indiaone30-Aug-06 23:37 
AnswerRe: Sql Server2000: Msg 8101 Pin
Mike Dimmick31-Aug-06 3:03
Mike Dimmick31-Aug-06 3:03 
QuestionHow to present data to user in HTML table. Pin
HimaBindu Vejella30-Aug-06 22:36
HimaBindu Vejella30-Aug-06 22:36 
AnswerRe: How to present data to user in HTML table. Pin
Sage1-Sep-06 0:22
Sage1-Sep-06 0:22 
Questionstored procedure yazan 3 Pin
yazan_zahi30-Aug-06 22:25
yazan_zahi30-Aug-06 22:25 
AnswerRe: stored procedure yazan 3 Pin
Colin Angus Mackay31-Aug-06 4:52
Colin Angus Mackay31-Aug-06 4:52 
GeneralRe: stored procedure yazan 3 Pin
Sage1-Sep-06 0:23
Sage1-Sep-06 0:23 
GeneralRe: stored procedure yazan 3 Pin
Colin Angus Mackay1-Sep-06 0:45
Colin Angus Mackay1-Sep-06 0:45 
GeneralRe: stored procedure yazan 3 Pin
Sage1-Sep-06 0:51
Sage1-Sep-06 0:51 
GeneralRe: stored procedure yazan 3 Pin
Colin Angus Mackay1-Sep-06 10:49
Colin Angus Mackay1-Sep-06 10:49 
Questionstored procedure yazan 2 Pin
yazan_zahi30-Aug-06 21:42
yazan_zahi30-Aug-06 21:42 
AnswerRe: stored procedure yazan 2 Pin
HimaBindu Vejella30-Aug-06 22:39
HimaBindu Vejella30-Aug-06 22:39 
AnswerRe: stored procedure yazan 2 Pin
Colin Angus Mackay31-Aug-06 4:50
Colin Angus Mackay31-Aug-06 4:50 
Questionstored procedure yazan Pin
yazan_zahi30-Aug-06 21:41
yazan_zahi30-Aug-06 21:41 
AnswerRe: stored procedure yazan Pin
Colin Angus Mackay31-Aug-06 4:48
Colin Angus Mackay31-Aug-06 4:48 
Questionstored procedure Pin
yazan_zahi30-Aug-06 20:58
yazan_zahi30-Aug-06 20:58 
AnswerRe: stored procedure Pin
Michael P Butler30-Aug-06 21:18
Michael P Butler30-Aug-06 21:18 

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.