Kapitel 9 Flashcards
DBMS
Database management system handles the actual manipulation of the database.
Association analysis
involves looking for links between data groups.
Commit point
the point at which all the steps in a transaction have been recorded in the log. In the case of an equipment malfunction the dbms can use the information in its log to reconstruct the transactions that have been completed (commited) since the last backup was made.
Schema
a description of the entire database structure that is used by the database software to maintain the database.
Clustering
If a disproportionate number of keys happen to hash to the same bucket.
Object-Oriented databases
This approach leads to a databse consisting of objects that are linked to each other to reflect their relationships. For example, an object oriented implementation of the eomployee dataset could consist of three classes (types of objects): Employee, job and assignment.
Load factor
– a ratio that signifies well performing hash files, and the ratio of the number of records to the total record capacity of a file should remain below 50 percent.
Data mining: Class discrimination
deals with identifying properties that divide two groups.
Cascading rollback
when a rollback prompts several rollbacks due to the fact that different functions has been executed because of the first erroneous function.
Application software
Handles the communication with the user of the database and may be quite complex, as exemplified by applications in which users access a database by means of a website. In that case the entire application layer consists of clients throughout the internet and a server that uses the database to fill the requests from the clients.
Data mining: Cluster analysis
another form of data mining which seeks to discover classes. This differs from class description which seeks to discover properties of members within classes. Cluster analysis tries to fond properties of data items that lead to the discovery of groupings.
Subschema
description of only that portion of the database pertinent to a particular user’s needs.
Data mining
– differs from traditional databse interrogation in that data mining seeks to identify previously inknown patterns as opposed to traditional database inquiries that merely ask for the retrieval of stored facts. Data mining is practiced on static data collections called data warehouses. Two common forms of data mining are class description, class discrimination and cluster analysis
Data mining: Class description
deals with identifying properties that characterize a given group of data items.
SQL
Structured query language, a language that provide routines of combinations of the operations SELECT, PROJECT and JOIN. SQL forms the backbone of most relational database query systems.