UNIVERSITAS MUHAMMADIYAH SURAKARTA DATABASE MANAGEMENT SYSTEM - INTRODUCTION.

Slides:



Advertisements
Similar presentations
Databases MMG508. DB Properties  Definition of a database: “A database is a collection of interrelated data items that are managed as a single unit”
Advertisements

Introduction to Databases
MSc IT UFIE8K-10-M Data Management Prakash Chatterjee Room 3P16
3-1 Chapter 3 Data and Knowledge Management
Getting Started (Excerpts) Chapter One DAVID M. KROENKE’S DATABASE CONCEPTS, 2 nd Edition.
CPSC-608 Database Systems Fall 2010 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes 1.
INTRODUCTION TO DATABASES
Introduction to Database Systems
Chapter 1 Introduction to Databases
DBMS1 Database Management System (DBMS) Introductory Concepts Week-1.
Introduction to Databases
Database Management COP4540, SCS, FIU An Introduction to database system.
Introduction to Database Systems 1.  Assignments – 3 – 9%  Marked Lab – 5 – 10% + 2% (Bonus)  Marked Quiz – 3 – 6%  Mid term exams – 2 – (30%) 15%
Introduction to Databases and Database Languages
Introduction to Database
Database Lecture # 1 By Ubaid Ullah.
Chapter 9 SQL and RDBMS Part C. SQL Copyright 2005 Radian Publishing Co.
CSC2012 Database Technology & CSC2513 Database Systems.
CS370 Spring 2007 CS 370 Database Systems Lecture 2 Overview of Database Systems.
 Introduction Introduction  Purpose of Database SystemsPurpose of Database Systems  Levels of Abstraction Levels of Abstraction  Instances and Schemas.
Sistem Basis Data (DATABASE) Siauw Yohanes Darmawan
Module Title? DBMS Introduction to Database Management System.
Introduction to Database Systems Motivation Irvanizam Zamanhuri, M.Sc Computer Science Study Program Syiah Kuala University Website:
Chapter 1 Introduction to Databases Pearson Education ©
Database Architecture Introduction to Databases. The Nature of Data Un-structured Semi-structured Structured.
1 CS 430 Database Theory Winter 2005 Lecture 1: Introduction.
Database Technical Session By: Prof. Adarsh Patel.
 DATABASE DATABASE  DATABASE ENVIRONMENT DATABASE ENVIRONMENT  WHY STUDY DATABASE WHY STUDY DATABASE  DBMS & ITS FUNCTIONS DBMS & ITS FUNCTIONS 
