GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  Database Administration

 Print  |  
Question:  
What is a deadlock ? Explain .

Answer:
 
Two  processes wating to update the rows of a table which are locked by the other process then deadlock arises.
 
In  a  database  environment  this will often happen because of not issuing proper  row  lock  commands. Poor design of front-end application may cause this situation and the performance of server will reduce drastically.
 
These locks will be released automatically when a commit/rollback operation performed or any one of this processes being killed externally.
 


November 11, 2007 04:16:29 #1
 msabuu   Member Since: November 2007    Total Comments: 4 

RE: What is a deadlock ? Explain .
 
Oracle automatically detect deadlock , but not occar
     

 

Back To Question