WO2004099941A2 - Method of recursive objects for representing hierarchies in relational database systems - Google Patents

Method of recursive objects for representing hierarchies in relational database systems Download PDF

Info

Publication number
WO2004099941A2
WO2004099941A2 PCT/US2004/000395 US2004000395W WO2004099941A2 WO 2004099941 A2 WO2004099941 A2 WO 2004099941A2 US 2004000395 W US2004000395 W US 2004000395W WO 2004099941 A2 WO2004099941 A2 WO 2004099941A2
Authority
WO
WIPO (PCT)
Prior art keywords
relation
aggregate
record
records
link
Prior art date
Application number
PCT/US2004/000395
Other languages
French (fr)
Other versions
WO2004099941A8 (en
WO2004099941A3 (en
Inventor
Robert Pecherer
Original Assignee
Robert Pecherer
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Robert Pecherer filed Critical Robert Pecherer
Priority to PCT/US2004/000395 priority Critical patent/WO2004099941A2/en
Publication of WO2004099941A2 publication Critical patent/WO2004099941A2/en
Publication of WO2004099941A8 publication Critical patent/WO2004099941A8/en
Publication of WO2004099941A3 publication Critical patent/WO2004099941A3/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/28Databases characterised by their database models, e.g. relational or object models
    • G06F16/284Relational databases
    • G06F16/288Entity relationship models

Definitions

  • the present invention relates generally to computer database systems and particularly to relational database systems and methods for storing and retrieving hierarchical data structures.
  • a DataBase is a collection of stored operational data used by the application systems of some particular enterprise.
  • DBMS DataBase Management System
  • a DataBase Management System is computer software that provides secure, reliable, shared access to databases whose integrity is assured via transaction processing and mechanisms for backup and recovery of databases in the presence of accidental or intentional disruption.
  • database has become widely used and in many cases associated with any collection of data, organized or not.
  • dataBase the term written as "DataBase” to distinguish between imprecise notions of a database as any collection of data and a DataBase as a collection of data with an organization that reflects an operational model for the applications which use it.
  • the more formal notion will be regarded as consistent with usage by persons skilled in the pertinent art of database design and applications development.
  • the interactive DBMS user or programmer of DBMS applications interacts with the DBMS through a logical data model. That model represents an organization of all data into structured records, structured records into collections, and defined relationships between and among the records collections.
  • the DBMS maintains a single, unified physical model of data storage and maps actions on one or more logical data models to this underlying physical model.
  • the Prior Art includes DBMSs which support logical data models of at least four types: Hierarchical, Network, Relational and Object-Oriented.
  • the building block of the Hierarchical Data Model is a two level one-to- many hierarchy between one parent record of a parent record class P and zero or more child records of a child record class C.
  • a child record in a two level P-C hierarchy may be the parent record in another two level C-G hierarchy with parent class C and child class G.
  • the composition of these two level hierarchies is a three level hierarchy over the classes P, C and G.
  • hierarchies of any number of levels may be defined and populated with data. For example, a hierarchy over the classes State, County, Municipality, District, Street and Address could be used to create a six level hierarchy over every addressable building in the United States.
  • Hierarchical DataBase Management Systems implement the Hierarchical Data Model via languages for defining and populating logical hierarchies and for logically navigating over hierarchies to retrieve, modify and delete existing records.
  • IBM's IMS one of the first commercial DBMS products conforms to a Hierarchical Data Model.
  • the Network Model is similar to the Hierarchical Model, but uses the equivalent construction of a Set [CODASYL, 1969, 1971] to represent the simplest one-to-many relationship with Set Owner and Set Member(s) in the roles of hierarchical parent and child(ren).
  • a DBMS based on the Network Model provides language constructs for defining, populating and navigating over these Sets.
  • the commercial product ADABAS is based on the Network Model.
  • the Relational Model presents an entirely different logical representation as a collection of relational tables, also called relations.
  • a relation is a collection of related objects, each object represented by one record (row) of a relation (table). In relational terminology, the terms relation and table are used interchangeably.
  • Relational DataBases are more restricted in their specification and use than tables.
  • the rows of a relational table are referred to as tuples, rows or records and represent objects.
  • Relational DBMS Relational DBMS
  • Queries are expressed in a query language.
  • the most popular and standardized for the Relational Model is Structured Query Language, or SQL.
  • An SQL query defines a response relation in terms one or more relations in the Relational DataBase.
  • the RDBMS treats the query as a request and materializes the response relation by accessing the physical storage of the referenced relations.
  • an SQL query defines a relation and a RDBMS materializes the defined relation.
  • An RDMBS typically provides both an interactive end user interface and a programmatic (or "call") interface. The interactive interface simply materializes all response records.
  • the call interface also includes programming language functions for navigating backwards and forward through the set of response records. Note that individual relations act as containers, and that relationships between these containers are not explicitly represented.
  • ODBS Object-Oriented DataBase Management Systems
  • OODBMS vendors implement an Object-Oriented data model using an RDBMS, thus offering the best of both worlds: Efficient software development against an OO logical model and the reliability and flexibility of the relational model for database management and preservation of these valuable assets.
  • the value of large data collections can almost always be enhanced through use of a DBMS, and the Relational DBMS is the overwhelming choice for business, science and engineering.
  • Many data management applications are well matched to the tabular view of data provided by the relational model of data provided by an RDBMS. But many others are far easier to approach when the data can be organized hierarchically.
  • RDBMSs are widely available and provide such high levels of security and reliability, several innovators have attempted to develop techniques for representing hierarchies and other related data structures using Relational DataBases and the SQL query language.
  • the Prior Art for such techniques includes the following:
  • Simonetti [US Patent 5,295,261, 1994] describes a "Hybrid database structure linking navigational fields having a hierarchical database structure to informational fields having a relational database structure".
  • that portion representing the hierarchical database structure is contained in a topological map stored as a file external to the relational database.
  • Jagadish [Jagadish,1989] describes a method for "Incorporating Hierarchy in a Relational Model of Data," but his method requires extensions to the SQL query language and a new data type.
  • Millett [Millett, 2001] provides two methods for "Accommodating Hierarchies in Relational Databases".
  • the first involves the use of a "navigation bridge table” relation that stores all pairwise parent-child links of a hierarchy.
  • the second (Denormalized Unit Table approach) is suitable only where the maximum number of levels in the hierarchy is known a priori.
  • a data record in a relation that participates in a hierarchy includes pointers to each of its ancestors.
  • Limitation 1 Use of non-SQL language extensions, or non-native data types, or both. Modifications to SQL or addition of non-trivial data types is not permitted by commercial products. This is because non-SQL language extensions imply the addition of internal search mechanisms, and, non-native data types cannot be correctly interpreted by a standard RDBMS. Goldberg introduces the "REFERENCE" data type and the EXPAND and DEPTH ⁇ N> language constructs to SQL. Sacks employs composite keys and a front end interface to interpret them. Applications which conform to SQL standards are portable; applications which introduce language extensions and/or non-native data types are not. This limitation eliminates one of the primary advantages for using a standard RDBMS to implement hierarchies. Limitation 2: Use of external data structures to represent the hietanchies.
  • RDBMSs only support relations as containers for data records. There are no other storage structures.
  • external data structures typically in files
  • Simonetti uses an external topological map to represent the hierarchical structure.
  • Limitations 3 Prohibition against arbitrary hierarchies limits applicability.
  • the Millett Denormalized Unit Table Approach requires a priori knowledge of the maximum number of levels in a hierarchy.
  • the Millett Path Table Approach can only represent a single hierarchy. For multiple hierarchies, each requires a separate Path Table. In applications where entire hierarchies are manipulated (combined or deleted for example), there are no obvious methods for treating subhierarchies as attachable/detachable units. Any technique in which parent- and/or child pointers are included in data relations implicitly limits the number of hierarchies in which the records of that relation can participate and reduces the generality of the approach.
  • Limitation 4 The Relational representation of records in the hierarchies is proprietary. That is, it is subject to correct interpretation only by specialized interface software. As a consequence, such data cannot also be accessed and correctly interpreted by the interactive user or programmed application via the conventional SQL interface to the RDBMS.
  • the Sacks method suffers from this limitation.
  • Limitation 5 The implementation is too complex for all but the most skilled practitioners of relational database art. Simonetti and Sacks both require extensive front-end development. The Miller/Path approach involves the INNER JOIN operator which is not understood by most SQL programmers. In contrast, the current invention is entirely implemented within a standard Relational DataBase Management System with no language extensions to the standard SQL query language, no new data types and no specialized front end interface.
  • the current invention is portable across all SQL compliant RDBMSs.
  • the current invention employs no external data structures or files, so that all benefits of the DBMS approach are obtained. This is in contrast to Simonetti, who uses an external topological map.
  • Simonetti who uses an external topological map.
  • a record may participate multiple times as a child in a hierarchy and at any number of levels within any hierarchy. This is in contrast to Millett who limits the number of levels in the hierarchy or the number of hierarchies.
  • the current invention permits relational access to the underlying data: All relational data records participating in hierarchies are accessible via the standard SQL relational query mechanism. This is in contrast to Sacks, where a Hierarchical DataBase may coexist with a Relational DataBase since both are supported by a Relational DataBase Management System, but access to the Relational DataBase via Hierarchical views or access to the Hierarchical DataBase via Relational views is not possible.
  • the Hierarchical views provided by the current invention may be introduced without disruption to or reprogramming of existing applications. And finally, the present invention implementation is simple, straightforward and robust.
  • the object of the present invention is to provide a method for representing hierarchical organizations of data in a Relational DataBase.
  • the method is called the Method of Recursive Objects.
  • the invention consists of a main embodiment and three alternate embodiments, all of which are schema designs using the Relational Model of Data.
  • Each embodiment provides for the construction of a building block unit called an aggregate to construct a two level hierarchy.
  • One aggregate links one parent record to zero or more child records.
  • the aggregates may be combined and composed to produce a three level hierarchy.
  • hierarchies of any desired level may be constructed.
  • the implementation can be contained entirely within a Relational DataBase and completely managed by an industry standard SQL Relational DataBase Management System.
  • the present invention employs the Relational Model of Data as expressed by the current standard SQL query language without extensions or modifications, and without introducing any new data types. Implementations are portable across all industry standard SQL Relational DataBase Management Systems. It is a feature of the present invention that the implementation imposes no restrictions on the number of hierarchies, on the number of aggregates a database record may participate in, the number of times a database record may occur as a child in an aggregate, or the co-occurrence of a database record as both parent record and child record in an aggregate.
  • the present invention may be implemented in an industry standard SQL Relational DataBase Management System without the use of external files.
  • the advantage this confers is that all data involved in implementations of the present inventions are managed by the Relational DataBase Management System and therefore gain all the benefits provided by the DataBase Management System. That typically will include security, reliability, shared access, privacy, transaction processing, backup and recovery.
  • the present invention imposes no limits on the hierarchies which may be defined. In its four embodiments, it may be applied to the representation of hierarchies over multiple relations in a single Relational DataBase. It may be applied to the representation of directed graphs over a single relation in a Relational DataBase.
  • the present invention may be used to construct new, Hierarchical DataBases. Unlike the Prior Art, the present invention may also be used in the construction of hierarchical views over existing Relational DataBases requiring only unintrusive read access to the underlying relations. As a consequence and advantage, existing applications against those Relational DataBases can continue to operate without modification. New applications using the Hierarchical Views may be created with absolutely no impact on applications already in operation against the original, Relational DataBase. The present invention is simple and robust.
  • Figure 1 shows a four relation schema diagram for representing aggregates (two hierarchies) according to the Main Embodiment.
  • Figure 2 provides the SQL statements to define the four relations of the Main Embodiment.
  • Figure 3 provides SQL statements to define four relations for Example 1 , an aggregate (two level hierarchy) linking Teams to Players.
  • Figure 4 shows four relational tables with sample data for Example 1 .
  • Figure 5 shows a graphical depiction of the two level Team-Player hierarchy of Example 1 using the data of Figure 4.
  • Figure 6 provides SQL statements to define three relations for Example 2. When added to the four relations of Example 1 , a three level League-Team- Player hierarchy is created.
  • Figure 7 shows three relational tables with sample data for Example 2.
  • Figure 8 shows a graphical depiction of the three level hierarchy of
  • Figure 9 shows Alternate Embodiment #1 , a special case of the Main Embodiment in which the ParentObject relation and ChildObject relation are the same.
  • Figure 10 provides SQL statements to define the three relations of
  • Figure 1 1 provides SQL statements to define three relations for Example 3 according to Alternate Embodiment #1 .
  • Figure 12 shows sample data for Example 3 in tabular form.
  • Figure 13 shows the directed graph equivalent for Example 3 using the sample data from Figure 12.
  • Figure 14 shows a schema diagram for Alternate Embodiment #2.
  • Figure 15 provides SQL statements to define the six relations in Alternate Embodiment #2.
  • Figure 16 shows a schema diagram for Alternate Embodiment #2 without the LinkType relation.
  • Figure 17 shows a schema diagram for Alternate Embodiment #2 without the AggregateType relation.
  • Figure 18 shows a schema diagram for Alternate Embodiment #2 without both the LinkType and AggregateType relations.
  • Figure 19 shows a schema diagram for Alternate Embodiment #3.
  • the present invention is called the Method of Recursive Objects and consists of schema designs for linking one record in a parent record class to zero or more records in a child record class into a two level hierarchy called an aggregate.
  • an aggregate When a child record in one aggregate is the parent record in a second aggregate, the combination of the two aggregates is interpreted as a three level hierarchy.
  • hierarchies of any number of levels over any combination of object record classes may be defined.
  • the Method of Recursive Objects represents arbitrary hierarchies and related data organization structures using an industry standard SQL Relational DataBase to implement the four embodiments of an aggregate.
  • the Main Embodiment of the Method of Recursive Objects is the four relation schema design illustrated in Figure 1. These schema diagrams and the implied organization of data records within relations will be familiar to persons of ordinary skill in the pertinent art of Relational DataBase design, and in the development of software applications involving access to Relational DataBases. Such persons will recognize that the schema diagrams contained herein depict relations and relationships between relations, and that relation names and field names are chosen for clarity of exposition.
  • the schema designs of the Method of Recursive Objects are independent of the choice of relation and field names made by all those who would implement the Method.
  • Figure 1 defines a schema organization for the Main Embodiment consisting of four relations:
  • the ParentObject relation contains records which may fill the role of parent record in an aggregate.
  • the ChildObject relation contains records which may fill the role of child record(s) in an aggregate.
  • the Aggregate relation contains aggregate records each of which represents an aggregate. An aggregate record points to a single parent record in ParentObject relation.
  • the Link relation completes the construction of aggregates.
  • the Link relation contains link records, each with two pointers, one pointing to the aggregate in the Aggregate relation and the other pointing to a child record in the ChildObject relation. Notice that there are no pointers from the Aggregate relation to the ChildObject relation, nor from the Link relation to the ParentObject relation.
  • FIG. 1 This separation of pointers into individual relations is an essential feature of the Method of Recursive Objects and differentiates the Method of Recursive Objects from the Prior Art.
  • the Figure 1 schema diagram shows four relations and those pointers that are essential to the Method. That is, the ParentObject, ChildObject, Aggregate and Link relations, and the pointer fields from Aggregate to ParentObject, from Link to Aggregate, and from Link to ChildObject.
  • Figure 2 provides prototype SQL statements to define the four relations for the Main Embodiment schema diagram of Figure 1. Only required fields and pointers in the Aggregate and Link relations are shown. A person skilled in the pertinent art would appreciate that additional fields may be added to the schemas. For example, fields could be added to the ParentObject and ChildObject record schemas to describe and characterize the objects each represents. And that an aggregate name field may be added to the Aggregate relation schema for clarity. And that a primary key link id field may be added to the link relation schema for performance. None of these additional fields changes the fundamental spirit of the Method of Recursive Objects.
  • Example 1 illustrates aggregate definition and includes added fields.
  • Example 1 Construction of Team-Player aggregates. Let the Team relation represent teams (or team objects) acting in the role of the ParentObject relation. Let the Player relation represent players (or player objects) acting in the role of the ChildObject relation.
  • the Team relation schema includes fields for the City in which the team plays and the team's mascot.
  • the Player relation includes field values for the player's date and place of birth.
  • Figure 3 shows the SQL statements to define the four relations for Example 1 including these additional fields.
  • Figure 4 shows sample data for Example 1 in tabular form.
  • Figure 5 shows a graphical representation of the two level hierarchy of Example 1. Note in Figures 4 and 5 that a child Object may be a child in more than one aggregate.
  • Example 1 contains three hierarchies corresponding to the three aggregates, Mudhens Roster, Mighty Ducks Roster and All Stars.
  • Example 2 To extend the aggregates (two level hierarchies) of Example 1 into a three level hierarchy, a new relation (League) is added plus a new Aggregate relation (LeagueTeamAggregate) and a new Link relation (LeagueTeamLink).
  • Figure 6 shows the SQL statements to define the additional relations.
  • Figure 7 shows additional sample data for Example 2 in tabular form.
  • Figure 8 shows the three level hierarchy of Example 2 in graphical form. Note the following features of the Main Embodiment:
  • a parent record may be the parent record in any number of aggregates.
  • a child record may fulfill the role of child in any number of aggregates.
  • a child record may fulfill the role of child zero or more times within an aggregate.
  • the implementer may choose to prevent multiple occurrences of a child record in an aggregate by software, through the use of unique keys in the schema definition, software or some other mechanism.
  • Hierarchical structures are a subset of lattice structures. Persons skilled in the pertinent art could use the Method of Recursive Objects to implement lattices, or, could enforce a hierarchical structure through detection and prohibition via software, database constraints or some other mechanism of closed loops or cycles.
  • Embodiment #1 of the Method of Recursive Objects is the three relation schema design illustrated in Figure 9.
  • Figure 9 defines a schema organization consisting of three relations:
  • the Object relation contains records which may fill the role of parent and child records in an aggregate.
  • the Aggregate relation contains aggregate records, each of which represents one aggregate and contains a pointer to the parent record in the Object relation.
  • the Link relation completes the construction.
  • the Link relation contains Link records with two pointers, one which points to an aggregate record in the Aggregate relation and the other which points to a child record in the Object relation.
  • Alternate Embodiment #1 differs from the Main Embodiment only insofar as the ParentObject relation and ChildObject relation are the single relation specified as Object in Figure 9 and defined in Figure 10. SQL statements to define all three relations for Alternate Embodiment #1 are given in Figure 10. Alternate Embodiment #1 represents a specialization of the Main Embodiment in which all parent and child records are drawn from a single class, the Object relation.
  • Example 3 A digraph representation of an Organization Chart. Let the set of record objects be the Employees of Company X. Company X is organized into Groups, each of which has one Employee leader (parent role) and zero or more Employee members (child role).
  • Figure 1 1 shows the SQL statements to define the three relations according to Alternate Embodiment #1.
  • Figure 12 shows sample data for Example 3 with 9 Employees organized into five groups.
  • Figure 13 provides a graphical depiction of the Organization Chart of Example 3. Many applications employ directed graphs as data structure. With Alternate
  • Embodiment #1 it is possible to completely represent directed graphs over a single relation using a Relational DataBase Management System. Unlike the Prior Art, the Method of Recursive Objects is entirely implemented within a RDBMS without the use of any external data or files. Note the following features of Alternate Embodiment #1 :
  • a record may be the parent record in any number of aggregates and a record may have multiple occurrences as a child in an aggregate.
  • the resulting structure will represent a digraph only if records are restricted to being the parent record in at most one aggregate and if records are restricted to at most one occurrence as a child in any aggregate and if records are restricted so that an aggregate may not have the same record as both parent and child.
  • Alternate Embodiment #2 of the Method of Recursive Objects is the six relation schema design illustrated in Figure 14.
  • Alternate Embodiment #2 represents a variation on Alternate Embodiment #1 in which the Method of Recursive Objects is used to create arbitrary hierarchies over records drawn from a single Object relation whose objects (i.e., records, rows, tuples) are partitioned into object types enumerated in the ObjectType relation. Each object record in the Object relation specifies its object type using a pointer to an object type record in the ObjectType relation.
  • Alternate Embodiment #2 partitions aggregates into typed classes according to an enumerated set of aggregate types in the AggregateType relation.and partitions Links into typed classes according to an enumerated set of link types in the LinkType relation.
  • Alternative Embodiment #2 is similar to the Main Embodiment in that it can represent arbitrary hierarchies over typed classes, but achieves this using enumerated types for objects. This is in contrast to the Main Embodiment where membership in different database relations determines membership in either the parent class (ParentObject relation) or the child class (ChildObject relation) in Figure 1.
  • Figure 14 defines a schema organization consisting of six relations for Alternate Embodiment #2. In Figure 14:
  • Each record of the Object relation points to an object type in the ObjectType relation;
  • Each record of the Link relation points to a link type in the LinkType relation;
  • Each record of the Aggregate relation points to an aggregate type in the AggregateType relation
  • Each aggregate type record in the AggregateType relation specifies (points to) one parent object type record in the ObjectType relation, one child object type record in the ObjectType relation, and one link type record in the LinkType relation.
  • An aggregate (record) which points to this aggregate type (record) must connect parent and child objects (records) of the prescribed types using a link (record) of the prescribed type. This is enforced by integrity constraints or software or some other mechanism.
  • Alternate Embodiment #2 provides a powerful means for constructing arbitrary hierarchies over nonhomogeneous objects using only six relations. It is often possible to superimpose hierarchies over an existing Object relation where the Object relation schema includes a field value that partitions the set of
  • Alternate Embodiment #2 with the LinkType relation and pointer from Link to LinkType omitted.
  • Figure 17 shows Alternate Embodiment #2 with the AggregateType relation and pointer from Aggregate to AggregateType omitted.
  • Figure 18 shows Alternate Embodiment #2 with both the LinkType and AggregateType relations omitted, as well as omitting the pointer from Link to LinkType and the pointer from Aggregate to AggregateType.
  • Alternate Embodiment #3 of the Method of Recursive Objects is the seven relation schema organization illustrated in Figure 19.
  • Alternate Embodiment #3 incorporates the structure of the Main Embodiment with the type mechanism of Alternate Embodiment #2.
  • the left side of Figure 19 is identical to the schema of Figure 1 (Main Embodiment).
  • the right side of Figure 19 is analogous to the typing mechanism on the right side of Figure 14, the schema design for Alternate Embodiment #2.
  • an aggregate points to an aggregate type record in the AggregateType relation and a Link points to a link type record in the LinkType relation.
  • the aggregate type of the aggregate specifies the link type, so that only link records of the correct type may be used.
  • the ParentObject relation and the ChildObject relation are not required to exist in the same Relational DataBase. Instead: They may be any relations in any Relational DataBases managed by any Relational Server on a network. The only requirement is that they be accessable with read permission.
  • the network may be a local area net (LAN), or it may be a wide area net (WAN) such as the Internet.
  • the ObjectTypeDescriptor of Figure 19 serves as a type classification mechanism just as ObjectType in Alternate Embodiment #2, but neither the ParentObject relation nor the ChildObject relation in Figure 19 contains any pointers to object type descriptor records in the ObjectTypeDescriptor relation. Instead, the ObjectTypeDescriptor records provide the information necessary to retrieve a record from an Object relation (Parent, or Child) by specifying the network address of the host Relational Server, the name and owner of the Relational DataBase, the name of the relation, and fields of the relation (ParentObject or ChildObject) used to implement the pointers from the aggregate and link records.
  • Object relation Parent, or Child
  • Alternate Embodiment #3 does not require pointers from the ParentObject or ChildObject relations, the Method of Recursive Objects can be implemented over all relations in all Relational DataBases managed by all Relational Servers in a network without modification to any of their schemas and without data modification to any of the participating records. (That is, with only read access permission.) Alternate Embodiment #3 therefore allows for the construction of arbitrary hierarchies across all relations residing on all network Relational Servers.
  • the Prior Art contains no known method for constructing equivalent structures using a Relational DataBase and Relational DataBase Management Systems as the implementing apparatus.
  • the present invention provides a mechanism for implementing the Method of Recursive Objects for the representation of several variations of arbitrary hierarchies. These include hierarchies over classes defined by relations, digraphs over the records of any single relation, hierarchies over records of any single relation partitioned by enumerated types, and hierarchies over classes defined by relations stored on any Relational Server in a network.
  • the Aggregate relation and Link relation combine to provide aggregates, which are the building blocks for hierarchies.
  • the child records in a hierarchy are unordered.
  • a retrieval order can be imposed on the child records by providing a suitable field in the relational schema of the Link relation. Examples include a datetime field for time ordering or an integer or floating point field for numeric ordering. The presence of such fields does not alter the spirit and scope of the invention.
  • the essential new aspect of the present invention is the aggregate and the four embodiments of an aggregate using only relations in a Relational DataBase. It will be understood by those skilled in the pertinent art that the relation names and fields names may be chosen by the implementer and new fields added without departing from the spirit and scope of the invention.

Abstract

A method is described for creating and managing a two-level hierarchical data structure. Parent and child object relation tables, an aggregate relation table and a link relation table having records are created wherein each link relation record has an aggregate identity field and a child object identity field and the aggregate relation records have a parent object identity field pointing to a parent object relation record. The link relation records have an aggregate identity field pointing to an aggregate relation record and to a child object relation record whereby zero or more child object relation records are linked to a parent object record relation record.

Description

METHOD OF RECURSIVE OBJECTS FOR REPRESENTING HIERARCHIES IN RELATIONAL DATABASE SYSTEMS
RELATED APPLICATIONS
This is a utility application based upon provisional application serial number 60/379,088, filed on May 9, 2002, entitled "Method Of Recursive Objects For Representing Hierarchies In Relational Database Systems." Applicant hereby claims for this utility application the benefit of the filing date of the provisional application whose entire disclosure is incorporated by reference herein. SPECIFICATION
BACKGROUND
1. FIELD OF INVENTION
The present invention relates generally to computer database systems and particularly to relational database systems and methods for storing and retrieving hierarchical data structures.
2. DESCRIPTION OF PRIOR ART
A DataBase is a collection of stored operational data used by the application systems of some particular enterprise. [Date, 1986] A DataBase Management System (DBMS) is computer software that provides secure, reliable, shared access to databases whose integrity is assured via transaction processing and mechanisms for backup and recovery of databases in the presence of accidental or intentional disruption.
Note: The term "database" has become widely used and in many cases associated with any collection of data, organized or not. In this application, I use the term written as "DataBase" to distinguish between imprecise notions of a database as any collection of data and a DataBase as a collection of data with an organization that reflects an operational model for the applications which use it. The more formal notion will be regarded as consistent with usage by persons skilled in the pertinent art of database design and applications development.
As is well understood in the art, the interactive DBMS user or programmer of DBMS applications interacts with the DBMS through a logical data model. That model represents an organization of all data into structured records, structured records into collections, and defined relationships between and among the records collections. The DBMS maintains a single, unified physical model of data storage and maps actions on one or more logical data models to this underlying physical model.
The Prior Art includes DBMSs which support logical data models of at least four types: Hierarchical, Network, Relational and Object-Oriented.
The building block of the Hierarchical Data Model is a two level one-to- many hierarchy between one parent record of a parent record class P and zero or more child records of a child record class C. A child record in a two level P-C hierarchy may be the parent record in another two level C-G hierarchy with parent class C and child class G. When viewed in this way, the composition of these two level hierarchies is a three level hierarchy over the classes P, C and G. By extension, hierarchies of any number of levels may be defined and populated with data. For example, a hierarchy over the classes State, County, Municipality, District, Street and Address could be used to create a six level hierarchy over every addressable building in the United States. Hierarchical DataBase Management Systems (HDBMS) implement the Hierarchical Data Model via languages for defining and populating logical hierarchies and for logically navigating over hierarchies to retrieve, modify and delete existing records. IBM's IMS, one of the first commercial DBMS products conforms to a Hierarchical Data Model.
The Network Model is similar to the Hierarchical Model, but uses the equivalent construction of a Set [CODASYL, 1969, 1971] to represent the simplest one-to-many relationship with Set Owner and Set Member(s) in the roles of hierarchical parent and child(ren). A DBMS based on the Network Model provides language constructs for defining, populating and navigating over these Sets. The commercial product ADABAS is based on the Network Model. The Relational Model presents an entirely different logical representation as a collection of relational tables, also called relations. A relation is a collection of related objects, each object represented by one record (row) of a relation (table). In relational terminology, the terms relation and table are used interchangeably. However the definition of a relation is derived from a more formal, mathematical characterization, and relations in Relational DataBases are more restricted in their specification and use than tables. The rows of a relational table are referred to as tuples, rows or records and represent objects. Unlike the hierarchical and network models, relationships between records in different relations are not explicitly represented, but are materialized by the Relational DBMS (RDBMS) in response to requests for service called queries. Queries are expressed in a query language. The most popular and standardized for the Relational Model is Structured Query Language, or SQL. An SQL query defines a response relation in terms one or more relations in the Relational DataBase. The RDBMS treats the query as a request and materializes the response relation by accessing the physical storage of the referenced relations. In effect, an SQL query defines a relation and a RDBMS materializes the defined relation. An RDMBS typically provides both an interactive end user interface and a programmatic (or "call") interface. The interactive interface simply materializes all response records. The call interface also includes programming language functions for navigating backwards and forward through the set of response records. Note that individual relations act as containers, and that relationships between these containers are not explicitly represented.
Object-Oriented (OO) DataBase Management Systems (OODBS) support the same generic modeling capability that characterizes and has popularized Object-Oriented Programming Languages like ADA [Booch,1983] and C++ [Lippman, 1991 ]. From the perspective of an application written in an OO programming language, an OODB (Object-Oriented DataBase) provides storage for data that are activated (retrieved) as needed and passivated (stored back to the DataBase) when no longer, needed. Navigation is implicit in the relationships between and among object types, so that actual OODB access requires very little additional skill beyond the ability to program in these languages. This natural fit between Object-Oriented Programming Languages and Object-Oriented DataBase Management Systems makes the latter especially valuable in environments characterized by a heavy software development workload and the requirement of large volumes of shared, persistent data.
Historically, the first DBMSs commercially available were based on the Hierarchical and Network models. These products were introduced in the late 1950s and early 1960s. The Relational Model of Data was introduced in a seminal paper in 1970 by E.F.Codd [Codd,1970]. The Relational approach to databases touched off a revolution in database research and development. The first experimental RDBMSs were developed in the middle 1970's: IBM's System R [Astrahan,1976] and INGRES [Stonebraker, 1976]. By the late 1970's, commercial RDBMS products like Oracle, Sybase and IBM's DB2 became available. Sales growth for RDBMSs exploded and relational technology became the dominant technology in new business, scientific and engineering applications. Hierarchical and Network DBMSs continued to be used, though mainly in legacy systems.
In the mid 1980's, growth in the popularity of Object-Oriented Programming Languages for applications development leveraged growth in the Object-Oriented segment of the DBMS market. It appeared that OODBMS technology might displace RDBMS technology just as RDBMS technology had supplanted the earlier hierarchical and network technologies. That did not in fact occur. For enterprises that have developed large DataBases and devote major expense to applications development, Object-Oriented Programming Languages have proven to be more cost effective than earlier software development approaches, and many of these organization continue to use OODBMSs. However, for reliable data management, RDBMSs and the relational approach consistently dominate the market for commercial DBMSs. Some OODBMS vendors implement an Object-Oriented data model using an RDBMS, thus offering the best of both worlds: Efficient software development against an OO logical model and the reliability and flexibility of the relational model for database management and preservation of these valuable assets. The value of large data collections can almost always be enhanced through use of a DBMS, and the Relational DBMS is the overwhelming choice for business, science and engineering. Many data management applications are well matched to the tabular view of data provided by the relational model of data provided by an RDBMS. But many others are far easier to approach when the data can be organized hierarchically. Because RDBMSs are widely available and provide such high levels of security and reliability, several innovators have attempted to develop techniques for representing hierarchies and other related data structures using Relational DataBases and the SQL query language. The Prior Art for such techniques includes the following:
Goldberg et. Al. [US Patent 5,201 ,046, 1993] describe a "method for storing, retrieving and modifying directed graph data structures" using an RDBMS. A hierarchy is a restricted case of a directed graph, so that a directed graph technique could also be used to represent hierarchies in a RDB. The approach extends the SQL query language with two new languages constructs ("EXPAND" and "DEPTH <N>") and a new data type ("REFERENCE") to represent a pointer from a record in one relation to a record in a second (possibly the same) relation.
Simonetti [US Patent 5,295,261, 1994] describes a "Hybrid database structure linking navigational fields having a hierarchical database structure to informational fields having a relational database structure". In this method, that portion representing the hierarchical database structure is contained in a topological map stored as a file external to the relational database.
Sacks [US Patent 5,974,407, 1999] describes a "Method and apparatus for implementing a hierarchical database management system (HDBMS) using a relational database management system (RDBMS) as the implementing apparatus". The method employs the Relational DataBase as a virtual (mechanical) means for implementing a Hierarchical DataBase Management System (HDBMS). The schema of the individual hierarchical tables, the permissible parent-child relationships in the Hierarchical DataBase, the definitions of subset views and the actual representation of an individual hierarchy is captured in five relations. A sixth relation makes it possible to store multiple hierarchies in the same Hierarchical DataBase. Access to the underlying Relational DataBase Management Systems and other Relational DataBases are allowed, but the hierarchical data itself cannot be correctly interpreted via the SQL mechanism without the interface specified in the patent implemented in an appropriate programming language.
Jagadish [Jagadish,1989] describes a method for "Incorporating Hierarchy in a Relational Model of Data," but his method requires extensions to the SQL query language and a new data type.
Millett [Millett, 2001] provides two methods for "Accommodating Hierarchies in Relational Databases". The first (Path approach) involves the use of a "navigation bridge table" relation that stores all pairwise parent-child links of a hierarchy. The second (Denormalized Unit Table approach) is suitable only where the maximum number of levels in the hierarchy is known a priori. In this method, a data record in a relation that participates in a hierarchy includes pointers to each of its ancestors.
Finally, note the industry standard for the SQL query language, ANSI/ISO/IEC 9075-2-1999 [ISO/SQL, 1999]. The most recent update to this standard includes a "WITH RECURSIVE ORG" statement which defines an operation for retrieving the transitive closure of a directed graph over a hierarchy of relations and the computation of aggregate values over elements of that hierarchy. This standardized extension to the SQL query language indicates interest in representing directed graphs (digraphs) in Relational DataBases, but the feature is not widely available in commercial RDBMS products and is restricted to a style of hierarchical representation in which pointers to parents are stored within data records. Implicitly, this limits a record in a relation to participate only in as many hierarchies as the number of fields defined for that purpose. The reason for this limit is as in Millett, above: Because one record field is required for each hierarchy within which the record participates, the number of such hierarchies must be known when the schema is defined, before any records are inserted into the hierarchy.
All Prior Art techniques suffer from one or more of the following limitations:
Limitation 1 : Use of non-SQL language extensions, or non-native data types, or both. Modifications to SQL or addition of non-trivial data types is not permitted by commercial products. This is because non-SQL language extensions imply the addition of internal search mechanisms, and, non-native data types cannot be correctly interpreted by a standard RDBMS. Goldberg introduces the "REFERENCE" data type and the EXPAND and DEPTH <N> language constructs to SQL. Sacks employs composite keys and a front end interface to interpret them. Applications which conform to SQL standards are portable; applications which introduce language extensions and/or non-native data types are not. This limitation eliminates one of the primary advantages for using a standard RDBMS to implement hierarchies. Limitation 2: Use of external data structures to represent the hietanchies.
RDBMSs only support relations as containers for data records. There are no other storage structures. The use of external data structures (typically in files) implies that the security, protection, backup/recovery and overall integrity that the RDBMS provides for relations is not available. Simonetti uses an external topological map to represent the hierarchical structure.
Limitations 3: Prohibition against arbitrary hierarchies limits applicability. The Millett Denormalized Unit Table Approach requires a priori knowledge of the maximum number of levels in a hierarchy. The Millett Path Table Approach can only represent a single hierarchy. For multiple hierarchies, each requires a separate Path Table. In applications where entire hierarchies are manipulated (combined or deleted for example), there are no obvious methods for treating subhierarchies as attachable/detachable units. Any technique in which parent- and/or child pointers are included in data relations implicitly limits the number of hierarchies in which the records of that relation can participate and reduces the generality of the approach.
Limitation 4: The Relational representation of records in the hierarchies is proprietary. That is, it is subject to correct interpretation only by specialized interface software. As a consequence, such data cannot also be accessed and correctly interpreted by the interactive user or programmed application via the conventional SQL interface to the RDBMS. The Sacks method suffers from this limitation. Limitation 5: The implementation is too complex for all but the most skilled practitioners of relational database art. Simonetti and Sacks both require extensive front-end development. The Miller/Path approach involves the INNER JOIN operator which is not understood by most SQL programmers. In contrast, the current invention is entirely implemented within a standard Relational DataBase Management System with no language extensions to the standard SQL query language, no new data types and no specialized front end interface. Unlike Goldberg, Sacks and Jagadish, the current invention is portable across all SQL compliant RDBMSs. The current invention employs no external data structures or files, so that all benefits of the DBMS approach are obtained. This is in contrast to Simonetti, who uses an external topological map. In the current invention, there are no artificial limits on the numbers of hierarchies, the number of levels in a hierarchy, or the number of hierarchies in which a record in any relation may simultaneously participate. In addition, a record may participate multiple times as a child in a hierarchy and at any number of levels within any hierarchy. This is in contrast to Millett who limits the number of levels in the hierarchy or the number of hierarchies. The current invention permits relational access to the underlying data: All relational data records participating in hierarchies are accessible via the standard SQL relational query mechanism. This is in contrast to Sacks, where a Hierarchical DataBase may coexist with a Relational DataBase since both are supported by a Relational DataBase Management System, but access to the Relational DataBase via Hierarchical views or access to the Hierarchical DataBase via Relational views is not possible. In an applications environment that employs Relational DataBases, the Hierarchical views provided by the current invention may be introduced without disruption to or reprogramming of existing applications. And finally, the present invention implementation is simple, straightforward and robust.
2. REFERENCES CITED IN DESCRIPTION OF PRIOR ART [Astrahan,1976]
Astrahan, M.M., M.W. Blasgen, D.D. Chamberlin, K.P. Eswaran, J.N. Gray, P.P. Griffiths, W.F. King, R.A. Lorie, P.R. McJones, J.W. Mehl, G.R. Putzolu, I.L Traiger, B.W. Wade, V. Watson, "System R", ACM Transactions on Database
Systems (TODS), June 1976.
[Booch,1983]
Booch, Grady, "Software Engineering with Ada", Benjamin-Cummings Publishing Company, Inc., Menlo Park, CA, 1983.
[CODASYL.1969]
CODASYL Systems Committee, "A survey of generalized data base management systems," Technical Report, May 1969.
[CODASYL, 1971] CODASYL Systems Committee, "Feature analysis of generalized data base management systems," Technical Report, May 1971.
Codd,1970]
Codd, E.F., "A Relational Model of Data for Large Shared Data Banks,"
Communications of the ACM, vol. 13, no. 6, pp.377-387, June 1970. [Date, 1986]
Date, C.J., "An introduction to Database systems, 3rd Edition", Reading, MA,
Addison-Wesley, 1986.
[Jagadish, 1989]
Jagadish, H.V., "Incorporating hierarchy in a relational model of data", Proceeding of 1989 International SIGMOD Conference, pp.78-87, ACM, 1989.
[ISO/SQL.1999]
International Organization of Standardization (ISO), Database Language SQL,
ANSI/ISO/IEC 9075-2-1999
[Lippman, 1991] Lippman.S.B., "C++ Primer", Addison-Wesley, 1991
[Millet, 1999]
Millet, Ido, "Accommodating Hierarchies in Relational Databases", in
Developing quality complex database systems: Practices, techniques and technologies, Idea Group Publishing, Hershey, PA, USA, pp.194-209. [Stonebraker, 1976]
Stonebraker, M., "The Design and Implementation of Ingres," ACM
Transactions on Database Systems, September 1976. BRIEF SUMMARY OF THE INVENTION
The object of the present invention is to provide a method for representing hierarchical organizations of data in a Relational DataBase. The method is called the Method of Recursive Objects. The invention consists of a main embodiment and three alternate embodiments, all of which are schema designs using the Relational Model of Data. Each embodiment provides for the construction of a building block unit called an aggregate to construct a two level hierarchy. One aggregate links one parent record to zero or more child records. When the child record of one aggregate is the parent record of another aggregate, the aggregates may be combined and composed to produce a three level hierarchy. By extension, hierarchies of any desired level may be constructed.
It is a feature of the present invention that the implementation can be contained entirely within a Relational DataBase and completely managed by an industry standard SQL Relational DataBase Management System. The present invention employs the Relational Model of Data as expressed by the current standard SQL query language without extensions or modifications, and without introducing any new data types. Implementations are portable across all industry standard SQL Relational DataBase Management Systems. It is a feature of the present invention that the implementation imposes no restrictions on the number of hierarchies, on the number of aggregates a database record may participate in, the number of times a database record may occur as a child in an aggregate, or the co-occurrence of a database record as both parent record and child record in an aggregate. Unlike the Prior Art, the present invention may be implemented in an industry standard SQL Relational DataBase Management System without the use of external files. The advantage this confers is that all data involved in implementations of the present inventions are managed by the Relational DataBase Management System and therefore gain all the benefits provided by the DataBase Management System. That typically will include security, reliability, shared access, privacy, transaction processing, backup and recovery. Unlike the Prior Art, the present invention imposes no limits on the hierarchies which may be defined. In its four embodiments, it may be applied to the representation of hierarchies over multiple relations in a single Relational DataBase. It may be applied to the representation of directed graphs over a single relation in a Relational DataBase. It may be applied to the representation of arbitrary hierarchies of enumerated typed records. It may be applied to the representation of arbitrary hierarchies over data records in different Relational DataBase relations distributed over networks of Relational DBMS Servers. The advantage this confers is generality to a wide variety of applications.
Like the Prior Art, the present invention may be used to construct new, Hierarchical DataBases. Unlike the Prior Art, the present invention may also be used in the construction of hierarchical views over existing Relational DataBases requiring only unintrusive read access to the underlying relations. As a consequence and advantage, existing applications against those Relational DataBases can continue to operate without modification. New applications using the Hierarchical Views may be created with absolutely no impact on applications already in operation against the original, Relational DataBase. The present invention is simple and robust.
BRIEF DESCRIPTION OF SEVERAL VIEWS OF THE DRAWINGS Figure 1 shows a four relation schema diagram for representing aggregates (two hierarchies) according to the Main Embodiment.
Figure 2 provides the SQL statements to define the four relations of the Main Embodiment.
Figure 3 provides SQL statements to define four relations for Example 1 , an aggregate (two level hierarchy) linking Teams to Players.
Figure 4 shows four relational tables with sample data for Example 1 . Figure 5 shows a graphical depiction of the two level Team-Player hierarchy of Example 1 using the data of Figure 4. Figure 6 provides SQL statements to define three relations for Example 2. When added to the four relations of Example 1 , a three level League-Team- Player hierarchy is created.
Figure 7 shows three relational tables with sample data for Example 2. Figure 8 shows a graphical depiction of the three level hierarchy of
Example 2 using the data of Figure 7.
Figure 9 shows Alternate Embodiment #1 , a special case of the Main Embodiment in which the ParentObject relation and ChildObject relation are the same. Figure 10 provides SQL statements to define the three relations of
Alternate Embodiment #1 .
Figure 1 1 provides SQL statements to define three relations for Example 3 according to Alternate Embodiment #1 .
Figure 12 shows sample data for Example 3 in tabular form. Figure 13 shows the directed graph equivalent for Example 3 using the sample data from Figure 12.
Figure 14 shows a schema diagram for Alternate Embodiment #2. Figure 15 provides SQL statements to define the six relations in Alternate Embodiment #2. Figure 16 shows a schema diagram for Alternate Embodiment #2 without the LinkType relation.
Figure 17 shows a schema diagram for Alternate Embodiment #2 without the AggregateType relation.
Figure 18 shows a schema diagram for Alternate Embodiment #2 without both the LinkType and AggregateType relations.
Figure 19 shows a schema diagram for Alternate Embodiment #3.
DETAILED DESCRIPTION OF THE INVENTION
The present invention is called the Method of Recursive Objects and consists of schema designs for linking one record in a parent record class to zero or more records in a child record class into a two level hierarchy called an aggregate. When a child record in one aggregate is the parent record in a second aggregate, the combination of the two aggregates is interpreted as a three level hierarchy. By extension, hierarchies of any number of levels over any combination of object record classes may be defined. The Method of Recursive Objects represents arbitrary hierarchies and related data organization structures using an industry standard SQL Relational DataBase to implement the four embodiments of an aggregate.
The Main Embodiment of the Method of Recursive Objects is the four relation schema design illustrated in Figure 1. These schema diagrams and the implied organization of data records within relations will be familiar to persons of ordinary skill in the pertinent art of Relational DataBase design, and in the development of software applications involving access to Relational DataBases. Such persons will recognize that the schema diagrams contained herein depict relations and relationships between relations, and that relation names and field names are chosen for clarity of exposition. The schema designs of the Method of Recursive Objects are independent of the choice of relation and field names made by all those who would implement the Method.
Figure 1 defines a schema organization for the Main Embodiment consisting of four relations: The ParentObject relation contains records which may fill the role of parent record in an aggregate. The ChildObject relation contains records which may fill the role of child record(s) in an aggregate. The Aggregate relation contains aggregate records each of which represents an aggregate. An aggregate record points to a single parent record in ParentObject relation. The Link relation completes the construction of aggregates. The Link relation contains link records, each with two pointers, one pointing to the aggregate in the Aggregate relation and the other pointing to a child record in the ChildObject relation. Notice that there are no pointers from the Aggregate relation to the ChildObject relation, nor from the Link relation to the ParentObject relation. This separation of pointers into individual relations is an essential feature of the Method of Recursive Objects and differentiates the Method of Recursive Objects from the Prior Art. The Figure 1 schema diagram shows four relations and those pointers that are essential to the Method. That is, the ParentObject, ChildObject, Aggregate and Link relations, and the pointer fields from Aggregate to ParentObject, from Link to Aggregate, and from Link to ChildObject.
Figure 2 provides prototype SQL statements to define the four relations for the Main Embodiment schema diagram of Figure 1. Only required fields and pointers in the Aggregate and Link relations are shown. A person skilled in the pertinent art would appreciate that additional fields may be added to the schemas. For example, fields could be added to the ParentObject and ChildObject record schemas to describe and characterize the objects each represents. And that an aggregate name field may be added to the Aggregate relation schema for clarity. And that a primary key link id field may be added to the link relation schema for performance. None of these additional fields changes the fundamental spirit of the Method of Recursive Objects. Example 1 illustrates aggregate definition and includes added fields.
Example 1. Construction of Team-Player aggregates. Let the Team relation represent teams (or team objects) acting in the role of the ParentObject relation. Let the Player relation represent players (or player objects) acting in the role of the ChildObject relation. The Team relation schema includes fields for the City in which the team plays and the team's mascot. The Player relation includes field values for the player's date and place of birth. Figure 3 shows the SQL statements to define the four relations for Example 1 including these additional fields. Figure 4 shows sample data for Example 1 in tabular form. Figure 5 shows a graphical representation of the two level hierarchy of Example 1. Note in Figures 4 and 5 that a child Object may be a child in more than one aggregate. Example 1 contains three hierarchies corresponding to the three aggregates, Mudhens Roster, Mighty Ducks Roster and All Stars.
Example 2. To extend the aggregates (two level hierarchies) of Example 1 into a three level hierarchy, a new relation (League) is added plus a new Aggregate relation (LeagueTeamAggregate) and a new Link relation (LeagueTeamLink). Figure 6 shows the SQL statements to define the additional relations. Figure 7 shows additional sample data for Example 2 in tabular form. Figure 8 shows the three level hierarchy of Example 2 in graphical form. Note the following features of the Main Embodiment:
• A parent record may be the parent record in any number of aggregates.
• A child record may fulfill the role of child in any number of aggregates.
• A child record may fulfill the role of child zero or more times within an aggregate. The implementer may choose to prevent multiple occurrences of a child record in an aggregate by software, through the use of unique keys in the schema definition, software or some other mechanism.
• Schemas for the Aggregate relation and Link relation in Figure 1 are specific to the Parent Object and Child Object relations. To define and instantiate an arbitrary hierarchy, one Aggregate relation and one Link relation are required for each pair of relations for which the representation of a parent-child relationship (i.e., an aggregate) is required.
Although the composite structure of aggregates is said to form a hierarchy, there are no restrictions on closed paths or cycles within the structure. It would therefore be more correct to equate the structures assembled from aggregates to lattice structures rather than to hierarchical structure. Hierarchical structures are a subset of lattice structures. Persons skilled in the pertinent art could use the Method of Recursive Objects to implement lattices, or, could enforce a hierarchical structure through detection and prohibition via software, database constraints or some other mechanism of closed loops or cycles.
DETAILED DESCRIPTION OF THE ALTERNATE EBODIMENT #1 Embodiment #1 of the Method of Recursive Objects is the three relation schema design illustrated in Figure 9. Figure 9 defines a schema organization consisting of three relations: The Object relation contains records which may fill the role of parent and child records in an aggregate. The Aggregate relation contains aggregate records, each of which represents one aggregate and contains a pointer to the parent record in the Object relation. The Link relation completes the construction. The Link relation contains Link records with two pointers, one which points to an aggregate record in the Aggregate relation and the other which points to a child record in the Object relation. Alternate Embodiment #1 differs from the Main Embodiment only insofar as the ParentObject relation and ChildObject relation are the single relation specified as Object in Figure 9 and defined in Figure 10. SQL statements to define all three relations for Alternate Embodiment #1 are given in Figure 10. Alternate Embodiment #1 represents a specialization of the Main Embodiment in which all parent and child records are drawn from a single class, the Object relation. This schema design permits exactly the same hierarchical structures as the Main Embodiment, but persons skilled in the pertinent art will recognize that if multiple occurrences of any one record as parent record in an aggregate are prohibited and multiple occurrences of any one record as child record in an aggregate are prohibited, and aggregates where the child record and parent record are identical are prohibited, then the resulting structures are equivalent to directed graphs over the records in the Object relation.
Example 3. A digraph representation of an Organization Chart. Let the set of record objects be the Employees of Company X. Company X is organized into Groups, each of which has one Employee leader (parent role) and zero or more Employee members (child role). Figure 1 1 shows the SQL statements to define the three relations according to Alternate Embodiment #1. Figure 12 shows sample data for Example 3 with 9 Employees organized into five groups. Figure 13 provides a graphical depiction of the Organization Chart of Example 3. Many applications employ directed graphs as data structure. With Alternate
Embodiment #1 , it is possible to completely represent directed graphs over a single relation using a Relational DataBase Management System. Unlike the Prior Art, the Method of Recursive Objects is entirely implemented within a RDBMS without the use of any external data or files. Note the following features of Alternate Embodiment #1 :
• Parent and child records are drawn from a single record class corresponding to the Object relation.
• A record may be the parent record in any number of aggregates and a record may have multiple occurrences as a child in an aggregate. The resulting structure will represent a digraph only if records are restricted to being the parent record in at most one aggregate and if records are restricted to at most one occurrence as a child in any aggregate and if records are restricted so that an aggregate may not have the same record as both parent and child.
• Schemas for the Aggregate relation and Link relation in Figure 9 are specific to a single digraph. For each digraph, a separate pair of Aggregate and Link relations is required.
DETAILED DESCRIPTION OF THE ALTERNATE EMBODIMENT #2 Alternate Embodiment #2 of the Method of Recursive Objects is the six relation schema design illustrated in Figure 14. Alternate Embodiment #2 represents a variation on Alternate Embodiment #1 in which the Method of Recursive Objects is used to create arbitrary hierarchies over records drawn from a single Object relation whose objects (i.e., records, rows, tuples) are partitioned into object types enumerated in the ObjectType relation. Each object record in the Object relation specifies its object type using a pointer to an object type record in the ObjectType relation. In addition to using object types to classify objects, Alternate Embodiment #2 partitions aggregates into typed classes according to an enumerated set of aggregate types in the AggregateType relation.and partitions Links into typed classes according to an enumerated set of link types in the LinkType relation. Alternative Embodiment #2 is similar to the Main Embodiment in that it can represent arbitrary hierarchies over typed classes, but achieves this using enumerated types for objects. This is in contrast to the Main Embodiment where membership in different database relations determines membership in either the parent class (ParentObject relation) or the child class (ChildObject relation) in Figure 1. Figure 14 defines a schema organization consisting of six relations for Alternate Embodiment #2. In Figure 14:
Each record of the Object relation points to an object type in the ObjectType relation; Each record of the Link relation points to a link type in the LinkType relation;
Each record of the Aggregate relation points to an aggregate type in the AggregateType relation;
Each aggregate type record in the AggregateType relation specifies (points to) one parent object type record in the ObjectType relation, one child object type record in the ObjectType relation, and one link type record in the LinkType relation. An aggregate (record) which points to this aggregate type (record) must connect parent and child objects (records) of the prescribed types using a link (record) of the prescribed type. This is enforced by integrity constraints or software or some other mechanism.
The SQL statements to define the six relations of Alternate Embodiment #2 in Figure 14 are shown in Figure 15.
Alternate Embodiment #2 provides a powerful means for constructing arbitrary hierarchies over nonhomogeneous objects using only six relations. It is often possible to superimpose hierarchies over an existing Object relation where the Object relation schema includes a field value that partitions the set of
Objects. In that case, the ObjectType relation captures these type values
(types) and the aggregate type defines the desired parent-child relationships between the object types and the link type. The enumerated type relations for aggregates (i.e., AggregateType) and for links (i.e., LinkType) provide an extra measure of strong typing that applications or interface software can enforce for internal consistency. Either or both the AggregateType and the LinkType relations may be omitted along with the corresponding pointers from the Aggregate and Link relations. The resulting schema designs lack the strong typing mechanism of Figure 14, but are still implementations of Alternate Embodiment #2. Figure 16 shows
Alternate Embodiment #2 with the LinkType relation and pointer from Link to LinkType omitted. Figure 17 shows Alternate Embodiment #2 with the AggregateType relation and pointer from Aggregate to AggregateType omitted. Figure 18 shows Alternate Embodiment #2 with both the LinkType and AggregateType relations omitted, as well as omitting the pointer from Link to LinkType and the pointer from Aggregate to AggregateType.
DETAILED DESCRPTION OF THE ALTERNATE EMBODIMENT #3 Alternate Embodiment #3 of the Method of Recursive Objects is the seven relation schema organization illustrated in Figure 19. Alternate Embodiment #3 incorporates the structure of the Main Embodiment with the type mechanism of Alternate Embodiment #2. The left side of Figure 19 is identical to the schema of Figure 1 (Main Embodiment). The right side of Figure 19 is analogous to the typing mechanism on the right side of Figure 14, the schema design for Alternate Embodiment #2. As in Figure 14, an aggregate points to an aggregate type record in the AggregateType relation and a Link points to a link type record in the LinkType relation. The aggregate type of the aggregate specifies the link type, so that only link records of the correct type may be used. In Alternate Embodiment #3, the ParentObject relation and the ChildObject relation are not required to exist in the same Relational DataBase. Instead: They may be any relations in any Relational DataBases managed by any Relational Server on a network. The only requirement is that they be accessable with read permission. The network may be a local area net (LAN), or it may be a wide area net (WAN) such as the Internet. The ObjectTypeDescriptor of Figure 19 serves as a type classification mechanism just as ObjectType in Alternate Embodiment #2, but neither the ParentObject relation nor the ChildObject relation in Figure 19 contains any pointers to object type descriptor records in the ObjectTypeDescriptor relation. Instead, the ObjectTypeDescriptor records provide the information necessary to retrieve a record from an Object relation (Parent, or Child) by specifying the network address of the host Relational Server, the name and owner of the Relational DataBase, the name of the relation, and fields of the relation (ParentObject or ChildObject) used to implement the pointers from the aggregate and link records. A person skilled in the pertinent art will recognize that for the Aggregate relation and Link relation to point to records in relations on the network, the pointers must be interpreted as unique network addresses. The fields specified in the ObjectTypeDescriptor relation are combined with either the parent record pointer in an aggregate record or the child record pointer in a link record to produce a network address which uniquely identifies the parent record or child record in the correct relation in the network.
Because Alternate Embodiment #3 does not require pointers from the ParentObject or ChildObject relations, the Method of Recursive Objects can be implemented over all relations in all Relational DataBases managed by all Relational Servers in a network without modification to any of their schemas and without data modification to any of the participating records. (That is, with only read access permission.) Alternate Embodiment #3 therefore allows for the construction of arbitrary hierarchies across all relations residing on all network Relational Servers. The Prior Art contains no known method for constructing equivalent structures using a Relational DataBase and Relational DataBase Management Systems as the implementing apparatus. CONCLUSION, RAMIFICATION AND SCOPE The present invention provides a mechanism for implementing the Method of Recursive Objects for the representation of several variations of arbitrary hierarchies. These include hierarchies over classes defined by relations, digraphs over the records of any single relation, hierarchies over records of any single relation partitioned by enumerated types, and hierarchies over classes defined by relations stored on any Relational Server in a network.
In all 4 embodiments, the Aggregate relation and Link relation combine to provide aggregates, which are the building blocks for hierarchies. In general, the child records in a hierarchy are unordered. Persons skilled in the pertinent art will understand that a retrieval order can be imposed on the child records by providing a suitable field in the relational schema of the Link relation. Examples include a datetime field for time ordering or an integer or floating point field for numeric ordering. The presence of such fields does not alter the spirit and scope of the invention. The essential new aspect of the present invention is the aggregate and the four embodiments of an aggregate using only relations in a Relational DataBase. It will be understood by those skilled in the pertinent art that the relation names and fields names may be chosen by the implementer and new fields added without departing from the spirit and scope of the invention.

Claims

1. A method of recursive objects for representing a two level hierarchy called an aggregate that associates one record of a first, parent class and zero or more records of a second, child class, each said class defined by the records of a relation within a relational database, comprising the steps of:
(a) defining an aggregate relation with a record schema including at least a first aggregate field to uniquely identify one aggregate record among all aggregate records in said aggregate relation, and a second aggregate field to uniquely identify one parent class record among all parent class records in said parent class relation;
(b) defining a link relation with a record schema including at least a first link field to uniquely identify one aggregate record among all aggregate records in said aggregate relation, and a second link field to uniquely identify one child class record among all child class records in said child class relation;
(c) representing said aggregate by
(i) storing one record in the aggregate relation with its unique identifier in said first aggregate field, and said second aggregate field set to the value of the unique identifier of one parent class record of said parent class relation;
(ii) for each of zero or more child records in said aggregate, storing one record in the link relation with said first link field set to the value of the unique identifier of said aggregate record, and said second link field set to the value of the unique identifier of a child class record of said child class relation; (iii) whereby said aggregate will be represented by exactly one record in said aggregate relation uniquely identifying said parent class record, and by zero or more link records in said link relation uniquely identifying said child class record(s); and
(iv) whereby a two level hierarchy or aggregate associating one record of a first, parent class and zero or more records of a second, child class is accurately represented.
2. A two level hierarchy called an aggregate, associating one record of a first, parent class and zero or more records of a second, child class, each of said classes is being defined respectively by a parent class relation and a child class relation within a relational database, comprising:
(a) an aggregate relation whose aggregate relation record schema comprises; (i) a single aggregate record among a set of aggregate records in said aggregate relation uniquely identified by data within said aggregate relation record schema; (ii) a single parent class record among a set of parent class records in said parent class of said parent class relation uniquely identified by data within said aggregate relation record schema;
(b) a link relation within a link relation record schema including:
(i) a single aggregate record among the set of aggregate records in said aggregate relation uniquely identified by data within said link relation schema;
(ii) a single child class record of said class among all child class records in said child class relation uniquely identified by data within the link relation schema;
(c) representation data representing each aggregate by; (i) storing one aggregate record in said aggregate relation uniquely identifying one parent class record among all parent class records within said parent class relation; (ii) storing zero or more link records in said link relation, each of which link record uniquely identifies said aggregate record, and uniquely identifies one child class record among all records within said child class relation; (iii) whereby each record of said aggregate is represented by exactly one record in said aggregate relation identifying said parent class record and zero or more records in said link relation, each identifying one child class record; and
(iv) whereby a two level hierarchy or aggregate associating one record of said first, parent class and zero or more records of said second, child will be accurately and unambiguously represented.
3. A method for creating and managing a two-level hierarchical data structure in at least one relational database management system (RDBMS), comprising the steps of:
(a) creating a parent object relation table in said RDBMS g a plurality of parent object relation records;
(b) creating a child object relation table in said RDBMS having a plurality of child object relation records; (c) creating an aggregate relation table in said RDBMS having a plurality of aggregate relation records each having a parent object identity field;
(d) creating a link relation table in said RDBMS having zero or more link relation records, each link relation record having (i) an aggregate identity field and (ii) a child object identity field;
(e) said aggregate relation records having a parent object identity field pointing to a parent object relation record of said plurality of parent object relation records in said parent object relation table; and (f) said link relation records having an aggregate identity field pointing to an aggregate relation record of said plurality of aggregate relation records in said aggregate relation table and to a child object relation record of said plurality of child object relation records in said child object relation table whereby zero or more child object relation records are linked to a parent object record relation record.
4. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 3, comprising the further steps of:
(a) providing a first link relation record of said plurality of link relation records having (i) a first aggregate identity field pointing to a first aggregate relation record of said plurality of aggregate relation records associated with a first parent object relation record of said plurality of parent object relation records, and (ii) a first child object identity field adapted to point to single child object relation record within said child object relation table; and (b) providing a second link relation record of said plurality of link relation records differing from said first link relation record having (i) a second aggregate identity field pointing to a second aggregate relation record of said plurality of aggregation records associated with a second parent object relation record of said plurality of parent object relation records, and (ii) a second child object identity field adapted to point to a single child object relation record within said child object relation table.
5. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 4, comprising the further step of providing a first child object relation record within said child object relation table.
6. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 5, comprising the further steps of: (a) pointing said first child object identity field of said first link relation record of said plurality of link relation records to said first child object relation record; (b) pointing said second child object identity field of said second link relation record of said plurality of link relation records to said first child object relation record; and
(c) whereby said first child object relation record is linked to both said first parent object relation record and said second parent object relation record to provide a first linked child object relation record.
7. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 5, comprising the further steps of:
(a) providing a second child object relation record within said child object relation table;
(b) pointing said second child object identity field of said second link relation record of said plurality of link relation records to said second child object relation record; and
(c) whereby said first child object relation record is linked to said first parent object relation record and said second child object relation record is linked to said second parent object relation record.
8. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim
7, wherein said second child object relation record is identical to said first child object relation record.
9. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 6, wherein said parent object relation table comprises a first schema having a first schema organization including a first key for identifying a parent object relation record of said parent object relation records.
10. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 9, wherein said child object relation table comprises a second schema having a second schema organization including a second key for identifying a first child object relation record of said child object relation table.
11. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim
10, wherein said aggregate relation table comprises a third schema having a third schema organization including a third key for identifying an aggregate relation record of said plurality of aggregate relation records.
12. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim
1 1 , wherein said link relation table comprises a fourth schema having a fourth schema organization including a fourth key for identifying a link relation record of said plurality of link relation records.
13. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim
12, comprising the further step of altering a relationship between a third parent object relation record of said plurality of parent object relation records and said first child object relation record independently of any changes to said third parent object relation record and independently of any changes to said first child object relation record.
14. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 13, comprising the further step of altering said relationship between said third parent object relation record and said first child object relation record by changing an aggregate identity field of a link relation record of said plurality of link relation records.
15. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim
13, comprising the further step of altering said relationship between said third parent object relation record and said first child object relation record by changing a child object identity field of a link relation record of said plurality of link relation records.
16. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 13, comprising the further step of altering said relationship between said third parent object relation record and said first child object relation record by changing a parent object identity field of an aggregate relation record of said plurality of aggregate relation records.
17. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 6, comprising the further steps of:
(a) providing a plurality of child object relation records including therein a plurality of associated child object relation records, all associated child object relation records of said plurality of associated child object relation records being associated with a fourth parent object relation record; and
(b) determining said associated child object relation records within said plurality of associated child object relation records in accordance with said link relation table.
18. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 6, wherein said first child object relation record further comprises a child object identity field and (i) said first child identity field of said first link relation record, and (ii) said second child identity field of said second link relation record, both point to said child object identity field of said first child object relation record.
19. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 6, wherein said first and second aggregate relation records include respective first and second aggregate identity fields and said first aggregate identity field of said first link relation record points to said first aggregate identity field of said first aggregate relation record and said second aggregate identity field of said second link relation record points to said second aggregate identity field of said second aggregate relation record.
20. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim
6, comprising the further steps of:
(a) providing fifth and sixth parent object relation records within said parent object relation table;
(b) providing a fifth child object relation record within said child object relation table;
(c) providing third and fourth aggregate relation records of said plurality of aggregate relation records having parent object identity fields pointing to said fifth and sixth parent object relation records respectively;
(d) providing third and fourth link relation records of said plurality of link relation records having (i) respective third and fourth aggregate identity fields pointing to said third and fourth aggregate relation records, and (ii) a third and fourth child object identity fields pointing to said third child object relation record; and
(e) whereby said third child object relation record is linked to said fifth and sixth parent object relation records to provide a second linked child object relation record in addition to said first linked child object relation record.
21. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 20, wherein said first and second parent object relation records linked to said first child object relation record and said fifth and sixth parent object relation records linked to said third child object relation record are mutually exclusive.
22. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 20, wherein said first and second parent object relation records comprise at least one of said third and fourth parent object relation records.
23. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 20, wherein said first child object relation record comprises said third child object relation record.
24. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 6, wherein said parent object relation table is disposed in a first RDBMS and said child object relation table is disposed in a second RDBMS.
25. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 6, comprising the further step of providing fifth and sixth aggregate relation records of said plurality of aggregate relation records having respective parent object identity fields both pointing to a seventh parent object relation record.
26. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 25, wherein said fifth and sixth aggregate relation records are linked to differing child object relation records of said plurality of child object relation records.
27. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 26, comprising the step of altering the relationships of said differing children to said seventh parent object relation record.
28. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 6, wherein the step of providing said first child object relation record comprises the step of inserting a link relation record into said link relation table.
29. The method for creating and managing a two-level hierarchical data structure in at least one relational database management system of Claim 6, comprising the further steps of:
(a) providing an eighth parent object relation record of said plurality of parent object records;
(b) providing a fifth aggregate relation record of said plurality of aggregate relation records having a fifth parent object identity field pointing to said eighth object relation record;
(c) providing a fifth link relation record of said plurality of link relation records having:
(i) a fifth aggregate identity field pointing to said fifth aggregate relation record; and (ii) a fifth child object identity field pointing to said first child object relation record whereby said first child object relation record is linked to said first, second and eighth parent object relation records.
30. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 6, further comprising the step of creating an object type descriptor table having object relation retrieval information for retrieving a selected object relation from a selected one of said parent object relation table and said child object relation table.
31. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 30, wherein said object relation retrieval information further comprises information for specifying a selected host relational server wherein said selected object relation is disposed within said selected relational server.
32. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 31 , wherein said object relation retrieval information further comprises information for specifying a network address of said host selected relational server.
33. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 32, wherein said object relation retrieval information further comprises information for specifying a name of a relational database.
34. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 33, wherein said object relation retrieval information further comprises information for specifying a name of said selected object relation.
35. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 34, wherein said object relation retrieval information further comprises information for specifying whether said selected object relation is a parent object relation or a child object relation.
36. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 34, including first and second selected object relations wherein said parent object relation table and said child object relation table are disposed in differing relational databases.
37. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 30, wherein said object relation retrieval information further comprises information for specifying a type classification of said selected object relation.
38. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 30, comprising the further steps of:
(a) creating a link type relation table having a plurality of link types; and (b) providing a link type pointer within a selected link relation record of said plurality of link relation records pointing to a link type of said plurality of link types for identifying a link type associated with said selected link relation record.
39. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 31 , said aggregate type relation:
(a) a first aggregate relation specifying pointer for specifying a parent object type relation in said object type descriptor table;
(b) a second aggregate relation specifying pointer for specifying a child object type relation in said object type descriptor table; and
(c) a third aggregate relation specifying pointer for specifying a link type relation in said link type relation table.
40. A method for creating and managing a two-level hierarchical data structure in at least one relational database management system, comprising the steps of:
(a) creating an object relation table in said RDBMS having a plurality of object relation records, including a plurality of parent object relation records and zero or more child object relation records;
(b) creating an aggregate relation table in said RDBMS having a plurality of aggregate relation records;
(c) creating a link relation table in said RDBMS having a plurality of link relation records; (d) said aggregate relation records having a parent object pointer pointing to a parent object relation record of said plurality of parent object relation records in said object relation table; and
(e) said link relation records having (i) a plurality of aggregate relation pointers pointing to aggregate relation records of said plurality of aggregate relation records in said aggregate relation table, and (ii) zero or more child object pointers adapted to point to a single child object relation record in said object relation table.
41. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 40, comprising the further steps of:
(a) creating an object type relation table having a plurality of object types; and
(b) providing an object type pointer within a selected object relation record of said plurality of object relation records pointing to an object type of said plurality of object types for identifying an object type associated with said selected object relation record.
42. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 41 , comprising the further steps of:
(a) creating a link type relation table having a plurality of link types; and
(b) providing a link type pointer within a selected link relation record of said plurality of link relation records pointing to a link type of said plurality of link types for identifying a link type associated with said selected link relation record.
43. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 41 , further comprising the steps of: (a) creating an aggregate type relation table having a plurality of aggregate types; and (b) providing an aggregate type pointer within a selected aggregate relation record of said plurality of aggregate relation records pointing to an aggregate type of said plurality of aggregate types for identifying an aggregate type associated with said selected aggregate relation record.
44. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 43, said aggregate type relation comprising:
(a) a first aggregate relation specifying pointer for specifying a parent object type relation in said object type descriptor table; and
(b) a second aggregate relation specifying pointer for specifying a child object type relation in said object type descriptor table.
45. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 41 , comprising the further steps of:
(a) creating a link type table having a plurality of link types;
(b) providing a link type pointer within a selected link relation record of said plurality of link relation records pointing to a link type of said plurality of link types for identifying a link type associated with said selected link relation record;
(c) creating an aggregate type relation table having a plurality of aggregate types; and (d) providing an aggregate type pointer within a selected aggregate relation record of said plurality of aggregate relation records pointing to an aggregate type of said plurality of aggregate types for identifying an aggregate type associated with said selected aggregate relation record.
46. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 45, said aggregate type relation comprising:
(a) a first aggregate relation specifying pointer for specifying a parent object type relation in said object type descriptor table; (b) a second aggregate relation specifying pointer for specifying a child object type relation in said object type descriptor table; and (c) a third aggregate relation specifying pointer for specifying a link type relation in said link type relation table.
47. A two-level hierarchical data structure in a relational database management system (RDBMS), comprising:
(a) a parent object relation table in said RDBMS having a plurality of parent object relation records;
(b) a child object relation table in said RDBMS adapted to receive a first child object relation record;
(c) an aggregate relation table in said RDBMS having a plurality of aggregate relation records each having a parent object identity field;
(d) a link relation table in said RDBMS having a plurality of link relation records each having (i) an aggregate identity field and (ii) a child object identity field;
(e) said aggregate relation records having a parent object identity field pointing to a parent object relation record in said parent object relation table; (f) said link relation records having an aggregate identity field pointing to an aggregate of said aggregate relation records and a child object identity field pointing to a child object relation record;
48. The two-level hierarchical data structure in at least one relational database management system of Claim 47, further comprising: (a) a first link relation record of said plurality of link relation records having (i) a first aggregate identity field pointing to a first aggregate relation record of said plurality of aggregate relation records associated with a first parent object relation record of said plurality of parent object relation records, and (ii) a first child object identity field adapted to point to said single child object relation record within said child object relation table; and (b) a second link relation record of said plurality of link relation records differing from said first aggregate relation record having (i) a second aggregate identity field pointing to a second aggregate relation record of said plurality of aggregation records associated with a second parent object relation record of said plurality of parent object relation records, and (ii) a second child object identity field adapted to point to said single child object relation record within said child object relation table.
49. The two-level hierarchical data structure in at least one relational database management system of Claim 48, further comprising a first child object relation record within said child object relation table.
50. The two-level hierarchical data structure in at least one relational database management system of Claim 49, further comprising: (a) said first child object identity field of said first link relation record of said plurality of link relation records pointing to said first child object relation record;
(b) said second child object identity field of said second link relation record of said plurality of link relation records pointing to said first child object relation record; and
(c) whereby said first child object relation records is linked to said first parent object relation record and said second parent object relation record to provide a first linked object relation record.
51. The two-level hierarchical data structure in at least one relational database management system of Claim 50, further comprising:
(a) a second child object relation record within said child object relation table;
(b) said second child object identity field of said second link relation record of said plurality of link relation records pointing to said second child object relation record; and
(c) whereby said first child object relation record is linked to said first parent object relation record and second child object relation record is recursively linked to said second parent object relation record.
52. The two-level hierarchical data structure in at least one relational database management system of Claim 49, further comprising an altering of a relationship between a first selected parent object relation record of said plurality of object relation records and said first child object relation record provided independently of any changes to said selected parent object relation record and independently of any changes to said child object identity field.
53. The two-level hierarchical data structure in at least one relational database management system of Claim 52, further comprising an altering of said relationship between said first selected parent object relation record and said first child object relation record provided by changing an aggregate identity field of a link relation record of said plurality of link relation records.
54. The two-level hierarchical data structure in at least one relational database management system of Claim 53, further comprising an altering of said relationship between said first selected parent object relation record and said first child object relation record provided by changing a value of said third key.
55. The two-level hierarchical data structure in at least one relational database management system of Claim 50, further comprising
(a) a plurality of child object relation records including therein a plurality of associated child object relation records, each associated child object relation record of said plurality of associated child object relation records being associated with a second selected parent object relation record; and
(b) a determination of said associated child object relation records within said plurality of associated child object relation records in accordance with said link relation table.
56. The two-level hierarchical data structure in at least one relational database management system of Claim 50, wherein said first child object relation record further comprises a child object identity field, and (i) said first child identity field of said first link relation record, and (ii) said second child identity field of said second link relation record both point to said child object identity field of said first child object relation record.
57. The two-level hierarchical data structure in at least one relational database management system of Claim 49, wherein first and second aggregate relation records include respective first and second aggregate identity fields and said first aggregate identity field of said first link relation record points to said first aggregate identity field of said first aggregate relation record and said second aggregate identity field of said second link relation record points to said second aggregate relation identity field of said second aggregate relation record.
58. The two-level hierarchical data structure in at least one relational database management system of Claim 48, further comprising:
(a) a fifth parent object relation record of said plurality of parent object relation records;
(b) a fifth aggregate relation record of said plurality of aggregate relation records having a fifth parent object identity field; and
(c) a fifth link relation record of said plurality of link relation records having (i) a fifth aggregate identity field pointing to said fifth aggregate relation record, and (ii) a fifth child object identity field 5 pointing to said first child object relation record whereby said first child object relation record is linked to said first, second and third parent objection relation records.
59. The two-level hierarchical data structure in at least one relational database management system of Claim 48, wherein said first child object i o relation table comprises said first parent object relation table, whereby said first link child object relation record and said first parent object relation record are included in a single object relation table.
60. The two-level hierarchical data structure in at least one relational database management system of Claim 50, further comprising: is (a) an aggregate type relation table having a plurality of aggregate types;
(b) an aggregate type pointer within a selected aggregate relation record of said plurality of aggregate relation records pointing to an aggregate type of said plurality of aggregate types for identifying
20 an aggregate type of said plurality of aggregate types associated with said selected aggregate relation record;
(c) an object type descriptor table having a plurality of object types having a plurality of parent object type pointers for pointing to a selected parent object relation record in said parent object relation
25 table thereby providing a descriptor-indicated parent object relation record for identifying an object type of said plurality of object types associated with said descriptor-indicated parent object relation record; and
(d) said object type descriptor table having zero more child object 30 type pointers for pointing to a selected child object relation record in said child object relation table thereby providing a descriptor- indicated child object relation record for identifying an object type of said plurality of object types associated with said descriptor- indicated child object relation record.
61 . The two-level hierarchical data structure in at least one relational database management system of Claim 58, further comprising:
(a) a link type relation table in said RDBMS having a plurality of link types; and (b) a link type pointer within a selected link relation record of said plurality of link relation records pointing to a link type of said plurality of link types for identifying a link type associated with said selected link relation record.
62. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 60, said aggregate type relation comprising:
(a) a first aggregate relation specifying pointer for specifying a parent object type relation in said object type descriptor table;
(b) a second aggregate relation specifying pointer for specifying a child object type relation in said object type descriptor table; and
(c) a third aggregate relation specifying pointer for specifying a link type relation in said link type relation table.
63. A two-level hierarchical data structure in at least one relational database management system, comprising: (a) an object relation table in said RDBMS having a plurality of object relation records, including a plurality of parent object relation records and zero or more child object relation records; (b) an aggregate relation table in said RDBMS having a plurality of aggregate relation records; (c) a link relation table in said RDBMS having a plurality of link relation records;
(d) said aggregate relation records having a parent object pointer pointing to a parent object relation record of said plurality of parent object relation records in said object relation table; and (e) said link relation records having (i) a plurality of aggregate relation pointers pointing to aggregate relation records of said plurality of aggregate relation records in said aggregate relation table, and (ii) one or more child object pointers adapted to point to a single child object relation record in said object relation table.
64. The hierarchical data structure in at least one relational database management system of Claim 63, further comprising:
(a) an object type relation table having a plurality of object types; and
(b) an object type pointer within a selected object relation record of said plurality of object relation records pointing to an object type of said plurality of object types for identifying an object type associated with said selected object relation record.
65. The hierarchical data structure in at least one relational database management system of Claim 64, further comprising: (a) a link type relation table having a plurality of link types;
(b) a link type pointer within a selected link relation record of said plurality of link relation records pointing to a link type of said plurality of link types for identifying a link type associated with said selected link relation record.
66. The hierarchical data structure in at least one relational database management system of Claim 64, further comprising:
(a) an aggregate type relation table having a plurality of aggregate types; and
(b) an aggregate type pointer within a selected aggregate relation record of said plurality of aggregate relation records pointing to an aggregate type of said plurality of aggregate types for identifying an aggregate type associated with said selected aggregate relation record.
67. The hierarchical data structure in at least one relational database management system of Claim 66, further comprising at least one additional pointer within a further selected aggregate relation record of said plurality of aggregate relation records pointing to an object type of said plurality of object types for identifying an_object type associated with said further selected aggregate record.
68. The hierarchical data structure in at least one relational database management system of Claim 64, further comprising
(a) a link type relation table having a plurality of link types; and
(b) a link type pointer within a selected link relation record of said plurality of link relation records pointing to a link type of said plurality of link types for identifying a link type associated with said selected link relation record; (c) an aggregate type relation table having a plurality of aggregate types; and (d) an aggregate type pointer within a selected aggregate relation record of said plurality of aggregate relation records pointing to an aggregate type of said plurality of aggregate types for identifying an aggregate type associated with said selected aggregate relation record.
69. The method for creating and managing a hierarchical data structure in at least one relational database management system of Claim 68, said aggregate type relation comprising:
(a) a first aggregate relation specifying pointer for specifying a parent object type relation in said object type descriptor table; (b) a second aggregate relation specifying pointer for specifying a child object type relation in said object type descriptor table; and (c) a third aggregate relation specifying pointer for specifying a link type relation in said link type relation table.
PCT/US2004/000395 2004-01-08 2004-01-08 Method of recursive objects for representing hierarchies in relational database systems WO2004099941A2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
PCT/US2004/000395 WO2004099941A2 (en) 2004-01-08 2004-01-08 Method of recursive objects for representing hierarchies in relational database systems

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/US2004/000395 WO2004099941A2 (en) 2004-01-08 2004-01-08 Method of recursive objects for representing hierarchies in relational database systems

Publications (3)

Publication Number Publication Date
WO2004099941A2 true WO2004099941A2 (en) 2004-11-18
WO2004099941A8 WO2004099941A8 (en) 2006-06-22
WO2004099941A3 WO2004099941A3 (en) 2006-06-22

Family

ID=33434822

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2004/000395 WO2004099941A2 (en) 2004-01-08 2004-01-08 Method of recursive objects for representing hierarchies in relational database systems

Country Status (1)

Country Link
WO (1) WO2004099941A2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2008043392A1 (en) 2006-10-10 2008-04-17 Richard Chappuis Information processing method

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5974407A (en) * 1997-09-29 1999-10-26 Sacks; Jerome E. Method and apparatus for implementing a hierarchical database management system (HDBMS) using a relational database management system (RDBMS) as the implementing apparatus
US6064999A (en) * 1994-06-30 2000-05-16 Microsoft Corporation Method and system for efficiently performing database table aggregation using a bitmask-based index
US6236988B1 (en) * 1997-09-05 2001-05-22 International Business Machines Corp. Data retrieval system
US20030004959A1 (en) * 1999-10-15 2003-01-02 University Of Strathclyde Database processor
US6704744B1 (en) * 1994-12-07 2004-03-09 Next Computer, Inc. Method and apparatus for mapping objects to multiple tables of a database

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6064999A (en) * 1994-06-30 2000-05-16 Microsoft Corporation Method and system for efficiently performing database table aggregation using a bitmask-based index
US6704744B1 (en) * 1994-12-07 2004-03-09 Next Computer, Inc. Method and apparatus for mapping objects to multiple tables of a database
US6236988B1 (en) * 1997-09-05 2001-05-22 International Business Machines Corp. Data retrieval system
US5974407A (en) * 1997-09-29 1999-10-26 Sacks; Jerome E. Method and apparatus for implementing a hierarchical database management system (HDBMS) using a relational database management system (RDBMS) as the implementing apparatus
US20030004959A1 (en) * 1999-10-15 2003-01-02 University Of Strathclyde Database processor

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2008043392A1 (en) 2006-10-10 2008-04-17 Richard Chappuis Information processing method
US8250039B2 (en) 2006-10-10 2012-08-21 Richard Chappuis Information processing method

Also Published As

Publication number Publication date
WO2004099941A8 (en) 2006-06-22
WO2004099941A3 (en) 2006-06-22

Similar Documents

Publication Publication Date Title
US7548935B2 (en) Method of recursive objects for representing hierarchies in relational database systems
Carey et al. Data-Centric Systems and Applications
Gehani Introduction to database systems
Yazici et al. Fuzzy database modeling
Wuu et al. A uniform model for temporal object-oriented databases
Schwarz et al. Extensibility in the Starburst database system
Wiederhold et al. The Structural Model for Database Design.
JP2012043456A (en) Data management architecture related to generic data item using reference
WO2001008041A1 (en) Method and systems for making olap hierarchies summarisable
Dietrich et al. Fundamentals of object databases: Object-oriented and object-relational design
Chouder et al. Enabling Self-Service BI on Document Stores.
Khoshafian Insight into object-oriented databases
Locuratolo et al. Conceptual classes and system classes in object databases
WO2004099941A2 (en) Method of recursive objects for representing hierarchies in relational database systems
Powell Oracle High Performance Tuning for 9i and 10g
Kulkarni Evaluation of functional data models for database design and use
Haithcoat Relational Database Management Systems, Database Design, and GIS
Telnarova Modeling and language support for the pattern management
Rajak et al. Modeling temporal databases-A Survey
Bhoyar A Case Study of RDBMS and OODBMS: Importance in Business
Goldin et al. Extending the constraint database framework
Pötke Spatial Indexing for Object Relational Databases
Vazirgiannis Data Modeling: Object-Oriented Data Model.
Dessloch et al. Extensible indexing support in db2 universal database
Gupta Taxonomy of Database Management System

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A2

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BW BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE EG ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NA NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SY TJ TM TN TR TT TZ UA UG US UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A2

Designated state(s): BW GH GM KE LS MW MZ SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IT LU MC NL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
CFP Corrected version of a pamphlet front page
CR1 Correction of entry in section i

Free format text: IN PCT GAZETTE 47/2004 UNDER (30) DELETE "10/428,594, 2 MAY 2003 (02.05.2003), US"

122 Ep: pct application non-entry in european phase