1 / 11

Levels of Abstraction (Views of Data )

Levels of Abstraction (Views of Data ). Physical level: describes how a record (e.g., customer) is stored. Logical level: describes data stored in database, and the relationships among the data. type customer = record

bikita
Download Presentation

Levels of Abstraction (Views of Data )

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. Levels of Abstraction (Views of Data ) • Physical level: describes how a record (e.g., customer) is stored. • Logical level: describes data stored in database, and the relationships among the data. typecustomer = record customer_id : string; customer_name : string;customer_street : string;customer_city : integer; end; • View level: application programs hide details of data types. Views can also hide information (such as an employee’s salary) for security purposes.

  2. View of Data An architecture for a database system

  3. DATA MODELING AND ITS COMPONENTS Data Modeling In computer science, data modeling is the process of structuring and organizing data. These data structures are then typically implemented in a database management system. In addition to defining and organizing the data, data modeling may also impose constraints or limitations on the data placed within the structure

  4. Managing large quantities of structured and unstructured data is a primary function of information systems. Data models describe structured data for storage in data management systems such as relational databases. They typically do not describe unstructured data, such as word processing, documents, email messages, pictures, digital audio, and video.

  5. Data model Data model fall into three different groups. 1.Object based logical model. 2.Record based logical model. 3.Physical model Object based logical model object based logical model are used in describing data at the logical and view level. They are characterized by the fact that they provide fairly flexible structuring capabilities and allow data constrains to a specified explicity.

  6. Record Based Logical Model Record based logical model used in describing data at the logical and view level. In contrast to object based data models they are used both to specify the overall logical structures of the data base and to provide a higher level description of the implementation. Record based models are so named because the database is structured in fixed format records of several types. Each record type defines a fixed number of fields, or attributes, and each field is usually fixed length The three most widely accepted record based data models are Relational Model Network Model Hierarchical Model.

  7. RELATIONAL MODEL Relationalmodel uses a collection of tables to represent both data and the relationship among those data. Each table has multiple columns and each column has a unique name. Table Name: Student Table Name: Course

  8. NETWORK MODEL Data in the network model are represented by collection of records and relation ship among data are represented by links, which can be viewed as pointers. The records in the database are organized as collection of arbitary graphs.

  9. K101 RajatKataria

  10. HIERARCHICAL MODEL. Hierarchical model is similar to the network model in the sense that data and relationship among data are represented by records and links, respectively. It differs from Network model in the records are organized as collection of trees rather then arbitrary graphs.

  11. Student code stu.name Course code , cou.name, marks

More Related