HOME

TheInfoList



OR:

The ANSI-SPARC Architecture (
American National Standards Institute The American National Standards Institute (ANSI ) is a private non-profit organization that oversees the development of voluntary consensus standards for products, services, processes, systems, and personnel in the United States. The organi ...
, Standards Planning And Requirements Committee), is an abstract design standard for a
database management system In computing, a database is an organized collection of data stored and accessed electronically. Small databases can be stored on a file system, while large databases are hosted on computer clusters or cloud storage. The design of databases span ...
(DBMS), first proposed in 1975.ANSI/X3/SPARC Study Group on Data Base Management Systems: (1975), ''Interim Report. FDT'', ACM SIGMOD bulletin. Volume 7, No. 2 The ANSI-SPARC model however never became all formal standard. No mainstream DBMS systems are fully based on it (they tend not to exhibit full physical independence or to prevent direct user access to the conceptual level), but the idea of logical data independence is widely adopted.


Three-level architecture

The objective of the three-level architecture is to separate the user's view: *It allows independent customized user views: Each user should be able to access the same data, but have a different customized view of the data. These should be independent: changes to one view should not affect others. *It hides the physical storage details from users: Users should not have to deal with physical database storage details. * The database administrator should be able to change the database storage structures without affecting the users’ views. * The internal structure of the database should be unaffected by changes to the physical aspects of the storage: For example, a changeover to a new disk. The three levels are: *External Level (User Views): A user's view of the database describes a part of the database that is relevant to a particular user. It excludes irrelevant data as well as data which the user is not authorised to access. *Conceptual Level: The conceptual level is a way of describing what data is stored within the whole database and how the data is inter-related. The conceptual level does not specify how the data is physically stored. Some important facts about this level are: # DBA works at this level. # Describes the structure of all users. # Only DBA can define this level. # Global view of database. # Independent of hardware and software. *Internal Level: The internal level involves how the database is physically represented on the computer system. It describes how the data is actually stored in the database and on the computer hardware. The Three Level Architecture has the aim of enabling users to access the same data but with a personalised view of it. The distancing of the internal level from the external level means that users do not need to know how the data is physically stored in the database. This level separation also allows the Database Administrator (DBA) to change the database storage structures without affecting the users' views.


Database schemas

There are three different types of schema corresponding to the three levels in the ANSI-SPARC architecture: * The ''external schemas'' describe the different external views of the data and there may be many external schemas for a given database. * The ''conceptual schema'' describes all the data items and relationships between them, together with integrity constraints (later). There is only one conceptual schema per database. * The ''internal schema'' at the lowest level contains definitions of the stored records, the methods of representation, the data fields, and indexes. There is only one internal schema per database. The overall description of a database is called the ''database schema''.


See also

*
Three schema approach The three-schema approach, or three-schema concept, in software engineering is an approach to building information systems and systems information management that originated in the 1970s. It proposes three different views in systems development, w ...
*
View model A view model or viewpoints framework in systems engineering, software engineering, and enterprise engineering is a framework which defines a coherent set of ''views'' to be used in the construction of a system architecture, software architecture, ...


References


Further reading

* {{DEFAULTSORT:Ansi-Sparc Architecture Database management systems