Wednesday 5 October 2011

Conceptual View Level

The middle level in the three-level architecture is a conceptual view level, which is also referred to as logical view  level. It describes the entire structure of database such as entities, attributes, data types, relationships, constraints, and user operations. It hides the details of physical storage structures. The conceptual view level supports the external view level to present the data to end-users as they need. This view is relatively constant and the Database Administrator designs it after determining the present and future information needs of the organization. However, to expand the conceptual view, the Database Administrator adds the new objects to fulfill the requirements of the organization, without affecting the external view.
The conceptual view is defined by means of the conceptual schema, which includes definitions of each of the various conceptual record types. The conceptual schema is a complete description of information of database structure such as every record type with all its fields. It also includes security and integrity rules. The conceptual schema is written in DDL, compiled by the DBMS and stored in its data dictionary. The DBMS uses the conceptual schema to create the logical record interface, which is used by the external record of a particular user to present data to that user. Actually, conceptual view level is a collection of the logical records.

Monday 26 September 2011

External View Level

The external view level is closest to the users. It is concerned with the way the data is viewed by individual users. You can say that external level is the individual user level. A user can either be an application programmer or an end-user, but DBA is an important special case.
The external level consist of many different external views of database. Each external view describes that a particular user group is interested in and hides the rest of the database from that user group. In addition, different views may have different representations of the same data. For example, one user may view date in the form (day, month, year).. while another may view date as (year, month, day). Some users may view calculated data, which is not actually stored in database. The calculated data is created temporarily when needed. For example, marks of subject "C++" of students are stored in the database and average marks of this subject are calculated by system  when the user refers to it. Similarly, if a date-of-birth of a student is stored in the database then you can find the age of the student.
The external views are defined by means of external schemes, which are written in the data definition language (DDL). Usually, the DBA writes an external schema to create a user view. Each user's view. An external record is a record seen by a particular user (a part of his external view). Actually, an external view is a collection of external records.
The external schemes are compiled by the DBMS and store in its data dictionary. The DBMS uses the external schema created for a specific user, to create a user interface to access the database. Thus user-interface created through external schema accepts and displays information in the format the user expects. It also acts as barrier to hide the information of database from the user that are not permitted to him.

Sunday 25 September 2011

DATABASE SYSTEM ARCHITECTURE

We know that the database system provides users with an abstract view of data, by hiding certain details of how data is stored and manipulated. Therefore, before to design a database, the data of organization is considered on  abstract level.
Database system architecture means design or construction of database system. The database system architecture provides general concept and structure of database system. The architecture of most commercial database management systems is based on the three-level architecture by DBTG.

The Three-Level Architecture
An early proposal for a standardized terminology (or vocabulary) and architecture for database system was developed and published in 1971 by DBTG (Database Task Group) appointed by CODASYL. A similar architecture and terminology were developed and published in 1975 by SPARC (Standard Planning and Requirements Committee) of American National Institute. As a result of these and later reports, databases can be viewed at three levels, know as external, conceptual and internal levels. The three-level architecture is also known as schema architecture. The purpose of the three-level architecture is to separate the user application and the physical database. The reasons of this separation are:

  1. Different users and need different views of the same data.
  2. Users should not have to deal directly with the physical database storage details.
  3. The DBA should be able to change the database storage structure or storage device without affecting other user's views etc.
The three level architecture is divided into three view levels, External view level, Conceptual view level and Internal view level.The Figure shows the three-level architecture of the database system.

Thursday 22 September 2011

Data Processing On Internet and Object Oriented Database Systems

  • Data Processing On Internet
The Internet was introduced in 1969 by Advanced Research Projects Agency (ARPA) of USA. Today, most the database systems are online. It means that databases, DBMS software and database application are stored on the Web server. The database technology is used in conjunctions with Internet technology to access data on the Web server. The database application are developed using Internet technology to access the database on the Web server. The database on the Internet uses the hypertext transfer protocol (HTTP), dynamic, hypertext markup language (DHTML), and extensible markup language (XML), to communicate information between database application and database stored on the Web server.
  • Object Oriented Database Systems
In the middle of 1980s, it had become clear that there were several fields where relational databases were not applicable, due to the types of data involved. These included medicine, multimedia and high-energy physics, all of which needed more flexibility in how their data was represented and accessed. This let to research being started in object-oriented databases where users could define their own methods of access to data and how it was represented and manipulated. In the start of 1990s, two systems had appeared: the Object-Oriented DBMS (OODMBS) and the object-relational database management system (ORDBMS). However, unlike previous models, the actual composition of these models are not clear. This evolution represents third generation database management system.