Introduction: Databases and Database Users
1 Welcome: To the second learning sequence “ Data Base (DB) and Data Base Management System (DBMS) “ Recap : In the previous learning sequence, we discussed.
INFS614, Dr. Brodsky, GMU1 Database Management Systems INFS 614 Instructor: Professor Alex Brodsky
Oleh Munawar Asikin. Principles of Information Systems, Seventh Edition 2  Database management system (DBMS): group of programs that manipulate database.
FEN  Data Definition: CREATE TABLE, ALTER TABLE  Data Manipulation: INSERT, UPDATE, DELETE  Queries: SELECT SQL: Structured Query Language.
“INTRODUCTION TO DATABASE AND SQL”. Outlines 2  Introduction To Database  Database Concepts  Database Properties  What is Database Management System.
Instructor: Dema Alorini Database Fundamentals IS 422 Section: 7|1.
1 Chapter 1 Introduction to Databases Transparencies Last Updated: Pebruari 2010 By M. Arief Updated by RSO Feb 2011
Database Management System (DBMS) an Introduction DeSiaMore 1.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
MySQL Database Management Systems Universitas Muhammadiyah Surakarta Yogiek Indra Kurniawan.
Introduction to Databases
Chapter 1 Introduction to Databases © Pearson Education Limited 1995, 2005.
Module 1: Database System
1 Why Learn About Database Systems? Database systems process and organize large amounts of data Examples –Marketing manager can access customer data –Corporate.
Creating and Maintaining Geographic Databases. Outline Definitions Characteristics of DBMS Types of database Relational model SQL Spatial databases.
1 Database Management Systems (DBMS). 2 Database Management Systems (DBMS) n Overview of: ä Database Management Components ä Database Systems Architecture.
DATABASE MANAGEMENT SYSTEM By: YAMINI TRIPATHI. INTRODUCTION Consists - Collection of interrelated data - Set of programs to access those data Definition.
1 TOPIC 6 DATABASE 6.1 Introduction to Database 6.2 Basic Concept of Database 6.3 Database Object DATABASE.
Introduction to Databases Three File Processing Systems DAVID M. KROENKE’S DATABASE PROCESSING, 10th Edition © 2006 Pearson Prentice Hall 1-2.
Database Systems Lecture 1. In this Lecture Course Information Databases and Database Systems Some History The Relational Model.
Database MySQL Universitas Muhammadiyah Surakarta Yogiek Indra Kurniawan.
Introduction to Databases
IS6146 Databases for Management Information Systems Lecture 1: Introduction to IS6146 Rob Gleasure robgleasure.com.
Introduction to Databases Transparencies © Pearson Education Limited 1995, 2005.
1 Database Environment. 2 Objectives of Three-Level Architecture u All users should be able to access same data. u A user’s view is immune to changes.
SQL Introduction to database and SQL. Chapter 1: Databases and Database Users 6 Introduction to Databases Databases touch all aspects of our lives. Examples:
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
Databases in Practice 29 Databases In Practice 29.
Advanced Databases COMP3017 Dr Nicholas Gibbins
TCCICOMPUTERCOACH ING.COM.  TCCI-Tririd Computer Coaching Institute provides best teaching in basic computer programming language at tcci-ahmedabad.
Learn Structured Query Language to rule Database.
Fundamental of Database Systems
Introduction to Databases
An Introduction to database system
Lecture 1 Introduction to Database
Introduction to Database Systems
“Introduction To Database and SQL”
Data Base System Lecture 2: Introduction to Database
SQL .. An overview lecture3.
Database Management Systems
Presentation transcript:

UNIVERSITAS MUHAMMADIYAH SURAKARTA DATABASE MANAGEMENT SYSTEM - INTRODUCTION

INTRODUCTION NAME : YOGIEK INDRA KURNIAWAN  : KARANGANYAR, SURAKARTA  :  : CP STUDENTS : BASYIR

RULE LECTURER : TOLERANCE ATTENDANCE = 30 MINUTES NO NEWS  WO, OR WAIT / CALL : STUDENTS : TOLERANCE ATTENDANCE =... MINUTES LATE ??? GAME / QUIZ / STORY TELLING

LEARNING CONTRACT ATTENDANCE5% QUIZ AND/OR HOMEWORK30% MID TERM EXAM30% FINAL EXAM35%

SUGGESTION BRING YOUR LAPTOP! GRADE? ALWAYS TRY AND ASK!

DATABASE MANAGEMENT SYSTEM WHAT!?

EXAMPLE OF DATABASE

EXAMPLE OF TABLE

FILE BASED SYSTEMS  File based systems  Data is stored in files  Each file has a specific format  Programs that use these files depend on knowledge about that format  Problems:  No standards  Data duplication  No way to generate complex queries  No provision for concurrency, security, recovery, etc.

DATABASE MANAGEMENT SYSTEMS  A database management system (DBMS) is software that controls and manages that information  Examples:  Oracle  DB2 (IBM)  MS SQL Server  MS Access  Ingres  PostgreSQL  MySQL

WHAT THE DBMS DOES  Provides users with  Data definition language (DDL)  Data manipulation language (DML)  Data control language (DCL)  Often these are all the same language  Allows users to  Store  Update  Retrieve  Organise  Protect their data.

DATABASE USERS  Database systems programmer  Writes the database software itself  Database Administrator (DBA)  Designs & manages the database system  End users  Use the database system to achieve some goal  Application developers  Write software to allow end users to interface with the database system