What is a Database and Why Use One?

Slides:



Advertisements
Similar presentations
Database Management: Getting Data Together Chapter 14.
Advertisements

Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Databases and Database Management Systems
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
An INTRODUCTION to MICROSOFT ACESS 2000 By Dr. Ennis-Cole.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
CSC100 Databases Marni Ferner. A Few Well-Known Examples Itunes & Ipods Amazon.com Ebay LL Bean Wal-Mart.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
File Processing Concepts – Field – combination of 1 or more characters that is the smallest unit of data to be accessed – Record – group of related fields.
Introduction to Databases Trisha Cummings. What is a database? A database is a tool for collecting and organizing information. Databases can store information.
Dimu' Rumpak © 2009 by Prentice Hall 1 Getting Started Didimus Rumpak, M.Si. Database Concepts Chapter 1 1.
Database Management System (DBMS) an Introduction DeSiaMore 1.
Getting Started Chapter One DAVID M. KROENKE’S DATABASE CONCEPTS, 2 nd Edition.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
® Microsoft Office 2013 Access Creating a Database.
Fanny Widadie, S.P, M.Agr 1 Database Management Systems.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
ITGS Databases.
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
Presentation on Database management Submitted To: Prof: Rutvi Sarang Submitted By: Dharmishtha A. Baria Roll:No:1(sem-3)
CSCI-235 Micro-Computers in Science Databases. Database Concepts Data is any unorganized text, graphics, sounds, or videos A database is a collection.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
Database Principles: Fundamentals of Design, Implementation, and Management Chapter 1 The Database Approach.
Microsoft Access 2013 ®® Case Study Creating a Database.
Copyright © 2013 Dorling Kindersley (India) Pvt. Ltd. Management Information Systems: Managing the Digital Firm, 12eAuthors: Kenneth C. Laudon and Jane.
Tutorial 1 Creating a Database
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
New Perspectives on Microsoft Access 2016
Florida Technical College
Computers: Tools for an Information Age
Client/Server Databases and the Oracle 10g Relational Database
GO! with Microsoft Office 2016
Introduction to Databases by Dr. Soper extended with more examples
IS 130 Information systems 1
Database Systems Chapter 3 1.
Information Systems Today: Managing in the Digital World
The Context of Database Management
BASIC INFORMATION ABOUT DATABASE MANAGEMENT SOFTWARE
Database Systems Unit 16.
GO! with Microsoft Access 2016
Access Creating a Database
Chapter 4 Relational Databases
Access Creating a Database
Database Management  .
Databases A brief introduction….
RELATIONAL DATABASE MODEL
Computers: Tools for an Information Age
Databases and Information Management
Case Study Creating a Database
Chapter 9 Database and Information Management.
Managing data Resources:
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Databases and Information Management
Database Design Hacettepe University
Spreadsheets, Modelling & Databases
Introduction to Access
DATABASES WHAT IS A DATABASE?
The ultimate in data organization
A Very Brief Introduction to Relational Databases
Getting Started Chapter One DATABASE CONCEPTS, 5th Edition
Getting Started Chapter One DATABASE CONCEPTS, 4th Edition
Databases and Information Management
Introduction to MS ACCESS
Database Management Systems and Enterprise Software
Database management systems
Database Design Chapter 7.
Presentation transcript:

What is a Database and Why Use One?

Database Basics What is a database and how does it organize information? A database is a computerized system for storing information in an organized manner so that it can be searched for and retrieved when needed. Information is stored in the form of fields, records, and files. Unlike a list or spreadsheet, a database may store information that is more complicated than a simple list.

Sounds Like More Work, Not Less A relational database is more complicated than a list However, a relational database minimizes data redundancy, preserves complex relationships among topics, and aids data consistency Furthermore, a relational database provides a solid foundation for user forms and reports and allows the data to be examined in a myriad of different ways.

Data Duplication

Data Entry Errors

Database Basics Levels of Data within a Database Entity – a person, place, thing, or event Field – a single value, such as a name, address, or dollar amount data type: usually numeric or text (numbers and text) name: assigned by person developing the database size: number of characters that can be entered Record – related fields describing an entity File – collection of records of the same type

Database Basics Traditional database organizes data in a hierarchy. A field is the smallest element. Fields are within a record. Records are organized in a data file. Database is a collection of data files.

Databases and Relationships A relational database is a collection of related tables Records in the separate tables are connected through a common field A primary key is a field, or a collection of fields, that uniquely identify each record in a table Including the primary key from one table as a field in a second table to form a relationship between the two tables, it is called a foreign key in the second table

Introduction to Database Concepts

DBMS Related Tables

Relational Database Management Systems A database management system (DBMS) is a software program that lets you create databases and then manipulate the data they contain In a relational database management system, data is organized as a collection of tables. A relational DBMS controls the storage of databases and facilitates the creation manipulation, and reporting of data

Relational Database Management Systems A relational DBMS provides the following functions: Allows you to create database structures containing fields, tables, and table relationships Lets you easily add new records, change field values in existing records, and delete records Contains a built-in query language, which lets you obtain immediate answers to the questions (or queries) you ask about your data Contains a built-in report generator, which lets you produce professional-looking, formatted reports from your data Protects databases through security, control, and recovery facilities

End of Intro