answersLogoWhite

0


Best Answer

False

User Avatar

Wiki User

7y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When users modify data in a database using the database approach they must make changes to all files instead of just one file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What are the different types of databases?

There are presently two types. (A) Analytic Databases - read only and used to store archived data for analysis work and (B) Operational Databases - Operational databases - Theseallow you to modify the data (add, change or delete data). These types of databases are usually used to track real-time information. For example, a company might have an operational database used to track warehouse/stock quantities.


Three main types of database applications and briefly explain them with suitable example?

A collection of programs that enables you to store, modify, and extract information from a database. There are many different types of DBMSs, ranging from small systems that run on personal computers to huge systems that run on mainframes. The following are examples of database applications:computerized library systemsautomated teller machinesflight reservation systemscomputerized parts inventory systemsFrom a technical standpoint, DBMSs can differ widely. The terms relational, network, flat, and hierarchical all refer to the way a DBMS organizes information internally. The internal organization can affect how quickly and flexibly you can extract information.


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).


Is it possible to modify the hardware in a roku and if so how?

Yes, it is possible to modify the hardware in a Roku by upgrading it.


How do you modify skin of SPD shell v3.88 for s60 v5?

To modify the skin of the SPD shell v3.88 for s60 v5 you need to have some programming skills.

Related questions

What is form in database management system?

A collection of programs that enables you to store, modify, and extract information from a Database.


Write the detail of sql?

SQL is a database programming language.By this language we can create ,modify and other updating of our database record.


How do you modify a file on a database management software?

To modify a file on a database management software, open up your file explorer on computer (I.E. Windows Explorer) then go to the place where you saved the file. Go to the search bar and search the title of the file. Open it and then modify as you wish.


What is a query used for on a database?

query is a measure used in a programming language viz. SQL to create, delete, store, modify the database.


What are modifications?

Changes. To modify something is to change it.


What does Design view mean in relation to a database?

its used to creat and modify the structure of the table


What can modify a pronoun?

An adjective can modify a pronoun; for example:Silly me, I poured the juice in my coffee instead of the creamer.


What does a Hierarchical database do?

A hierarchical model is a database model which represents the database in a tree diagram. It thus helps the user to work with(i.e., use, modify, extract etc.) the database without even bothering about the complicated algorithms or flow chart used by the system to deal with the database.


What is the scientific definition of modify?

To make partial or minor changes to (something).


What is the difference between modify and adapt?

Modify: to make less extreme, to make changes or minor changes in, to make basic or fundamental changes in often to give a new orientation to or to serve a new endAdapt: to make fit (as for a new use) often by modification


What does database manipulation do?

INSERT new data , UPDATE new data , DELETE existing data (basically modify the data).


How can you make in php to see which user has modify his data and how?

If you want just information on user modifications then it would be no problem as you just need to add 2 columns Last Modified On(use date function) & No of Modifications (put int).To see changes to the data would require use of logs. Storing changes in database is not recommended.