1 / 15

Databases and Database Management Systems

Databases and Database Management Systems. What is a database?. A database is a file of similarly structured records. A database is a collection of information related to a particular subject or purpose, such as tracking customer orders or maintaining a music collection.

amanda
Download Presentation

Databases and Database Management Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Databases and Database Management Systems

  2. What is a database? • A database is a file of similarly structured records. • A database is a collection of information related to a particular subject or purpose, such as tracking customer orders or maintaining a music collection.

  3. What is a database management system (DBMS)? • A database management system is software that allows you to manage all your data in a systematic fashion. • It allows you to design and create new databases and perform various operations on existing databases. • These operations include adding new data and retrieving, modifying or deleting existing data.

  4. Types of DBMS architectures • Network (e.g. Cullinet Software’s IDMS) • Hierarchical (e.g. IBM’s IMS) • Relational (the most common in use today) • Object-relational • Object

  5. “Large” Oracle DB2 (IBM) Informix Sybase “Small” Access (Microsoft) FoxPro dBase 4th Dimension Example relational DBMSs

  6. Most common DBMS model on market? • Relational

  7. The relational DBMS we will be using in the course? • Access, which is part of Microsoft Office

  8. Two components of employing a DBMS • Designing and building the database • Manipulating the data

  9. Steps in building a database • Choose a DBMS • Define the data structure (Data Definition) • Create or import a set of records

  10. Steps in using a database • Data Manipulation: • Insert • Retrieve • Update • Delete • Sort • Calculate, etc. • Recovery, Security, etc.

  11. Building a database • In the relational data model a database consists of one or more tables. (Each table is called a relation, hence the name relational.) • Each row in one of these tables is a record. • A record consists of a set of fields.

  12. What is a database schema? • A database schema consists of all the information about what the tables are, what the fields are within each record in each table, how the tables are related, etc. • If you take an existing database and delete all the records, what’s left is the underlying database schema.

  13. So the first step in building a new database is to create the underlying database schema. • A major component of this is to tell the DBMS what the structure of your records will be (Data Definition) within each table.

  14. There are three main steps in data definition • Naming each field in a prototypical record, • Specifying its datatype, and • Specifying its size, if appropriate.

  15. Data validation • One of the main features of a DBMS is to perform data validation when a user attempts to create a new record or modify an existing record. • The reason for specifying a datatype for a field is to allow the DBMS to check the validity of user-entered data and reject invalid data.

More Related