CB 2500 - Q&A - Week-4
CB 2500 - Q&A - Week-4
#What is metadata?
*Metadata are data that describes data in a database, eg.field name, data type and field properties which
describe the default value of column.
*They are always a part of database.
*The presence of metadata makes databases much more useful.
*Because of metadata, no one needs to guess, remember or record what is in the database.
#What is SQL?
*Structured Query Language (SQL) is an international standard language for processing a database.
*SQL can also be used to create databases and database structures.
*used by many popular DBMS products
#Draw a processing environment of browser-based database application. (Not needed, but you can try if
interested)
---
*The databases in thin-client applications are nearly always shared among many users.
*The users connect over the Internet to a Web server computer which in turn connects to a database
server computer.
*Thin-client applications run in a browser and need not be preinstalled on the users' computers.
*In most cases, all of the code for generating and processing the application elements is shared between
the user's computers and the server.
#What is an identifier?
*Entities have an identifier, which is an attribute or group of attributes whose value is associated with one
and only one entity instance.
*For example, OrderNumber is an identifier of Order because only one Order instance has a given value
of OrderNumber.
#What is normalization?
*is the process of converting poorly structured tables into two or more well-structured tables so that each
table consists of a single theme only.
*Normalization is used to eliminate data integrity problems, which arise from duplicated data.