1 / 17

Database Management Systems INFS 614

Database Management Systems INFS 614. Lecture One - Introduction. Instructor: Professor Alex Brodsky brodsky @gmu.edu http://classweb.gmu.edu/brodsky/infs614. Outline. Course syllabus Course Schedule Homework & project & exams Satisfaction of prerequisites

Download Presentation

Database Management Systems INFS 614

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. Database Management SystemsINFS 614 Lecture One - Introduction Instructor: Professor Alex Brodskybrodsky@gmu.edu http://classweb.gmu.edu/brodsky/infs614

  2. Outline • Course syllabus • Course Schedule • Homework & project & exams • Satisfaction of prerequisites • Signed form must be submitted TODAY • Break (long) • Introduction to DB & DBMS • Outline of the entire course material

  3. Class Schedule

  4. Front matters • Always use email as the first means to communicate with me! brodsky@gmu.edu, I will try to reply promptly. • Sign up for your Mason account. You may forward all your Mason emails to your favorite email address. • Required Book: • Database Management Systems, 3rd ed. by Raghu Ramakrishnan & Johannes Gehrke, McGraw-Hill. • Recommended Book: • Oracle 9i Programming: a Primer, by Rajshkhar Sunderraman, Addison Wesley, ISBN 0-201-61258-5 (or later versions) • On-Line Course Resources: http://classweb.gmu.edu/brodsky/infs614 • You are required to read all the material there. The content will be updated frequently. So check the web site periodically, at least once every week, and every time before class!

  5. Submission and Grading • Late submission allowed up to one week (unless disallowed explicitly) but with 5% penalty each day. • On-time: within 5 minutes after the class begins. • Faxed-in submission accepted (703-993-1638, attention to instructor) • The final grades assigned to the students are based on their performance on • homework assignments (15%) • midterm exam (32%), and • final exam (46%) and • a semester-long project (7%). • “Absolute” grade guarantees: 90+ A, 75+ B, 60+ C

  6. Honor Code System • GMU honor Codehttp://www.gmu.edu/catalog/acadpol.html#honor • For this class • Homework & project are all individual. Group discussions are encouraged but final solution and write up must be individual. • Exams: individual effort, closed books • Satisfaction of prerequisites Form • Signed with honor code invoked.

  7. Useful links for your computing needs • http://www.gmu.edu/departments/ucis (especially the "Technical Info" section) for mason account information. • http://www.ite.gmu.edu/labs for ITE computing lab and Oracle DBMS information. • http://oracle.com/ip/deploy/database/9i/index.html?persed.html for personal edition of Oracle 9i.

  8. Satisfaction of prerequisites • Prerequisites • INFS501 (Discrete mathematics) • INFS515 (Computer architecture/organization) • INFS590 (Programming with data structures) • For IS/SWE/ISA students • Satisfaction = foundation requirements are all satisfied. Check letter of admission for foundation requirements. • Student signs the form. • For other students • Satisfaction = talk to instructor and instructor agrees. • Instructor signs the form. • The SoP form must be signed in order to receive a grade for the course.

  9. Break Talk to Non-IS/SWE/ISA students about their prerequisites

  10. What are Database and DBMS? • Database: • A very large, integrated collection of data. • Data integrity is a concern. • Models real-world enterprise. • Entities (e.g., students, courses) • Relationships (e.g., Frodois taking INFS614) • A Database Management System (DBMS)is a software package designed to store, provide access and manage databases.

  11. Why Use a DBMS? Easier and More Efficient • Data independence and efficient access. • Reduced application development time. • Data integrity and security. • Uniform data administration. • Concurrent access, recovery from crashes.

  12. Data Models • A data modelis a collection of concepts for describing data. • Aschemais a description of a particular collection of data, using the a given data model. • The relational model of datais the most widely used model today. • Main concept: relation, basically a table with rows and columns. • Every relation has a schema, which describes the columns, or fields.

  13. Levels of Abstraction View 1 View 2 View 3 • Many views, single conceptual (logical) schemaand physical schema. • Views describe how users see the data. • Conceptual schema defines logical structure • Physical schema describes the files and indexes used. Conceptual Schema Physical Schema • Schemas are defined using DDL; data is modified/queried using DML.

  14. Data Independence • Applications insulated from how data is structured and stored. • Logical data independence: Protection from changes in logical structure of data. • Physical data independence: Protection from changes in physical structure of data. • One of the most important benefits of using a DBMS!

  15. Transaction • An execution of a DB program • Key concept is transaction, which is an atomicsequence of database actions (reads/writes). • ACID properties • A – Atomicity • C – Consistency • I – Isolation • D – Durability • How: log and concurrency control sub-system

  16. Database Users • End users (or DB application users) • DB application programmers (more precisely, they are DBMS users) • E.g. smart webmasters • This course is mostly to learn how to (start to) be a DB application programmer. • Database administrator (DBA) • Designs logical /physical schemas • Handles security and authorization • Data availability, crash recovery • Database tuning as needs evolve Must understand how a DBMS works!

  17. Summary • DBMS used to maintain, query large datasets. • Benefits include recovery from system crashes, concurrent access, quick application development, data integrity and security. • Levels of abstraction give data independence. • We will learn how to • Set up a database • Design (ERD and Relational Model), and refine (Relational Normalization Theory) • Use to query the database • Relational Algebra and SQL

More Related