answersLogoWhite

0

📱

Database Programming

Databases are collections of tables that maintain and display information, often collaboratively; this information can be used for interaction with an application or gaining general knowledge. Questions about database engines and modifying or using them belong in this category.

8,803 Questions

What is a modification problem what are the three possible types of modification problems database?

The three possible types of modification problems are: Deletion, update, and insertion problems

What are the main characteristics of a relational model?

The main characteristics of this "databases" is that the belief that what is mathematically elegant, is also the simplest and best. So the relational model is based on relational calculus, where you see the database as "relations" of tuples, where each tuple represent elements of data. You then go on and describe addition, subtraction (insert, delete), multiplication (join) and division (inner join) as operators on tuples, and projection as operators on elements. <p> This works fine, and a RDBM has to support integrity constraints that ensures that the mathematical properties are retained. If you do not like calculus, you can also describe the RDBMS with "relational algebra". A more pragmatic way of structuring data, that was intended to reflect the use of data can be found in the CODASYL DBTG proposal. Such databases will be vastly more efficient, there will be things you cannot do, whereas all can be done with a relational database - somehow.Note that a database as such is based on assumptions of support to retain consistency, data is supposed to never be lost, and when you make changes, you are able to "commit" them all because they are in the application logic defined so that it is not one, but all changes or none. If you do not manage to complete the application logic, every single trace of the changes is to be removed - "undone". A database shall also support multiple users at once, and see to that your changes are protected from others messing around with the data that you work on. This separate the various databases from using the plain file system. If you just make an application, the CODASYL database model will be much easier to work with, but when you later want to expand and add to the application, you will prefer to use the more general relational model, since this does not constrain you in any way.

What are the steps involved in planning database files?

There are five steps to planning database files. These steps are collecting information, determining objects, modeling said objects, determining every object's information, and determining the relationships the objects have with one another.

What is customer database?

A costumer database is an organized collection of comprehensive data about individual costumers or prospects, including geographic, demographic, psychographic, and behavioral data.

What would you want to track with your database?

I would want my database to do everything-manage and track my donors, foundations and grants, constituents and events, send mass e-mails, manage my staff records, vendor records and store contact information gathered on my website as well as push financial information like donations into QuickBooks so I won't have to re-enter everything twice.

What do Malabsorptive procedures do?

Malabsorptive procedures help patients lose weight by limiting the amount of nutrients and calories the intestine can absorb

Has the role of management changed?

Years ago, managers were thought of as people who were the boss. While that might still be true in the early twenty-first century, many managers view themselves as leaders rather than as people who tell subordinates what to do

Why global query optimization is difficult in distributed dbms?

1:parallel execution

2: Additional communication cost

3: Transparency and replication

What is a Multi-user DBMS Architecture?

A Multi-user DBMS Architecture is one big system of users and queries. The use of these are to over look and execute plans safely and does not violate and integrity constraints.

Why need to turn un-normalization data into 1NF?

Un-normalization of data will return the actual values of outcome, which is real value. Because we scale the data in normalization process.

What is strong and weak entity set?

the enitity which is set primary key is said to be strong entity and the entity which does not set primary key is said to be weak entity.

Is a query the same as a filter?

Not exactly. A query is much more powerful. Essentially it can filter records, but queries can do all sorts of other things that filters cannot do. A filter will reduce down the amount of records you see by apply a condition. You can then scroll through the visible records. A query can do the same thing, but it will give you a list of the records. It can deal with more complex conditions and do many other things like delete records, change values in records, build new tables and many other things that filters cannot do. You would use a filter for simple things, like to filter out all the people working in a particular department, but would use a query for something more complex like to show the people working in a particular department, who are earning a certain amount of pay and have worked in the company for more than a certain amount of years.