Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
8 user(s) are online (8 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

Associative Model of Data

The Associative Model of Data is a data model which, it is claimed, offers numerous advantages over the current industry-leading relational database technology used in the largest percentage of modern Database systems.

Other data models, such as the relational model and the object data model are record-based. Record-based models involve encompassing attributes about a thing, such as a car in a record structure (where attributes might be registration, colour, make, model, etc).

In the associative model, everything which has discrete independent existence is modelled as an entity, and relationships between them are modelled as associations. The granularity at which data is represented is similar to schemes presented by Chen (Entity-relationship model); Bracchi, Paolini and Pelagatti (Binary Relations); and Senko (The Entity Set Model).

A number of claims made about the model by Simon Williams, in his book The Associative Model of Data, distinguish the associative model from more traditional models.

=Brief Introduction=

In an associative database management system, data and metadata (data about data) are stored as two types of things:

  • Items, each of which has a unique identifier and a name.
  • Links, each of which has a unique identifier, together with the unique identifiers of three other things, that represent the source, verb and target of a fact that is recorded about the source in the database. Each of the three things identified by the source, verb and target may each be either a link or an item.
  • Here s how the associative model would use these two structures to store the piece of information Flight BA1234 arrived at London Heathrow on 12-Dec-05 at 10:25am . There are seven items: the four nouns Flight BA1234 , London Heathrow , 12-Dec-05 and 10:25am , and the three verbs arrived at , on and at . We need three links to store the data. They are:

    ::Flight BA1234 arrived at Heathrow Airport ::... on 12-Aug-05 :::... at 10:25am

    The first link has Flight BA1234 as its source, arrived at as its verb and Heathrow Airport as its target. The second link has the first link as its source, on as its verb and the item 12-Aug-05 as its target. (A link that begins with an ellipsis ... has the previous link as its source.) The third link has the second link as its source, at as its verb and 10:25am as its target.

    Here s an alternative way to write the same thing using parentheses: :((Flight BA1234 arrived at Heathrow Airport) on 12-Aug-05) at 10:25am An associative database may be regarded as comprising two tables: one for items and one for links. Each item and each link has a meaningless number (called a surrogate) as an identifier:

     

    = External Links =

    [http://www.lazysoft.com/resources_downloads.htm The Associative Model of Data By Simon Williams]