answersLogoWhite

0

here the locking means is that the resource has been acquired on particular data(table) and that resource can not used by another transaction till it locked by any other transaction.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is a database management system?

Database management system is a software system that creates,expands and maintains the database.


Why do Database Management is related to MS Access?

Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.Access is a Database Management System, so it is related to the management of data. It is what a database is for.


Are database and database management system identical?

No. Database is a data itself, organized according to rules of database management system. And Database Management System is a software used to organize a database, and to acces it too.


About oracle database management system?

database management is a system


Is Database an operatig system?

No, database is not an operating system. Database is a system used by websites or software to store data they use.


What does the acronym IDMS mean?

The acronym IDMS is the initials of integrated database management system. This is a network database management system for mainframes. The model used by most is the CODASYL network model.


how do I get a job with a Database Management System ?

If you mean getting a job as the administrator of a database management system, then you need a degree in a field such as computer science, and likely a bit of work experience, as well.


What do you mean by degree of relation in relational database management system?

It is the number of the attribute in the relation


What is a system based system?

A database system is a term that is typically used to encapsulate the constructs of a data model, database Management system (DBMS) and database .. (natsume)


Do all Ford Focus have central locking?

All Ford vehicles have a central locking system that were manufactured after 1993. The Ford focus has always had the central locking system.


Contrast of database and database system?

A database is simply a collection of pieces of information (data). A text file storing names and phone numbers is a database. A database management system (DBMS) is some software that manages the data within the database such as MySQL. Both the software and the database are considered together when thinking of a DBMS.


What is a Lock in DBMS?

One major problem in databases is concurrency. Concurrency problems arise when multiple processes try to update or insert data into a database table at the same time. Such concurrent updates can cause data to become corrupt.Locking is a strategy that is used to prevent such concurrent updates to data.When a database system modifies data in one of its tables it first acquires a lock. When a table is locked, only the process the acquired the lock is allowed to modify the data in the table. Other processes will have to wait until the lock is released before they can make their changes. Now, this is a simple representation of how locking works. In reality databases can use different locking strategies.Depending on the database system, locks can be acquired on entire tables (table-level locking) or on individual rows (row-level locking).