[go: up one dir, main page]

AU2008202360A1 - Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods - Google Patents

Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods Download PDF

Info

Publication number
AU2008202360A1
AU2008202360A1 AU2008202360A AU2008202360A AU2008202360A1 AU 2008202360 A1 AU2008202360 A1 AU 2008202360A1 AU 2008202360 A AU2008202360 A AU 2008202360A AU 2008202360 A AU2008202360 A AU 2008202360A AU 2008202360 A1 AU2008202360 A1 AU 2008202360A1
Authority
AU
Australia
Prior art keywords
layer
list
data
integer
thesaurus
Prior art date
Legal status (The legal status 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 status listed.)
Abandoned
Application number
AU2008202360A
Inventor
Elie Ouzi Koskas
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
VIRTUAL KEY GRAPH
Original Assignee
VIRTUAL KEY GRAPH
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
Priority claimed from AU2002232035A external-priority patent/AU2002232035B2/en
Application filed by VIRTUAL KEY GRAPH filed Critical VIRTUAL KEY GRAPH
Priority to AU2008202360A priority Critical patent/AU2008202360A1/en
Publication of AU2008202360A1 publication Critical patent/AU2008202360A1/en
Abandoned legal-status Critical Current

Links

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Description

00 00
AUSTRALIA
Patents Act 1990 COMPLETE SPECIFICATION Standard Patent Applicant(s): Virtual Key Graph Invention Title: METHODS OF ORGANIZING DATA AND PROCESSING QUERIES IN A DATABASE SYSTEM, AND DATABASE SYSTEM AND SOFTWARE PRODUCT FOR IMPLEMENTING SUCH METHODS The following statement is a full description of this invention, including the best method for performing it known to me/us: P77947.AU Pat_SetFiring Aippcaton 2008-5-28 doc (S) -2- 00 oo c METHODS OF ORGANIZING DATA AND PROCESSING QUERIES IN A DATABASE SYSTEM, AND DATABASE SYSTEM AND SOFTWARE PRODUCT FOR IMPLEMENTING SUCH METHODS 00oo BACKGROUND OF THE INVENTION C 5 The present invention relates to relational database management N systems (RDBMS), and more particularly to computerized systems for storing 00oo 0and accessing large amounts of data.
C In a non-limiting manner, the invention is applicable to "data warehouses". On-line transaction processing (OLTP) systems, such as for bank teller transactions and airline reservations, are optimized for finding a record associated with a specific key, e.g. finding the information about employee 123124. By contrast, data warehouses are optimized for finding sets of records very quickly. The reason is that typical queries are of the form: "find all sales by region and quarter" or "find stores that sell the greatest volume of sportswear per month" or "select the top 5 stores for each product category for the last year". Such queries must typically access large sets of rows in data tables. The query processing challenge is to process these queries without doing a linear scan of all or most of the database.
Five main approaches have been proposed to attack this problem: (i) multidimensional arrays; (ii) special indexes; (iii) table caching; (iv) optimized foreign key joins; and approximation.
Multidimensional arrays matrices).
This strategy consists of implementing the data warehouse as a multidimensional array or matrix. Examples may be found in U.S. Patents No.
5,359,724 and No. 5,864,857. Each dimension corresponds to an attribute of the data. For example, a sales table can be viewed as a matrix with coordinates: store location, product type, customer id, and so on. A particular sale can be identified by specifying all of these attributes. The strategy works well for small databases or very dense ones. By dense, we mean that the Cartesian product of possible values should all be meaningful, every -3o00 customer is likely to buy every product from every store. Since this is rarely c true, this scheme must be modified to deal with sparse values. This can be done by defining a notion of sparse attributes and dense ones. So, for example, it might be that every store carries every product (a dense relationship that can oo 00 5 be stored in a matrix), but only some of these combinations are valid for any given customer. So, a conventional index would be used whenever customer Ssales are involved, but a dense one for queries involving store-wide or productt' wide sales.
S(ii) Special indexes.
oo Bitmap indexes are an index structure tailored to data warehouses c (see, e.g. U.S. Patent No. 5,903,888). These indexes have already been used in some commercial products to speed up query processing. In its simplest form, a bitmap index on an attribute consists of one vector of bits bitmap) per attribute value, where the size of each bitmap is equal to the number of records in the indexed relation. For example, if the attribute is day-of-week, then there would be seven bitmap vectors for that attribute, one for each day..
The bitmap vector corresponding to Monday would have a 1 at position i if record i contains "Monday" in the day-of-week attribute. This single valuebased approach is called a Value-List index. Other techniques U.S. Patent No. 5,761,652) associate bit vectors with ranges of values, so there could, for a salary attribute, be a vector for the range 0 to 20,000 Euros, 20,000.01 to 35,000 Euros, and so on. Still others associate each bit vector with a bit value (a 1 or a 0) in a given position. So, if the attribute holds n bit numbers, then there would be 2n bit vectors (position 1, bit value 1; position 1, bit value 0; position 2 bit value 1; The benefit of bit vectors is that it is easy to use multiple bit vectors to answer a single query. Consider a query on several predicates, each of which is indexed. Most conventional database management systems would use just one of the indexes (the one that is most "selective" so returns the fewest rows), though some systems might attempt to intersect the record identifiers of multiple indexes.
Bitmaps work better, because they are more compact and intersecting several bitmaps is much faster than intersecting several collections of record -4- 00 oo identifiers. In the best case, the improvement is proportional to the word size of c the machine. For example, suppose the word size is 32 bits. Then two bit vectors can be intersected 32 bits at a time. Each set of 32 bits corresponds to 32 record identifiers being intersected. That best case occurs when each oO 00 5 predicate is unselective many records match each predicate value), but all the predicates together are quite selective. Consider for example the query: S"Find people who have brown hair, glasses, ages between 30 and 40, blue t' eyes, work in the computer industry, live in California,...".
SSo, matrices are best when sets of predicates are dense (all, or nearly all, values in the Cartesian product are possible), bitmaps are best when Spredicates are neither dense nor individually selective. An intermediate approach (when there is insufficient density for matrices but many values in the Cartesian product are present) is to use multidimensional indexes.
Multidimensional indexes such as quadtrees, R-trees and their successors are implemented as variable sized grids on a multidimensional space. The grids are of variable sizes because the population of points differs in different places in a hyperspace. For intuition, consider a map of equi-population rectangles of France. The rectangles would be far more dense in Paris than in the alps.
Indexes like this work well for spatial data (where they are used to find the points contained in latitude-longitude quadrants). This alternative is little explored in the commercial arena except for geographical queries, however, because these schemes do not scale well with increasing dimensionality and commercial systems typically have far more than three dimensions.
(iii) Table Caching.
If one doesn't have the luxury to design new indexes on top of a database system (because one is not the implementer of that system) one can pre-compute a large number of anticipated aggregate queries and put them in tables. For example, if a large retailer frequently asks queries that sum the total sales across multiple stores or multiple products, one may store such information in special tables. The main cost of such a strategy is maintaining these tables in the face of updates. (Disk space is no longer a major factor.) In the example, every sale of item I at store S would have to update the total product sales table for I and the total store sales table for S. So, this strategy is 00 0 worthwhile if there are few updates between queries. The strategy is not N- worthwhile if there are many.
(iv) Optimized Foreign Key Joins.
Most queries in multidimensional tables entail joins between a central 00 c-i 5 "fact table" sales detail) and a set of dimension tables store description, product description, customer description). These are known as IND "foreign key joins" since the customer identifier in the sales table, for example, c-i is a key of the customer description table. (A key is a value belonging to an c-i attribute such that only one record has that value in the attribute.) One way to 00 accelerate these joins is to create a linkage between fact table records and c-i dimension records. This can be done in three basic ways create an index that holds fact table record identifiers and dimension table record identifiers; create bidirectional pointers between fact table records and dimension table rows this is what "object-oriented" databases do; replace the customer record identifiers in the fact table by offsets into the dimension tables.
Choice is the most independent of changes in the physical organization of the tables and therefore is best for heavily updated systems, because changes to the dimension table can be reflected in the index to that table alone. Choice is the least flexible to physical reorganization, because reorganizing a dimension table would entail updating the fact table. Choice (c) is a compromise of the two in that certain physical reorganizations can be done to the dimension tables changing its position on disk) without changing the fact table. Examples of join optimization may be found in U.S. Patents No.
5,548,754, No. 5,671,403, No. 5,724,568, No. 5,752,017, No. 5,761,657 and No. 5,822,747.
Approximating the Result Since most people use data warehouses to get strategic aggregate information, many would be happy with a fast approximation as long as it has error bounds. Typical work in this area is illustrated by U.S. Patent No.
5,870,752, which shows how to estimate aggregate results in data warehouses -6- 00 while giving error bounds. The basic problem is that sampling all tables and C then doing aggregates does not work in general. For example, if one wants to join R and S on their keys, then taking a 1/10 sample of each will give a size that is 1/100 of the size of the real join if the samples are random. So, one must 00 0 5 be more clever. The idea is to take an initial set of tables R, S, T, that are linked by foreign key joins. Suppose for example that R is the fact table and Sthe others are dimension tables. Take a sample of R and then perform all these foreign key joins based on the sample giving Now, if a query Sinvolves R, S, T and includes the foreign key links among these, then the query 010 can be done with great accuracy on The error can be estimated by C)considering the result obtained by several partitions of R' and looking at their variance.
The invention more particularly relates to methods of handling integer lists in computer systems. In a non-limiting manner, this aspect of the invention is applicable in the RDBMS field, where the integer lists may represent identifiers of records in various tables.
It is well known that, in computer systems, integer lists may equivalently be stored and handled in the explicit form of integer lists or in the form of bitmap vectors. A bitmap vector has binary components each indicating whether an integer corresponding to the rank of the component belongs or does not belong to the list. The dimension of the vector has to be at least equal to the largest integer of the list.
The bitmap representation is convenient because a variety of manipulations can be performed on the coded lists by subjecting the binary components of the vectors to Boolean operations, which are the most basic operations in the usual processors. For example integer lists are readily intersected by means of the Boolean AND operation, merged by means of the Boolean OR operation, complemented by means of the Boolean NOT operation, etc.
When the integers of the lists are potentially big, the dimension of the bitmap vectors becomes large, so that the memory space required to store the lists in that form becomes a problem. When the lists are scarcely filled with integers of the big range, the explicit integer format is much more compact: a -7o00 O list of K integers in the range 232[ requires K x 32 bits vs. 232 4.3 billion Sbits in the bitmap format.
Bitmap compression methods have been proposed to overcome this Slimitation of the bitmap representation. These methods consist in locating 00oo c 5 regions of the vectors whose components have a constant value, so as to encode only the boundaries of those regions. The remaining regions can be Scoded as bitmap segments. An appreciable gain is achieved when very large Sconstant regions are found. Examples of such bitmap compression methods as Sdisclosed in US Patents No. 5,363,098 and 5,907,297.
oO 00 This type of bitmap compression optimizes the storage of the encoded Sinteger lists, but not their handling. Multiple comparisons are required to detect overlapping bitmap segments when performing basic Boolean operation on the bitmaps (see US Patent No. 6,141,656). This is not computationally efficient. In addition, when the coding data of the constant regions and bitmap segments are stored in memory devices such as hard drives not in RAM), numerous disc read operations are normally required, which is detrimental to the processing speed.
An object of the present invention is to propose alternative methods of encoding and/or combining integer lists, whereby lists of potentially large dimension can be efficiently handled.
SUMMARY OF THE INVENTION Accordingly, the invention proposes methods of encoding and combining integer lists in a computer system, as set out in the appended claims 295 through 336. The invention further proposes a computer system, comprising means arranged and programmed to implement a such method, as well as computer program products having instructions for carrying out such method.
BRIEF DESCRIPTION OF THE DRAWINGS Figures 1-3 show an example of data structure as typically used in a conventional relational database system.
Figure 4 is a diagram representing a data table tree in the example of 00 figures 1-3.
ci Figures 5-7 are diagrams showing respective data graphs constructed with the tree of figure 4 and the data of figures 1-3.
Figure 8 is a flat file representation of the data tables of figures 1-3.
00 5 Figure 9 shows a link table as used in an embodiment of the invention.
Figures IOA-H show the contents of thesauruses corresponding to the data tables of figures 1-3.
Figures 11A-1 4A, 11 G-1 4G and 11IH-1 4H show other representations of the thesauruses of figures 1 OA, 1 OG and 1 OH, respectively.
00 10 Figures 15-16 illustrate the data stored in a data container in connection with the thesauruses of figures 14A, 14G and 14H.
Figure 17 shows another possible structure of the thesaurus of figures 1 OA-1 4A.
Figure 18 is a block diagram of a computer system suitable for implementing the invention.
Figure 19 is a flow chart showing a data graph creation procedure in accordance with an embodiment the invention.
Figure 20 is a flow chart showing a procedure applicable in stage 124 of figure 19.
Figures 21 and 22 are flow charts showing procedures applicable in step 136 of figure Figures 23 and 24 are flow charts showing another procedure applicable in step 136 of figure 20 in two successive coding layers.
Figures 25-32 are tables showing a way of storing thesauruses constructed from the example of figures 1-3.
Figure 33 is a flow chart showing an alternative way of executing steps 135 and 136 of figure 20 when the thesauruses are stored as shown in figure 17.
Figures 34A and 34B are tables showing an alternative embodiment of the tables of figures 31-32.
Figures 340 and 34D are another representation of the tables of figures 34A and 34B.
Figure 35 is a flow chart showing a procedure applicable in the management of tables of the type shown in figures 34A and 34B.
-9- 00 Figure 36 is a general flow chart of a query processing procedure in c accordance with an embodiment of the invention.
Figure 37 is a diagram showing an example of query tree referring to the example of figures 1-3.
00 Figure 38 is another diagram showing an expanded query tree obtained by analyzing the query tree of figure 37.
SFigure 39 is a flow chart showing a procedure of analyzing the query
\O
Stree.
SFigure 40, which is obtained by placing figure 40A above figure 40B, is 010 a flow chart of a recursive function referred in the procedure of figure 39.
0 Figure 41 is the flow chart procedure for identifying matching data graphs based on an expanded query tree as illustrated in figure 38.
Figure 42 is a flow chart of a recursive function FNODE called to in the procedure of figure 41.
Figures 43-45 are flow charts illustrating procedures executed in steps 262, 264 and 265 of figure 42, respectively.
Figure 46 is a flow chart showing an alternative embodiment of the procedure of step 265 of figure 42.
Figure 47 is a flow chart showing another alternative embodiment of the procedure of step 265 of figure 42, when the thesauruses are stored as illustrated in figures 34A and 34B.
Figure 48 is a flow chart of a recursive function FILT called in the procedure of figure 47.
Figure 49 is a flow chart showing another alternative embodiment of the procedure of step 265 of figure 42, when the thesauruses are stored as illustrated in figure 17.
Figure 50 is a flow chart of a variant of a leaf processing used in the function of figure 42.
Figure 51 is a flow chart showing a procedure applicable for scanning the thesaurus relating to a given attribute in order to retrieve the attribute values relevant to a database query.
Figure 52 is a flow chart of a function FINTER referred to in the procedure of figure 51.
Figures 53-55 are flow charts showing procedures executed in steps 00 355, 357 and 358 of figure 52, respectively.
c Figure 56 is a flow chart showing an alternative procedure applicable for scanning the thesaurus relating to a given attribute in order to retrieve the attribute values relevant to a database query, when the thesauruses are stored 00 00 5 as illustrated in figures 34A and 34B.
Figure 57 is a flow chart of a recursive function FFILT called in the Sprocedure of figure 56.
SFigures 58-61 show tables which may be stored to cooperate with the Stables of figures 25-34.
00 10 Figure 62 is a flow chart showing a pre-filtering procedure which may Sbe used prior to a thesaurus scanning similar to that of figure 51.
Figure 63 is a flow chart showing a part of a thesaurus scanning procedure according to figure 51, adapted to take into account a pre-filtering according to figure 62.
Figure 64 is a flow chart showing an alternative procedure applicable in step 358 of figure 52, when the thesauruses are stored as illustrated in figure 17.
Figure 65 is a flow chart showing a procedure applicable in step 335 of figure 51.
Figures 66 and 67 show the contents of an exemplary output table used to provide a query response.
Figure 68 is a diagram illustrating another possible structure of the output table.
Figures 69 and 70 are flow charts showing procedures applicable in step 335 of figure 51 to construct an output table of the type shown in figure 68.
Figure 71 is a flow chart showing a procedure applicable in step 335 of figure 51 to perform computations in a database system by means of a computation table.
Figure 72 is a block diagram of another computer system suitable for implementing the invention.
-11 00 O DESCRIPTION OF PREFERRED EMBODIMENTS VIRTUAL DATA GRAPHS Figures 1-3 illustrate a collection of data which can be stored in a 00
O
N computer memory coupled with a processor arranged for running relational database management programs. This example will be referred to in the following description to give an illustration of the principles and embodiments of cthe invention where appropriate.
Figures 1-3 show a conventional type of data organization in a 00
O
Sdatabase system. The illustrated system handles data relevant to a hypothetical insurance company which manages policies for its clients. The data are organized in three tables relating to the clients, policies and accidents as shown in figures 1-3, respectively.
From a logical point of view, each data table consists of a twodimensional matrix, with rows corresponding to respective records in the table and columns corresponding to respective data attributes of the records or structural features of the database (the latter type of column typically contains either local record identification keys or foreign keys designating records in a target table).
It will be appreciated, however, that for large databases the actual storage of the data in a memory medium, e.g. a magnetic disc, is frequently performed otherwise: each row typically has a memory address where the corresponding attribute values or keys are stored in the order of the columns and separated by predetermined symbols such as the encoded character In our simplified example given to facilitate the explanation of the proposed data structures, the tables are of modest size. In practice, there are usually more tables and more attributes (columns) per table (notwithstanding, one ore more tables could also have a single column). Moreover, the data tables generally include much more records, up to thousands or millions of rows depending on the application.
In that example, the database a group of seven attributes distributed into three sub-groups corresponding to the three data tables. Each attribute has -12- 00 0 a column in the data table corresponding to its sub-group. The client data table N (figure 1) has three attributes, i.e. client name, birth year and gender. The policy data table of figure 2 has two attributes, i.e. policy type ("car" or "house") and policy effect date, and a link column to the client table. The accident data table of figure 3 has two attributes, i.e. date of accident and amount of damages incurred in a given currency, and a link column to the policy table.
In a given data table, each record/row has a unique identifier, referred to as a row-ID. This identifier corresponds to the memory address where the Crecord is stored, usually through a conversion table. It may be stored as an
(N
identification key in a column of the data table for the purposes of unique row identification, but this is not compulsory. In our example, the row-ID's are integer indexes starting from zero for each data table, and they are not stored explicitly in a column of the table.
Some of the tables are linked together, as indicated in the last column of figures 2 and 3. Two tables are directly linked if one of them (source table) has a link column provided for containing foreign keys designating records of the other one (target table).
Those foreign keys, hereafter called links, reflect the hierarchy and organization of the data handled in the relational database system. In our example, each accident dealt with by the insurance company is related to a certain policy managed by the company, hence the policy links of figure 3.
Each policy is for a particular client of the company, hence the client links of figure 2. It will be noted that some links may be optional. For example, some accidents may involve third parties and if there is a separate table for third parties, then each record of the accident table may have a link to the third party table.
Each link typically consists of a row-ID in the target data table. For instance, the accident stored as row-ID 0 in the accident table of figure 3, which took place on October 3, 1998 for an amount of 1,000 has a policy link pointing to the policy stored as row-ID 1 in the policy table of figure 2, i.e. it relates to a car policy subscribed on September 9, 1998 by the client with row-ID 1 in the client table of figure 1, i.e. Andr6, a man born in 1976. If the target table has other forms of record identification keys, for example compound keys, a link may also designate a target record as identified by such -13- 00 O a key.
N The construction of the links obeys a number of rules. In particular, the linked data tables have a directed acyclic graph structure such as a hierarchical tree organization illustrated in figure 4. A root table is defined as a data table for which no other data table has links pointing to its rows, such as the accident table of figure 3. In other words, a root table does not constitute a target table.
Likewise, a leaf table is defined as a data table with no link column, such as the client table of figure 1. In other words, a leaf table does not constitute a source 0table. Figure 4 shows only one root table, but the tree structure of the tables
(N
may have multiple roots.
It may happen in certain cases that a group of related data tables exhibit circular links (for example, the client table may have a link column to the accident data table to indicate the first, or last, accident undergone by each client). In such a case, the tree organization of the data tables is first restored by canceling one link of the circle. Which link should be cancelled is dictated by the semantics of the database (in the above example, the link from the client table to the accident table will naturally be cancelled).
Paths are defined in the data table tree from the root table(s) to the leaf tables. Each path from a root table to a leaf table is defined by a link column of the root table pointing to the leaf table, or by a succession of link columns via one or several intermediate tables.
In figure 4, two leaf tables have been added (dashed lines) to show a tree structure with multiple branching (the simplified example of figures 1-3 provides a tree with a single path shown with a solid line). The added leaf tables are a third party table as mentioned previously and a broker table which is a target table from the policy table, to contain data about the brokers who commercialize the policies.
The data table records that are linked together can be viewed in a similar tree representation (figures The record tree of figure 5 shows that the accident #6 was related to policy #0 (car) subscribed by client #2 (Ariane) through broker #Y and involved third party The solid lines represent respective links from the data tables of figures 2 and 3.
The record tree of figure 6 further shows a Null record which may added in the accident table with a link to row-ID 2 in the policy table, for the -14oo00 reason that, as apparent from the last column of figure 3, no accident has c occurred under policy #2 (subscribed by client #4 (Max) for his house).
A Null, or dummy, record stands for the absence of data. All its attribute values are default values (Null), which means "no value". The purpose of inserting such dummy records in the present scheme is to make sure that any valid record in any data table belongs to at least one record tree stemming from Sa record of a root table (figure 4).
A Null record may also be present in each data table which is a target Stable for at least one link column of a source table. When a row of the source 0 10 table has no foreign key in the corresponding link column, the record tree(s) Sincluding that row is (are) completed with a Null at the location of said target table. This situation occurs for the broker table in the example illustrated in figure 6. To represent this, a default value can be written in the link column of the source table, whereby the Null record is implicitly present in the target table.
The Null records are inserted where appropriate in a process of scanning every single path in the data table tree from the leaf table of said path to the root table, i.e. downwardly in figure 4. When examining one source/target table pair in the scanning of a path, the target table row-ID values that do not occur in the relevant link column of the source table are first listed, and then for each missing row-ID value of the list, a new Null record is generated in the source table with said missing row-ID value in said link column.
If a Null record is thus inserted in a data table having several link columns, the Null record receives the default value in any link column other that the one pertaining to the path being scanned, to indicate that the corresponding link is to a Null record in the target table. This situation occurs for the third party table in the example illustrated in figure 6.
Scanning the data table tree from the leaves to the root is important.
Otherwise, Null records containing links to other Null records in a target table might be overlooked. An example is shown in figure 7 which shows a record tree relating to client #0 (Oscar) who has no (more) policy: the accident table contains a Null record pointing to another Null record of the policy table which, in turn, points to client the root of the record tree would not be in the root (accident) table if the paths were scanned upwardly.
00
OO
O In a conventional database organization as shown in figures 1-3, the 0 N link keys are provided to optimize the memory usage. To illustrate this, reference may be made to the flat file shown in figure 8, which has exactly the same informational content as the three data tables of figures 1-3 (the third 00 0 5 party and broker tables are ignored in the sequel).
A flat file has a column for each one of the attributes (columns) of the data tables. For each complete record tree that can be constructed with the data table tree structure of figure 4, the flat file has a row which contains, in the relevant columns, the attribute values of all the records of said tree. The rows 00 of the flat file are referred to herein as data graphs. Each data graph is identified by a flat file row-ID shown in the left-hand portion of figure 8. The record trees of figures 5-7 are compact representations of the data graphs at row-ID's 6, 9 and 11, respectively.
Although the flat file representation is sometimes referred to the literature, it is of little practical interest for databases of significant size. The reason is that it requires excessive redundancy in the data storage.
For example, in our small-sized case, Andre's birth year and gender, as well as the details of his car policy are written three times in the flat file (row-ID's 0, 3 and whereas they are written only once, along with link values, when the storage is in the form of data tables as in figures 1-3. With databases of realistic size, such redundancy is not acceptable.
The database system according to the invention makes use of the flat file concept. However, it does not require the storage of the flat file as shown in figure 8, hence the concept of "virtual flat file" containing "virtual data graphs" (VDG). The term "virtual" refers to the fact that the flat file or data graphs need not be maintained explicitly in memory, although their data structure is used as a reference in the execution of the method.
In a particular embodiment of the invention, the flat file is reduced to a link table as shown in figure 9. Each row of the link table corresponds to a respective row of the flat file, i.e. to a record tree as shown in figures 5-7.
The columns of the link table respectively correspond to the data tables of figures 1-3. In other words, each column of the link table is associated with an attribute sub-group which is the sub-group of attributes allocated to the corresponding (target) data table. Each column of the link table contains link -16- 00 0 values (row-ID's) designating records of the corresponding target data table.
c The row of the link table corresponding to a given data graph contains a default value in the column corresponding to any data table having a Null record in the record tree representing said data graph.
oo The data table row-ID's found in one row of the link table enable the retrieval of linked data from the data table, i.e. a data graph or part of it. All the Slinks are represented in the link table. If one replaces the row-ID's stored in the columns of the link table of figure 9 by the attribute values stored in the Sidentified rows of the respective data tables of figures 1-3, one recovers the flat 00 0 10 file of figure 8.
The proposed system further uses word thesauruses (figure each associated with a respective column of one of the data tables, i.e. with one of the attributes.
In a preferred embodiment, there is one word thesaurus for each attribute used in the database system. However, if some attributes are known to be never or almost never used in the query criteria, then it is possible to dispense with the thesaurus for such attribute.
Each word thesaurus associated with one column of a data table has an entry for each attribute value found in that column. Such attribute value is referred to herein as a "word". A word has one entry in a thesaurus, and only one, as soon as it occurs at least once in the associated data table column.
The Null value is a valid word in the thesaurus.
The entries of each thesaurus are sorted on the basis of the attribute values. An order relationship is therefore defined for each attribute category.
This requires attention when the attribute value fields of the thesaurus files are defined and dimensioned.
Typically, the words are in the ASCII format and their category is selected for each column among the categories "integer", "real" and "character string". Character strings are sorted according to the usual lexicographical order. A date field is preferably declared as a character string such as yyyy (mm) (dd) (figures 10OB, 10E and 10OF), yyyy representing the year, mm the month (optionally) and dd the day in the month (optionally). The thesaurus sorting thus puts any dates in the chronological order. If the attribute category is "integer", the numbers are aligned on the right-hand digit, in order to provide -17oo00 the natural order relationship among the integer data values. If the attribute C category is "real", the numbers are aligned according to their whole parts, with Sas many digits on the right as in the value having the longest decimal part in C the column.
00 0 5 The Null value is at one end at the beginning) of each sorted thesaurus.
SEach entry E(W) for a word W in a thesaurus associated with a column C(T) of a data table T contains information for identifying every row of the flat Sfile which has the attribute value W in the column corresponding to When 00 010 the flat file is stored virtually in the form of a link table, the information Scontained in entry E(W) is used for identifying every row of the link table which, in the column corresponding to the data table T, has a link pointing to a row having the value W in column C(T).
In other words, with the contents of the entry E(W) in the thesaurus associated with column we can retrieve all the data graphs whose corresponding attribute has the value W.
Such contents represent a row-ID list pointing to rows of the (virtual) flat file, i.e. a data graph identifier list. Such list may be empty, in particular for the Null value in some of the thesauruses (as in figures Two alternative representations of the data graph identifier lists in the thesauruses are illustrated in figures 10A-G for the seven attribute columns of figures 1-3. The first one is the form of explicit integer lists.
The second (equivalent) representation is in the form of bitmap vectors whose length is equal to (or greater than) the number of rows in the virtual flat file, i.e. the number of data graphs. The bit of position i in a bitmap vector (i 2 0) indicates whether the integer i belongs or not to the row-ID list represented by the bitmap vector. In our simplified example, the flat file has 12 rows so that the bitmap vectors may be of dimension 12.
The above-described data structure, comprising a virtual flat file and sorted thesaurus files pointing to rows of the virtual flat file is referred to herein as a VDG structure.
The VDG structure provides a powerful tool for efficiently processing queries in the database.
-18- 00 The virtual flat file is a reference table which defines a unified algebraic C framework for the entries of all the thesauruses. The query criteria are Sexamined with reference to the relevant thesauruses to obtain a flat file row-ID list (or bitmap vector) which represents all data graphs matching the query 00 00 5 criteria, if any. The results can then be delivered by accessing the link table rows pointed to in that row-ID list to read the links which appear in part or all of the columns in order to retrieve attributes values as desired for the result presentation.
SThe processing with reference to the thesauruses mainly consists in 00 10 logical operations performed on the row-ID lists to which they point. If they are Srepresented as integer lists, such operations can be reduced to basic merge, intersect and/or complement operations, which respectively correspond to Boolean OR, AND, NOT operations in the bitmap representation.
The VDG structure also provides an efficient tool for accessing the contents of the database, which does not require accesses to the data tables.
This tool is well suited to queries having special result presentation features such as SORT, COUNT, DISTINCT, ORDER BY, GROUP BY, etc. clauses, and also for carrying out any type of calculation on the data values of the records which match the query.
Example 1: As an illustration, consider the following query: find the client name and accident date for all car accidents that incurred damages higher than 900, and group the results according to the client name. The query may be processed as follows. First, all the flat file row-ID lists identified in the accident amount thesaurus entries relating to amounts higher than 900 (the five last rows of figure 10G) are merged, which yields the list 1,3, 5, 6, 7} (or the bitmap vector 110101110000 obtained by a bitwise Boolean OR). Then the intersection of that list with the row-ID list identified in the policy type thesaurus entry relating to the value "car" (the second row of figure 10D) is determined.
The result list 3, 5, 6} (or bitmap vector 100101100000 obtained by a bitwise Boolean AND) specifies the data graphs that satisfy the query criteria. Finally, the entries of the client name thesaurus (figure 10A) are read sequentially and when there is a non-empty intersection between the result list and the row-ID -19- 00 list identified in the client name thesaurus entry, the link table rows having their cl row-ID's in that intersection are read to retrieve the desired attribute values. In our case, the output would be: Andre [accident dates 1998 10 03 and 1999 06 12 Ariane [accident date 1999 12 09 and Laure [accident 00 C, 5 date 199912 08 SThe above type of processing is applicable to any kind of query. The Cc response is prepared by referring only to the sorted thesauruses, which implicitly refer to the flat file framework. Once an output flat file row-ID list is 00 obtained, the link table or the thesauruses can be used for retrieving the data of interest.
Example 2: To further illustrate the outstanding performance of the VDG scheme, let us consider the query which consists in identifying any client who has had a car accident before the beginning of the civil year of his or her 3 5 th birthday. In a typical conventional system, all the records of the accident data table of figure 3 have to be read to obtain the date attribute and policy link values. For each accident record, the policy data table is read at the row-ID found in the policy link column to obtain the policy type attribute and client link values and then, if the policy type is "car", another access to the client data table is necessary at the row-ID found in the client link column to obtain the birth year attribute value.
The latter value is compared with the date attribute value previously obtained in the accident table to determine whether the criteria of the query are fulfilled.
If the data tables are sorted beforehand on the basis of the attributes referred to in the query criteria, such conventional processing may be accelerated by limiting the number of disc accesses. This requires data table sorting every time records are added, deleted or amended, which is not practical when the collection of data is large. And it is possible only in specific cases dictated by the data table sorting rule.
For example, if the client and policy tables were respectively sorted on the basis of the birth year and policy type attributes, the preceding request could be processed in a less prohibitive time by accessing the data records in a suitable order and with the help of the computer cache memory. However, the tip would not apply to other similar queries assuming an additional 00 column in the policy table for containing excess amounts, the identification of all c accidents for which the damage amount was more than ten times the excess amount would raise the same problems).
With the VDG scheme, the above illustrative query can be dealt with in 00 00 5 a very efficient manner. By means of the client birth year thesaurus (figure and the accident date thesaurus (figure 10OG), the computer identifies the {client Sbirth year, accident date} word pairs which satisfy the date criterion, i.e.
accident date earlier than beginning of client's birth year 35. This is done Swithout worrying about whether the accident was undergone by the client. Such 00 10 identification is relatively easy for any possible pair of attributes since any Sattribute likely to be referred to in queries has a sorted thesaurus. For each identified word pair, the intersection of the two flat file row-ID lists of the thesaurus entries is obtained. The resulting integer lists are merged. Then the computer intersects the row-ID list of the entry relating to the value "car" in the policy type thesaurus (second row in figure 10D) with the list 1, 3, 5, 6, 8, 10} resulting from the merger. The resulting list 3, 5, 6, 8} designates a set of matching rows in the link table, from which the relevant client names (Andre -3 times-, Laure and Ariane) are readily retrieved by accessing the client table records whose row-ID's appear in the matching rows and in the client column of the link table.
It is noted that, when processing a query, the link table is simply used as a mean to retrieve the data of interest. Different ways of achieving this retrieval function may be thought of.
A method is to keep the original data tables (figures 1-3) in memory.
However, it is worth noting that the link columns may be deleted from those data tables, since their contents are already present in the link table.
From the observation that all possible attribute values are stored in the corresponding thesauruses, another method is to store in the link table pointers to the thesauruses. The latter method reduces the required disc space since an attribute value has to be written only once, even if the value occurs frequently in a data table column. It enables to quickly retrieve attribute values which occur in a given flat file row without requiring the use of the original data tables.
For certain attributes, it may be interesting to store the explicit attribute -21 00 O values in the link table, i.e. like in the flat file. In particular, this may be 0 N interesting for numerical fields (usually of smaller size than character strings) whose values are very dispersed and which are often requested among the output attributes of a query response money amounts). If those values are
O
5 explicitly written in the link table, there can be an appreciable gain in the disc accesses required for fetching the output data, at the cost of a moderate increase in the needed disc space.
In the foregoing explanations, the link table is a sort of skeleton of the flat file, which is stored to facilitate the data retrieval once the list of flat file row- ID's matching the query has been determined by means of the sorted thesauruses.
Notwithstanding, storing a link table or any form of table reflecting the flat file structure is not strictly necessary. In an advantageous embodiment, the data graphs (or their portions requested for the result presentation) may be recovered from the thesaurus files only. To illustrate this, consider again Example 2. Once the result list 3, 5, 6, 8} of matching virtual flat file rows has been obtained by processing the query criteria with reference to the thesaurus files, it is possible to scan the client name thesaurus and, for each word (client name), to intersect the flat file row-ID list represented in the thesaurus with the result list. If the intersection is non-empty, the word is included in the output. It may be accompanied with the intersection list to allow the user to quickly obtain further information from the relevant data graphs.
This method requires the minimum memory space since only the thesaurus files need to be stored.
Even if a link table is stored, it may be advantageous, for certain queries, to retrieve the attribute values by scanning the thesaurus(es) as indicated hereabove rather than through the link table. This may occur, in particular, to perform computations on the data values when there is a relatively slow interface between the query processor and the data tables, e.g. an ODBC interface ("Open DataBase Connectivity").
Another advantage of the VDG scheme is that it provides a query processing engine which can co-exist with the data tables in their original form.
Changes in the thesaurus entries are then done in response to corresponding changes in the original data tables. This is an interesting feature for users who -22oo00 find it important to keep their data in the form of conventional tables, because c they do not want to be too dependent on a new system or because they need to access their tables through a conventional interface for other applications.
00oO MACROWORDS The above-described VDG's are advantageously completed with prefix thesauruses also referred to as macroword thesauruses.
SLike the above-described word thesauruses, each macroword thesaurus is associated with one attribute, i.e. one column of one data table. In oo addition, it has a prefix length (or truncation length) parameter.
Each entry of the macroword thesaurus relates to a range of attribute values, and contains or points to data for identifying all the flat file rows having, in the column corresponding to said attribute, an attribute value which falls within said range. The range corresponding to the entry of the macroword thesaurus corresponds to a prefix value having the prefix length assigned to the thesaurus: any word beginning by such prefix value has its flat file row-ID list included in that of the macroword. If the prefix length is noted P, a macroword
C
1
C
2 0 P is the set of all values of the attribute which begin by the P characters or digits C 1
C
2
C
P
The limit case where the prefix length is the number of characters or digits of the value field truncation length is zero) is the word thesaurus described previously.
In other words, the macroword thesaurus entry identifies the flat file row-ID list (or bitmap vector) corresponding to the merger of the flat file row-ID lists (or to the logical OR between the bitmap vectors) which are identified in the entries of the word thesaurus corresponding to the individual words encompassed by the macroword.
Each thesaurus (word or macroword) associated with an attribute AT can thus be defined with reference to a partition into subsets of the set of words which can be assigned to attribute AT in the relevant data table record. It has a respective entry for each subset including at least one word assigned to attribute AT, this entry being associated with a flat file row-ID list including any ID of a flat file row having a word of the subset assigned to attribute AT. In the case of a macroword thesaurus, the partition is such that each subset consists -23oo00 of words beginning by a common prefix. In the case of a word thesaurus, the C partition is such that each subset consists of only one word.
tAs an example, figure 10H shows the accident amount macroword thesaurus for a truncation length of 3 characters. It is not necessary to repeat oO 00 5 the Null entry, which is already in the word thesaurus. Such a macroword thesaurus provides substantial economy in terms of disc accesses and flat file Srow-ID list mergers. For example, for obtaining information about the accidents Sthat had an amount between 1,000 and 1,999, one access to the macroword Sthesaurus of figure 10H is enough to obtain the relevant list of flat file row-ID's 00 0 10 3, whereas it would require two thesaurus accesses and one merge Soperation with the non-truncated accident amount thesaurus of figure 10G. The gain can be quite substantial for large databases and attributes of high cardinality, i.e. with many possible attribute values.
Macroword thesauruses based on prefix or truncation lengths provide a great flexibility in the processing of range-based query criteria. It is possible, for a given attribute, to provide several macroword thesauruses having different prefix lengths in order to optimize the processing speed of various queries.
Typically, a date attribute may have a yearly macroword thesaurus (prefix length 4) and a monthly thesaurus (prefix length 6) in addition to the (daily) word thesaurus. Any other kind of attribute (numbers or text) may lend itself to a convenient macroword thesaurus hierarchy.
VDG COMPRESSION With the VDG scheme as described so far, the memory space required by the thesaurus files is not optimized.
The row-ID's being integers typically coded with 32 bits, if a word occurs n times in the attribute column of the flat file of figure 8, nx32 bits are needed to explicitly encode its flat file row-ID lists. If the flat file has Nmax rows (for example millions of rows), Nmax bits are needed for each entry in the bitmap representation, for whatever value of n.
Generally speaking, for an attribute of high cardinality, such as the date or amount attributes (figures 10E-G), the flat file row-ID lists are scarcely filled, so that the explicit integer list representation is satisfactory in terms of memory -24- 00 C requirement, while the bitmap representation can be prohibitive for large flat C files. Other attributes have a low cardinality, such as the client gender or policy type attribute in our example (figures 1OC-D), whereby the bitmap representation is well suited, while the integer list representation is unfavorable.
oo It is possible to adopt for each thesaurus a representation which is believed to be the most appropriate in order to reduce the needed memory Sspace. However, this requires an a priori knowledge of how the attribute values Cwill be distributed. Many attributes can be ambiguous in this respect, and the optimization may also be difficult for different macroword sizes relating to a 00 0 10 given attribute.
SBitmap compression methods as known in the art US Patent No.
5,363,098 or No. 5,907,297) may also be used. A problem is that those methods are designed essentially for optimizing the storage volume, not the processing speed. In the VDG context, the advantage of reduced memory space may be counterbalanced by the disadvantage of longer response times due to multiple compression and/or decompression operations when processing a query. To the contrary, it is desired to increase the processing speed as much as possible.
In the preferred implementation of the VDG scheme, the compression of the flat file row-ID lists in the thesauruses is carried out by dividing a range covering all the row-IDs of the flat file into subsets according to a predetermined pattern. Then, each flat file row-ID list of a thesaurus entry is encoded with data for locating in the pattern each subset of the range which contains at least one row-ID of the list, and data representing the position of each integer of the row-ID list within any subset thus located.
The row-ID range Nmax[ is selected to be equal to or larger than the number of rows in the flat file. The "predetermined pattern" conveniently defines the "subsets" as consecutive intervals D1-1[, [D1,2xD1-l[, etc., having the same length D1 within said range.
The coding data can then be produced very simply by Euclidean division. For any positive numbers x and y, we note LxJ the integer equal to or immediately below x, [xl the integer equal to or immediately above x, and x mod y x Lx/yJ. A Euclidean division by D1 is performed for each row-ID N 00 o of the input list. The quotient Q1 =LN/D1j indicates the rank of the corresponding interval in the pattern (Q1 while the remainder R1 N modD1 represents the position of the row-ID within the interval (0 R1 D1). The decoding is also very simple: from the encoding data Q1 00 oO C 5 and R1 for an item of the coded list, the row-ID is N QlxD1 R1.
Advantageously, the interval length is a whole power of 2, so that the \OEuclidean divisions are performed by straightforward bit shift operations. A Stypical length is D1 27 128.
c The encoding method can be expressed equivalently by referring to the 00oo bitmap representation. Each bitmap vector is divided into bitmap segments (or other types of bit groups if a more tortuous pattern is referred to), and for each segment containing at least one the coding data include the rank Q1) and the contents of the segment. The all zero segments are discarded.
Figures 11A, 11G and 11H are other presentations of the client name and accident amount word thesauruses of figures 10A and 1OG and of the accident amount macroword thesaurus of figure 10H, with D1 3 (a non-typical value of D1 used here for conciseness). The second columns are copied from the last columns of figures 10A, 10G and 10H, respectively, with blanks to highlight the segmentation of the bitmap vectors. The third columns show the lists of ranks Euclidean quotients Q1) resulting from the encoding, and the fourth columns show the corresponding non-zero bitmap segments (having a 1 at the position of each remainder Ri).
It is observed that for each thesaurus entry, the ranks Q1 form an integer list included in the range Nlmax[, with N max Nmax/D11].
According to a preferred embodiment of the invention, a similar type of encoding can be applied to those rank lists. The encoding process may be iterated several times, with the same encoding pattern or different ones. In particular, the interval lengths could vary from one iteration to the next one.
They are preferably whole powers of 2.
The ranks and bitmap segments obtained in the first iteration with the interval length D1 are called layer 1 (or L1) ranks and layer 1 segments (figures 11A, 11G and 11H). Those obtained in the second iteration, with an interval length noted D2, are called layer 2 (or L2) ranks and layer 2 segments (figures -26- 00 0 12A, 12G and 12H), and so forth.
C In the following, n denotes the number of encoding layers numbered k with 1 k< n, layer k having a divisor parameter Dk, and the product k-1 00o Ak Dk' being the number of flat file row-ID's encompassed by one bit of a CI k'=l layer k bitmap segment (Al 1).
IDIn the simplified case illustrated in figures 12A, 12G and 12H, n 2 and C the second encoding layer uses D2 2. The columns labeled "L1 Bitmap" are a N bitmap representation of the layer 1 rank lists, with blanks to highlight the oO further bitmap segmentation leading to the layer 2 data shown in the last two C 10 columns.
The layer 1 and layer 2 coding data are summarized in figures 13A, 13G and 13H which show a possible way of storing the flat file row-ID list information. It is noted that storage of the layer 1 rank lists is not strictly necessary since those list are completely defined by the layer 2 data. However, it will be appreciated further on that such storage somewhat simplifies the query processing in certain embodiments of the invention.
The same kind of encoding may be used for any one of the word and macroword thesauruses. However, it is also possible for some of them to retain a conventional type of row-ID list storage (explicit integer lists or bitmap vector), i.e. n 0. In particular, the explicit integer list representation may remain wellsuited for scarcely distributed thesauruses.
Figures 14-16 show another possible way of storing the information contained in the thesauruses of figures 13A, 13G and 13H. For each encoding layer, the thesaurus entries are associated with respective chains of records in a data container (figure 15 for layer 1 and figure 16 for layer 2) including a rank file and a bitmap segment file. Each record in the layer k rank file (1 k n) has a field for receiving a rank value (between 0 and Nkmax-1) and a field for receiving an address of a next record in the rank file. A default value in the next address field (0 in the example shown) means that the record is the last one of the chain. The bitmap segment file (right-hand parts of figures 15 and 16) is addressed in the same manner as the associated rank file. In each record for layer k, its has a bitmap field of Dk bits for receiving the bitmap segment -27oo00 associated with the rank stored in the corresponding record of the rank file. It c will be appreciated that the rank values and next record addresses could also be stored in two separated files having a common addressing rather than in two fields of the same file.
oo For each VDG coding layer k, an entry in a thesaurus has a head address field for containing an address in the layer k rank file where a first rank Srecord concerning the entry is stored. From there, the relevant rank chain can be retrieved. For example, Max's layer 1 ranks 0, 2 and 3 (figure 13A) are Sretrieved by accessing the rank file of figure 15 at the address 29 indicated in 00 10 the head address field of the thesaurus entry (figure 14A), and then at the Schained addresses 27 and 15. In parallel, the corresponding layer 1 bitmap segments 001, 010 and 100 are read. Figures 15 and 16 also show that the rank and bitmap segment files have an additional chain consisting of free records (addresses 32/33/17 in figure 15 and 29/8/17/24 in figure 16). The head of the latter chain is allocated to write new coding data when necessary.
Preferably, the thesaurus entry further has a layer 1 tail address field for containing the address in the rank file of the last record of the chain pertaining to the entry, as shown in the third columns of figures 14A, 14G and 14H. This facilitates the updating of the encoding data storage. For instance, the insertion of a new layer 1 rank for Max, with a corresponding layer 1 bitmap segment, may proceed as follows: the head of the free record chain is located (address 32); the address (33) found in its next record address field becomes the address of the new free record chain head; the records at address 32 receives the new layer 1 rank in the rank field, the end-of-chain flag in the next address field and the new bitmap segment in the segment field, respectively; the address obtained in the tail address field of Max's thesaurus entry (15) is accessed directly (bypassing the potentially long path along the chain) to write the address (32) of the new data, which is also written into the tail address field of Max's thesaurus entry. The fact that the layer 1 rank is a new one for Max can be determined from the layer 2 data: if the layer 2 updating performed previously has changed a to a in the layer 2 bitmap segment, then the layer 1 rank is a new one for the word; otherwise the layer 1 rank is already present in Max's layer 1 rank list which has to be scanned until said layer 1 rank is found. If there are more than two encoding layers, it is 28 00
OO
O possible to provide a layer k tail address field in the thesaurus entries for k 1 N and to proceed in the same manner for new layer k ranks as determined from the layer k+1 data. However the main gain in doing so lies in layer 1 which has the longest chains.
O
5 In figures 15 and 16, the coding data coming from three heterogeneous thesauruses (client name thesaurus, accident amount word thesaurus and accident amount macroword thesaurus) are stored in the same data containers.
The other thesauruses are ignored for clarity of the figures. In fact, all the coding data of one layer may be piled up in the same rank bitmap segment 0 10 files, irrespective of the word or macroword thesaurus where they come from.
Any entry of any thesaurus will then point to a respective record chain in those two coupled files.
In order to optimize the processing speed, it is preferable to sort the rank and bitmap segment files for disc storage, so as to group the records based on the thesaurus entries to which they pertain. The advantage in doing so is that the reading of the coding data for one thesaurus entry requires fewer disc accesses, by means of the computer cache memory which enables the simultaneous RAM loading of a group of physically contiguous records. A batch execution of that optimization sorting, which requires a simultaneous update of the thesaurus entries (head and tail address fields), may be used to avoid untimely resource usage.
In order to facilitate this optimization, it is preferable to use separate data containers for different thesauruses, rather than common files. This reduces the amount of data to be sorted each time. In particular, using one rank bitmap segment file pair for each thesaurus and each coding layer seems appropriate.
A further possibility is to provide separate rank and bitmap segment files for the different thesaurus entries. This requires a higher number of file declarations in the memory. But it is optimal in terms of processing speed without requiring the above-mentioned optimization sorting operation. It also eliminates the need for storing head and tail addresses pointing to record chains: the thesaurus entries simply designate data containers where the rank and bitmap segment data are stored.
Figure 17 illustrates how the data of the client name thesaurus may be -29oo00 0 arranged in the latter case. The thesaurus has an index register where the N thesaurus words are kept sorted. For each word and each coding layer k, two files are provided in the system memory, one for containing the rank data (noted NOk), and one for containing the bitmap segments (noted HPk). The oo 00 5 attribute value (Andre, Ariane and so on) can be used to name the corresponding files. The storage is less compact than with common data Scontainers as shown in figures 15-16, but access to the data relating to one Sword can be very quick without requiring any sorting.
SAn arrangement as illustrated in figure 17 is preferred if the operating system does not suffer too severe limitations regarding the number of files that Scan be managed in the memory, and if the overhead due to the storage of numerous individual files is not a problem. Otherwise, it is possible to group the rank and bitmap segment files relating to different (macro)words, or even to different thesauruses, as indicated before.
In addition to enhanced data compression, the multi-layer row-ID list encoding method provides a substantial acceleration of most query processing.
The processing is first performed in the higher layer, and the results are passed to the lower layers. The coding scheme preserves a common structure for the entries of all thesauruses in each layer, imprinted by the original structure imparted by the virtual flat file. Accordingly, collective logical operations between integer lists or bitmaps originating from different thesauruses are possible in the various layers. The results obtained in a layer k+l provide a sort of filter for executing the minimum number of operations in layer k, which enhances the processing efficiency, particularly for multi-attribute query criteria.
This enhancement is hardly visible on our simplified example, which is too small. Consider the following request: find Max's accidents for an amount of 1,300 (there is no response). The direct layer 1 processing is to read and decode the relevant layer 1 data to rebuild the bitmap vectors of the words "Max" and "1,300" in the thesauruses of figures 10A and 10G, and to compute the logical AND of the two bitmap vectors. Exactly the same kind of processing in layer 2 requires fewer read operations since there are fewer layer 2 records, and avoids any layer 1 processing because there is no overlap between the two layer 1 rank lists for the words "Max" and "1,300" 2 nd column of figures 13A and 13G). If the same request is made with the amount value 10,000 oo00 0 instead of 1,300, the layer 2 results may reduce the layer 1 processing to c loading the two layer 1 bitmap segments corresponding to rank 0 (the other ranks are filtered out) and computing the AND between those segments.
With more representative values of D1 and D2 D1 D2 =128) 00 0o 5 and a large size database, this filtering principle between two layers provides a spectacular gain. Large pieces of bitmap vectors disappear from the layer 1 (or generally layer k 1) processing owing to the groupwise filtering achieved in Ff layer 2 (layer k+l1).
00 VDG CREATION AND MANAGEMENT Figure 18 shows an exemplary layout of a computer system suitable for forming the hardware platform of a system in accordance with the invention.
That hardware platform may be of conventional type. It has a bus 100 for exchanging digital signals between a plurality of units including: a central processing unit (CPU) 101; a read only memory (ROM) 102 for containing basic operating instructions of the CPU; a random access memory (RAM) 103 which provides a working space for the CPU 101, dynamically containing program instructions and variables handled by the CPU; a man-machine interface 104 which comprises circuitry for controlling one or more display devices (or other kind of devices for delivering information to humans) and circuitry for inputting information to the computer system from acquisition devices such as a keyboard, mouse, digital pen, tactile screen, audio interface, etc.; a mass storage device for storing data and computer programs to be loaded into RAM 103. In the typical example shown in figure 18, the mass storage device comprises a hard drive 105 for storing data on a set of magnetic discs 106. It will be appreciated that any kind of mass storage device, magnetic or optical, may be used in implementing the invention.
For implementing the present invention, the hard drive unit 105 is used for storing data structures as described in the foregoing and programs described in more detail herebelow. The program instructions and the useful 31 00 0 data are loaded into the dynamic storage RAM 103 for processing by CPU 101.
Nl The query results are stored in the hard drive and/or delivered to a user ct through the man-machine interface 104 or through a network interface (not shown) in the case of a remote access.
00 The mass storage device 105 is suitable for the storage of large amounts of data, but with an access time significantly longer than the RAM 103. This is due to the time needed to put the reading head of the hard drive in front of the desired disc location. As well-known in the art, when a disc access is performed in hard drive 105, the data that are actually read form a block of 00 10 data stored contiguously on the hard disc, which is loaded in a portion of RAM 103, called "cache" memory. When it is known that the CPU is likely to need different data pieces simultaneously or in a short period of time, it is convenient to arrange the data storage organization such that those data belong to the same block so as to be retrievable by a single disc access, which minimizes the processing time.
The system of figure 18 may be a personal computer (PC) of the desktop or laptop type. It may also be a workstation or a mainframe computer.
Of course, other hardware platforms may be used for implementing the invention. In particular, those skilled in the art will appreciate that many calculations performed on the bitmap segments and vectors lend themselves to efficient implementation by means of dedicated logical circuits or coprocessors.
Furthermore, parallel computation is very natural in this system.
The process of creating the VDG data structure is now described with reference to figure 19 from input data tables being in the form shown in figures 1-3, which is the most usual data representation. That creation process is thus suitable for creating the VDG structure from legacy databases. From the VOG updating rules described further on, it will be understood that VDG's may also be created directly from brand new data.
In certain databases, the data tables have their rows characterized by compound keys rather than row-ID's as in figures 1-3. A compound key is the concatenation of the contents of several key fields of a data table. In a source data table, the records include foreign keys which designate the compound keys of records of a target table. If such a legacy databases is handled, the first stage of the VDG creation procedure is to translate the compound keys into -32- 00 0 single keys such as the row-ID's shown in figures 1-3. This (optional) first stage c is illustrated in box 120 in figure 19.
The second stage 121 consists in completing the data tables with Null records where appropriate. This is performed as discussed hereabove with 00oO C 5 reference to figures 4-7, by scanning every path in the data table tree from the leaf table of the path to the root table. A link to a Null record is denoted by the default value As a result, for each source target table pair, all the row-IDs Sof the target table are present at least once in the source table link column.
SThe next stage 122 comprises the creation of the word thesauruses.
oO 10 The relevant attributes, i.e. those likely to be used in query criteria (it may be all Sof them), are determined. For each of the determined attribute, the word format (type and length) is selected. For each word thesaurus, the attribute values occurring in the associated column, including the Null value, are read from the data table stored in the hard drive 105. Repeated values are eliminated, and the remaining values are sorted based on the attribute values and the order relationship applicable to the type of attribute. This sorting operation may be performed in successive data record blocks transferred from the hard drive 105 to the CPU cache memory, with an external sorting after processing each block.
The VDG creation procedure then proceeds to a stage 123 of deciding the relevant macroword formats. Some word thesauruses will not give rise to macroword thesauruses (for example, the client gender thesaurus of figure 1 OC needs no macrowords). In contrast, other thesauruses, for example corresponding to date or amount attributes, will give rise to several macroword thesauruses having different truncation lengths. If the values found in an attribute column include characters strings beginning by most letters of the alphabet, it is convenient to create a macroword thesaurus with a prefix length of one character. The decision about the suitable macroword hierarchy may be made by a database manager and input through the man-machine interface 104. It may also be an automatic process, based on the attribute type and/or the distribution of the words in the thesaurus. In stage 123, the macroword thesauruses are also created, directly in sorted form, by applying the truncation to the words of the corresponding word thesauruses and deleting the repeated macrowords.
-33- 00 Each entry of a macroword thesaurus preferably indicates the first word ci (or lower level macroword) of the lower level thesaurus included in the range covered by the macroword. This indication of the lowest word (or macroword) whose prefix matches the macroword under consideration reduces the time oO 00 5 needed to access the "children" of that macroword since the first one can be accessed without scanning the lower level thesaurus. Alternatively, or Scumulatively, the highest word (or lower level macroword) whose prefix t' matches the macroword could be indicated in the macroword thesaurus.
SIn stage 124, the rows of the link table and the entries of the individual 00 010 word thesauruses are generated. This is preferably done without storing the Swhole flat file (figure for example according to the algorithm illustrated in figure 20, in the case of an encoding with n 2 layers.
In the embodiments illustrated in figures 20-32, it is assumed that each entry of a thesaurus for an attribute value contains an index WI which forms a row-ID in an auxiliary table of the type shown in figure 14A, 14G or 14H, pointing to coding data containers of the type shown in figures 15 and 16. For each encoding layer k, this auxiliary table has a column for containing the address, noted ATFk(WI), of a first record concerning the thesaurus word of index WI in the coding data container relating to layer k; a column for containing the address, noted AT_Lk(WI), of the last record of the chain for thesaurus word of index WI in the data container; as indicated before, the latter column may be present only for layer 1.
As mentioned previously, the data container for a given coding layer may be shared between all or part of the thesauruses, or it may be associated with each individual thesaurus. A record at address AD 1) in the layer k container (here assumed to be common to all thesauruses) comprises a first field NOk(AD) for containing the rank data as an integer ranging from 0 to Dk-1, a second field for containing the address NXk(AD) of the next record of the chain (this address is 0 if there is no further address), and a third field for containing the corresponding bitmap segment HPk(AD). The layer k container has a free record chain whose first record address is noted Hk.
It is noted that the auxiliary table could also be shared by several -34- 00 thesauruses containing distinct word indexes to access such common auxiliary C table.
CtBefore stage 124, all the records of the data container are chained Stogether and free, and the bitmap segments HPk(AD) are initialized with all 00 0 5 zero segments. The columns AT_Fk and AT_Lk of all the auxiliary tables are also initialized with the value 0.
SThe quotient and the remainder of the Euclidean division of a flat file row-ID by D1 are respectively noted Q1 and R1. For each further layer k> 1, SQk and Rk respectively denote the quotient and remainder of the Euclidean 00 010 division of Q(k-1) by Dk. At the initialization step 130 of figure 20, the integers SQ1, R1, Q2 and R2 are set to 0.
The rows of the root table(s), which may be read one by one or block by block from the hard drive 105, are selected one by one in step 131. The records of the other data tables which are linked with the selected root table row are read in step 132. This provides a data graph of the type illustrated in compact form in figures 5-7.
The links of those data graphs, i.e. the row-ID's in the data tables, are written into the relevant columns of the link table (figure 9) at row-ID QlxD1 R1 (step 133). If there is no link table, step 133 is skipped.
For the current data graph, the different attributes AT are successively selected (step 134). The value of the selected attribute AT is located by means of a dichotomic search in the corresponding thesaurus, and its word index WI is read in step 135. Step 136, which will be detailed hereafter with reference to figures 21-24, consists in updating the auxiliary table and data containers with respect to the AT thesaurus entry for the word index WI. This updating corresponds to the insertion of the current flat file row-ID Q1 x D1 R1 into the integer list relating to the thesaurus word index WI.
When all the attributes have been thus handled (test 137), the layer 1 remainder index R1 is incremented by one unit in step 138. If the incremented R1 is equal to D1 (test 139), then the index R1 is reset to 0, and the layer 1 quotient index Q1 and layer 2 remainder index R2 are each incremented by one unit in step 140. If the incremented R2 is equal to D2 (test 141), then the index R2 is reset to 0, and the layer 2 quotient Q2 is incremented by one unit in 00 0 step 142. After step 142, or when R1 D1 in step 139 or R2 D2 in step 141, c a test 143 is performed to determine whether all the rows or all the root tables Shave been considered. If not, the procedure comes back to step 131 to select a Snew root table row.
00 Once all the root table rows have been considered, stage 124 of figure 19 is over, and the parameters Q1, R1, 02 and R2 are memorized for Ssubsequent insertion of possible new data records. Eventually, the number of rows in the virtual flat file is given by Q1 x D1 R1.
SClearly, the procedure of figure 20 is readily extended to n 2 00 10 encoding layers, by initializing all Ok and Rk parameters to 0 in step 130 and Sby developing steps 138-142 (which are equivalent to incrementing the data graph pointer Q1 x D1 R1) in the higher layers.
Figure 21 shows how the program can manage the record chains in the data container and the thesaurus auxiliary table in layer k 1 for a word index WI in the thesaurus relating to an attribute AT. The first step 150 is to load the value ATFk(WI) stored in the auxiliary table into the address variable AD. If AD 0 (test 151), then a record chain has to be initialized for thesaurus index WI, so that the head address Hk of the free record chain in the data container is assigned to AT_Fk(WI) in step 152.
If there was already a record chain for the thesaurus index WI (AD 0 at test 151), the rank NOk(AD) is loaded into the rank variable q in step 153. If the following test 154 shows that q is different from the quotient variable Ok, the address variable AD' receives the address of the next record of the chain, i.e. NXk(AD), in step 155. If AD' is still different from 0 (test 156), the process comes back to step 153 for examining the next rank variable of the record chain, after substituting AD' for AD in step 157. When AD 0 in test 156, a data container record has to be appended to the chain for thesaurus index WI, so that the head address Hk of the free record chain, in written into the next record field NXk(AD) in step 158.
After step 152 or 158, the head address Hk of the free record chain is loaded into the address variable AD in step 159. Step 160 is then executed to update the auxiliary table and data container. This update operation 160 consists in: -36- 00 replacing the head address Hk by the next address NXk(AD) of the free C chain; c- writing the current value of the address variable AD into ATLk(WI); and writing Qk and 0, respectively, in the fields NOk(AD) and NXk(AD) of the 00 C 5 data container.
After step 160, or when q Qk in the above-mentioned test 154, the bitmap segment HPk(AD) is updated in step 161 by writing the digit at bit Sposition Rk of that segment.
SIn figure 20, it has been considered that both the layer 1 and layer 2 00 00 10 coding data are updated in step 136. This means that the procedure of figure is executed once for k 1 and once for k 2. Another possibility is to execute it only for k 1, and to generate the layer 2 coding data subsequently, by processing the layer 1 rank data produced in stage 124.
It is worth noting that when initializing the VDG's from a legacy database as in figure 20, the rank data Qk appear in an increasing order (we always have q 5 Qk in test 154 of figure 21). Accordingly, it is possible to move directly to the record chain tail, i.e. to take AD =AT_Lk(WI) instead of AD ATFk(WI) in step 150. In this case, step 158 is executed directly when Qk q in test 154, thereby avoiding the scanning of the record chain. Such embodiment is illustrated in figure 22.
In the latter embodiment, once the VDG initialization is over, the layer k tail address fields AT_Lk with k 1 may be discarded. However, if the VDG management is such that any new VDG likely to be inserted has a flat file row- ID equal to or greater than all the flat file row-ID's of the existing VDG's the flat file row of any deleted VDG will not be used any more), then it is advantageous to keep all the tail address fields AT_Lk in order to perform any subsequent update in accordance with the embodiment of figure 22.
In the form depicted in figure 21, the update procedure is applicable independently of any hypothesis on the rank values Qk.
Figures 23 and 24 show an alternative method of updating the auxiliary table and data containers with respect to the AT thesaurus entry for the word index WI in step 136, which takes advantage of the tail address field AT_L1 of the auxiliary table in layer 1 (with n 2 coding layers). Figure 23 illustrates the -37- 00 layer 2 processing which is performed before the layer 1 processing of figure c 24. Most of the steps of figures 23-24 are very similar to steps of figure 21, so that corresponding reference numerals have been used.
The layer 2 processing of figure 23 is essentially the same as that of oo 00 5 figure 21 (k with the following differences: it is not necessary to deal with tail address fields AT_L2(WI) in step 160; S- step 161 further includes setting to the binary variable LL1, which means that the current layer 1 rank data Q1 does not belong to the layer S1 record chain relating to the word index WI; 010 when q Q2 in test 154, another test 164 is made to determine whether 0 the bit position R2 of the layer 2 segment HP2(AD) contains the value step 161 follows only if that test 164 is negative; if test 164 is positive, the current layer 1 rank data Q1 already belongs to the layer 1 record chain relating to the word index WI, so that the variable LL1 is set to in step 165.
The layer 1 processing of figure 24 begins at step 170 by testing whether LL1 is 0 or 1. If LL1 0, step 150 is executed to load the value AT_F1(WI) stored in the layer 1 auxiliary table into the address variable AD, and a loop 153-155 is executed to find the data container address AD where the data relating to the rank Q1 are stored. Steps 153 and 154 are the same as in figure 21, and in step 155 the next address NX1(AD) is directly loaded into the address variable AD (AD is never 0 because LL1 The program proceeds to step 161 when q Q1 in test 154.
If LL1 1 in test 170, step 171 is executed to load the value ATLI(WI) stored in the layer 1 auxiliary table into the address variable AD. If AD 0 (test 172), the sequence of steps 152, 159-161 is executed as in figure 21 (however, it is not necessary to deal with next address fields NX1 (AD) in step 160). If AD 1 in test 172, the sequence of steps 158-161 is executed as in figure 21.
The procedure of figures 23-24 avoids the scanning of the layer 1 record chains when the rank data Q1 are not in such chains, without any hypothesis on the rank values.
After all the coding data for the individual word thesauruses have been generated, the next stage 125 of the procedure shown in figure 19 is to rearrange the stored coding data. As indicated previously, this is done to -38- 00 0 organize the record chains in the coding data container of each layer so that C records pertaining to the same thesaurus word have contiguous addresses in order to be accessible in one or few disc accesses by means of the CPU cache memory. A simple way to do this is to reserve memory space for a new 00 5 auxiliary table and new coding data containers. The thesaurus words are considered one by one, and for each of them, the coding data pointed to in the Sold auxiliary table are read sequentially and copied into the new data container at an address AD incremented after each write operation. When proceeding to the next thesaurus word index WI+1, new pointers AT_Lk(WI)= AD-1 and 00 00 10 AT_Fk(WI+1) AD are determined and stored into the new auxiliary table.
SAfter all the coding data records have been thus read and rewritten into the new data container, the old data container and auxiliary table are discarded.
Such rearrangement can be performed separately for each coding layer k.
If there are several data containers for different thesauruses in a coding layer, they may also be reordered separately.
As indicated before, the rearrangement step 125 is dispensed with when the thesauruses are organized in the manner illustrated by figure 17, since the coding data files naturally fulfil the grouping condition with respect to the thesaurus words.
In the following stage 126 of the procedure shown in figure 19, the macroword thesaurus entries are generated. For each macroword and each layer, this is done simply by merging the rank coding data Q1, 02 of the words (or lower level macrowords) covered by the macroword, and by obtaining the corresponding bitmap segments by a logical OR of those relating to the words (or lower level macrowords). If the coding data have been rearranged for the word thesauruses as indicated in stage 125, the same grouping of the coding data will automatically be achieved for the macroword thesauruses.
In stage 127, the now useless link columns of the original data tables (figures 1-3) can be deleted. The Null records which have been added in stage 121 can also be deleted, their occurrence being indicated by the default value -1 in the link table (figure 9).
Finally, the elements to be stored in the hard drive 105 in the abovedescribed embodiment are: -39- 00 oo the data tables as illustrated in figures 1-3, without the link columns.
c Parameters defining the data table tree structure of figure 4 are stored in association with the tables; the link table as illustrated in figure 9; oo 5 the sorted thesauruses comprising an index register and an auxiliary table for each desired attribute. Figures 25-26 show the index registers Sfor the attributes AT CN ("client name") and AT AA ("accident Camount") in our simplified example. Figures 28-29 show the corresponding auxiliary tables; 00 10 the macroword thesauruses organized like the individual word Sthesauruses, with a specified truncation or prefix length. The index register of each macroword thesaurus further has an additional column containing, for each macroword, the row-ID, in the index register of the thesaurus of lower level for the same attribute, of the first word (or macroword) covered by the macroword. Figures 27 and 30 show the index register and auxiliary table for the attribute AT CN and the truncation length 3; the coding data container(s) for each coding layer, each having a variable head address for its free record chain. Figures 31 and 32 show layer 1 and layer 2 data containers shared by the thesauruses of figures 24-29 (free record chain head addresses 31 and 27, respectively); optionally, one or more thesauruses stored in a "low density" format suitable for attributes of high cardinality. In the low density format, n 0 and the flat file row-ID's are stored as explicit (short) integer lists, for example by means of record chains. If the coding data for layers 1 through n are needed, they are easily calculated by performing n successive Euclidean divisions from each stored integer of the list. For a given high cardinality attribute, it may be appropriate to provide an individual word thesaurus in the low density format and one or more macroword thesauruses in the "normal" encoded format.
The data containers of figures 31 and 32 are derived from those shown in figures 15 and 16 pursuant to the rearrangement stage 125, in which the auxiliary tables of figures 28-30 are also obtained from those of figures 14A, 00 14G and 14H, respectively. For treating a query concerning the client called c Andr6, the processor would have to read records #20, #11 and #2 of figure (limiting ourselves to layer 1) if the coding data container were not rearranged, whereas it reads the physically contiguous records #2 and #3 of the 00 00 5 rearranged container of figure 31. The latter reading can typically be done by loading a single block into the cache memory. More disc accesses, and hence Sa longer processing time, are required for reading scattered records.
The columns separated by broken lines in figures 9 and 28-32 are Spreferably stored separately. For example, the storage address of one value in 00 010 such a column may be defined as a start address assigned to the column plus San offset equal to its row-ID multiplied by a field length.
Accordingly, the links of a link table row (data graph) are stored at corresponding addresses given by the flat file row-ID. This separate storage of the link column accelerates the data retrieval when some of the data tables need not be accessed to produce the output data requested in the query.
Likewise, some elementary operations performed in the query processing require only coding data for one layer, so that it is advantageous to separate the information concerning each layer in the auxiliary tables to accelerate the processing. Other operations imply the rank data and the bitmap segment data independently, so that it is advantageous to separate those data in the data containers as shown in figures 31 and 32.
In an alternative way of storing a thesaurus, the word index register and the auxiliary table are merged in a single table with a Huffman type of indexing: each row of that table contains a value of attribute AT, the ATFk and AT_Lk data, a next row pointer (the next row contains the next value of the attribute in the sorted thesaurus) and optionally a preceding row pointer.
In an embodiment, the maintenance of VDG's created as described hereabove may involve the following operations: 1/ Record insertion A new virtual data graph, i.e. a new row in the flat file, is generally generated in response to the insertion of a new record in a data table.
-41oo00 0 However, if the new record has a link to an existing record of another c target table such that no other link points to said existing record, then there is no need for a new data graph, but for the update of an existing data graph. For example, if client Oscar subscribes a first policy, e.g. for his car, a new record oo c 5 is added to the policy data table without creating any new VDG: the data graph of figure 7 is simply modified to place the new data in the node corresponding Sto the policy table. If Oscar then subscribes a second policy, e.g. for his house, a new VDG will be necessary.
To generate the new VDG, all records from the other data tables, 0 10 related to the new inserted record, including Null records, are identified by their Srespective row-ID's which, if necessary, can be retrieved by queries based on attribute values of those related records.
After appending the new record to the data table, the first thing to do is to initialize any new thesaurus entry which may be necessary if new attribute values occur (all AT_Fk and AT_Lk fields are initialized to The new virtual flat file row and its corresponding thesaurus entries may be generated as in steps 133-142 of figure 20. Any higher level macroword thesaurus is updated accordingly.
2/ Record attribute modification Changing or adding an attribute value in an already existing data table record has no effect on the link table which does not reflect the table contents but the link structure. Adding is a particular case of changing when the preceding attribute value was Null. Likewise, deleting an attribute value from a record is a particular case of changing when the new attribute value is Null.
If the new attribute value requires a new thesaurus entry, such entry is initialized (ATFk AT_Lk The list L of the link table row-ID's corresponding to flat file records comprising the data record to be amended is obtained by placing a suitable query. The latter list L is merged (bitmap OR operation) with the flat file row-ID list L' of the new attribute value, and the coding data of the merged list L v L' are assigned to the new attribute value.
The complement L of list L is also determined (bitmap NOT operation) to be intersected (ANDed) with the flat file row-ID list L" of the preceding attribute value. If the resulting intersection list LA L" is not empty, its coding data are -42- 00 assigned to the preceding attribute value. This may transfer to the free record c chain of one or more data containers records that previously belonged to the record chain associated with the preceding attribute value. If the intersection list L[ L" is empty, the preceding attribute value may be deleted from its word 00oo c 5 thesaurus. The same intersection and update sequence is performed for any higher level macroword thesaurus.
O 3/ Record link modification SChanging a link in a source data table leads to corresponding changes 0 in every occurrence of the link in the link table. The list L of the concerned link oo table rows can be determined by processing a suitable query.
cIf the target table record pointed to by the former link has no more link pointing thereto (its row-ID does not occur any more in the corresponding column of the link table after the modification), a new VDG is generated.
Downstream of the modified link, this new VDG has the same content as the one(s) which is (are) being amended. Upstream of the modified link, it consists of Null records. The new virtual flat file row and its corresponding thesaurus entries may be generated as in steps 133-142 of figure 20. Any higher level macroword thesaurus is updated accordingly.
After that, a procedure similar to the one described in the preceding section can be performed for each attribute of the target table: the, list L is merged with the flat file row-ID list L' of the new attribute value (the value occurring in the target table record pointed to by the new link); the coding data of the merged list L v L' are assigned to the new attribute value; the complement L of list L is intersected with the flat file row-ID list L" of the preceding attribute value (the value occurring in the target table record pointed to by the former link); the coding data of the resulting intersection list L^ L" are assigned to the preceding attribute value; and lel the same intersection and update sequence is performed for any higher level macroword thesaurus.
If the first target table (for the modified link) has a link column to a second target table, the link value stored in the column of the link table associated with the second target table and in each row of list L is also changed, and the above procedure la/-/e/is performed for each attribute of the second target table. This is repeated for any data table located downstream of -43- 00 the first target table in the data table tree (figure 4).
c For example, if a correction is made in the accident table of figure 3 to indicate that accident #6 was under policy #2 instead of policy i.e.
concerned Max's house instead of Ariane's car, the link from the accident table 00 00 5 in the data graph of figure 5 has to be changed to point to policy record and the link from the policy table has to be changed to point to client record A Snew row is inserted in the virtual flat file, to contain the useful information about Ariane's car policy under which no accident took place. As a result, row #6 of Sthe link table of figure 9 is changed to include the values 4, 2 and 6, 00 10 respectively, in the client, policy and accident link columns, and a new row #12 N is added including the values 2, 4 and respectively, with corresponding changes in the thesauruses.
4/ Record cancellation Canceling a record from a root table involves deleting the row(s) of the flat file containing that record. The corresponding flat file row-ID's are removed from the lists encoded in the thesauruses, i.e. zeroes are written at the associated locations of the bitmap vectors. These flat file row-ID's may be made available for further VDG insertion, for example pursuant to section 1/ or 3/ hereabove. They may also remain as blank rows if the virtual flat file size is not a major concern. Likewise, canceling a record from a target table which has no link pointing thereto in the corresponding source table involves deleting the row(s) of the flat file containing that record (these row were representing data graphs with Null records upstream of the cancelled record).
If the cancelled record belongs to a target table for a compulsory link the client or policy table in our example), any flat file row containing that record is also deleted. If the cancelled record belongs to a target table for an optional link the third party or broker table in the example of figure the cancellation comprises a link modification whereby any link pointing to that record is replaced by a link to a Null record (link value Such modification may be performed as described in the above section 3/ (but without generating any new VDG).
For any link of the cancelled record which pointed to a non-Null target table record whose row-ID does not occur any more in the corresponding -44- 00 O column of the link table, it is necessary to generate a new VDG containing the C same data as the cancelled record in and downstream of said non-Null target table record and Null values in and upstream of the cancelled record. The new virtual flat file row and its corresponding thesaurus entries may be generated as 00oo c 5 in steps 133-142 of figure 20. Any higher level macroword thesaurus is updated accordingly.
O 5/ Thesaurus update and sorting C With the above-described structure of the thesaurus entries, the c cancellation of a word in a thesaurus, which occurs when its flat file row-ID list 00oO becomes empty, could be done by leaving the thesaurus entry with zeroes in its cHPk data. However, this is not optimal regarding memory usage.
A more efficient method is to update the record chains in the data container, so that the auxiliary table has ATFk(WI)= ATLk(WI)= 0 for the entry WI of the cancelled word. In such a case, the word index WI can be released, a default value being written into the word index column for the cancelled word in the thesaurus index register.
The creation of a new word thesaurus entry can be done as illustrated in figures 21-24 (AD 0 in test 151 or 172). The word index WI is obtained by incrementing a counter representing the number of thesaurus entries, or by selecting an available word index which has been released previously when canceling another word). In this process, a (useful) row is added to the auxiliary table of the corresponding attribute, with row-ID WI.
Similar procedures can be applied for updating the macroword thesauruses. A macroword index WI may be released when canceling a macroword (all its constituent words have been cancelled). In the case of a word creation, it is first checked whether the macroword already exists, in which case its macroword index WI is recovered; otherwise, a macroword is also created.
It is thus appreciated that, once words have been removed and/or added, the auxiliary tables are no more sorted in the ascending order of the thesaurus words. The word index register has to be manipulated in order to maintain the thesaurus sorting.
However, it is not necessary to perform such manipulation of the word 00
OO
O index register immediately. This is very advantageous because the updated Cl database is made available for any new query without requiring a sorting Soperation in the whole thesaurus, which may take some time.
The newly created words or macroword of a thesaurus can have their 00 5 word indexes stored in a separate, secondary index register, whereas they share the same auxiliary table and coding data containers as the former words of the thesaurus. Only this secondary index register can be sorted when a thesaurus entry is added, which is a relatively light job since most of the thesaurus words belong to the primary register. When a word is deleted, its row 00 10 in the primary or secondary index register remains with the default value in the word index column. Accordingly, to access the coding data relating to a given word range, the range boundaries are searched, by dichotomy, in both the primary and secondary index registers to determine the relevant word indexes which are then used in the usual way to address the common auxiliary table and data containers.
From time to time, when the CPU 101 is available, a batch task is run to merge the primary and secondary index registers while deleting their rows having the default value in the word index column. This is a straightforward external sorting operation since both registers are already sorted. The resulting merged register is saved to replace the primary register, and the secondary register is cancelled.
If the secondary word index register becomes too big its sorting requires a too long time every time an entry is added) before such merge operation is carried out, it is possible to create a further, tertiary index register to receive the new thesaurus entries, and so forth.
6/ Data container optimization This is useful if the thesaurus organization is of the type shown in figures 25-32 rather than of the type shown in figure 17.
As records are inserted and deleted in a coding data container, the above-mentioned condition that the record chains should preferably be arranged so that records pertaining to the same thesaurus word have contiguous addresses is no more fulfilled. This does not prevent the database system from operating satisfactorily. However, in order to optimize the query -46oo00 O processing time, it is preferable to rearrange the records of the coding data c container and the corresponding columns of the thesaurus auxiliary table(s) as in the above-described step 125. Like the word index register sorting, such rearrangement can be carried out when CPU time is available.
00oo ALTERNATIVE THESAURUS ARRANGEMENTS SIf the thesauruses are arranged according to the preferred organization Sillustrated by figure 17, with distinct files for each word or macroword, the flow Scharts of figures 19-24 are somewhat simplified. First, stage 125 of figure 19 is 00 not performed (it is an advantage of the file organization to dispense with such sorting when the VDG's are created and maintained). In figure 20, the dichotomy search 135 and the thesaurus update of step 136 may be replaced by the procedure illustrated in figure 33.
In this procedure, imax(AT, W, k) designates the current number of layer k records in the coding data file relating to thesaurus AT and word W.
These parameters are set to zero for all values of AT, W and k at the initialization step 130.
The value in the current data graph of the attribute AT selected in step 134 of figure 20 is allocated to the variable W in step 175 of figure 33, and the coding layer index k is initialized to 1. The integer i, which points to the records of the coding data file is first set to zero in step 176. If i imax(AT, W, k) in the following test 177, a record ATW NOk(i) having the value Qk is appended to the layer k rank file pertaining to word W and a record ATW_HPk(i) having the all-zero value is appended to the corresponding bitmap segment file. This is done in step 178, where imax(AT, W, k) is also incremented by one unit. If i imax(AT, W, k) in test 177, the rank ATWNOk(i) is loaded into the rank variable q in step 179. If the following test 180 shows that q is different from the quotient variable Qk, the integer i is incremented by one unit in step 181 and the process comes back to step 177 for examining the next rank variable of the file, if any. Accordingly, the scanning of the coding data record chain for each layer k (corresponding to loop 153-156 in figure 21) is performed within the AT W NOk file which is smaller than the data container common to all words of the thesaurus. Therefore, the minimum number of disc accesses is ensured.
After step 178, or when q Qk in test 180, a is written into the bit of -47 00
OO
O rank Rk of the bitmap segment AT W_HPk(i) in the relevant coding data file C (step 182). The coding layer index k is compared with n (or to a lower value if Sthe higher layer coding data are calculated afterwards) in test 183. If k n, the index k is incremented by one unit in step 184 before coming back to step 176.
00 When k n, the thesaurus update is over and the program proceeds to step 137 of figure In the procedure of figure 33, the rank data AT WNOk(i), each consisting of an integer value, can be read in large blocks from the hard drive 105 to the cache memory, so that the procedure is very quick.
00 oO Another option which can be used in the thesauruses is to include in each entry relating to a word an indication of the representation format of the flat file row-ID list. Indeed, the format low or normal density) can be chosen word by word depending on the number of data graphs including the word under consideration. This is illustrated in broken lines in the right part of figures 25-27 in the case where there are only two formats, i.e. low density (0) and normal density with n 2 coding layers In the example, all the thesaurus entries are in the normal density format. There could be more than two formats; for example, the format data in the thesaurus could specify the number of coding layers for each word. When the flat file row-ID list are represented by data stored in data containers common to one or more thesauruses, distinct containers are provided for the different coding formats.
When the above option is used, the format for each thesaurus entry can be modified as the database lives, in order to optimize the storage. This is a low priority task since the query engine can work with any format. For example, when thesaurus entries are being updated, it is possible to mark any entry for which a format change appears to be desirable, based on predefined conditions fulfilled by the density of the word in the amended database. For example, a word or macroword could be changed from low to normal density format when a certain number of data graphs are identified in its thesaurus entry, and vice versa. Afterwards, when processor time is available, the marked entries can be translated into the new format to optimize the system.
It has been mentioned above that, when n 1, storing the rank data in -48- 00 every coding layer is somewhat redundant, since the flat file row-ID lists are C completely defined by the bitmap segment data in all layers and the rank data Sin the last layer.
Figures 34A-B illustrate an alternative way of arranging the coding data 00 files, which avoids storing the layer k ranks with k n. In this arrangement, it is sufficient that the auxiliary tables (figures 28-30) point to a first record in the \layer n data container: the addresses ATF1 and ATL1 are not necessary.
t' The data container of the highest layer n 2, shown in figure 34A, is the same Sas that of figure 32, with an additional field in each record to contain the head 00 010 address FI(AD) of a record chain in the data container of the Slower layer n-1 1. The latter data container (figure 34B) has one record chain for each layer n rank pertaining to each thesaurus entry covered by the data container. Each record of a layer k n data container comprises a first field for containing the address NXk(AD) of the next record of the chain (this address is 0 if there is no further address), and a second field for containing the corresponding bitmap segment HPk(AD). The layer k n chain is ordered in accordance with the non-zero bits of the bitmap segment HP(k+1) stored in the record of the upper layer data container which contains the head address of the chain. If 1 k n (not shown), the record further has a third field for containing the head address of a record chain in the data container of the lower layer k-1 (and so forth until k 1).
The procedure for retrieving a flat file row-ID list from a thesaurus pointing to data containers of figures 34A-B may be as follows. The word index WI is used to obtain the address of the first relevant record in the layer 2 data container. For this address (and then for each address of the chain defined by the NX2 field), the layer 2 rank N02 is read and the bitmap segment HP2 is scanned. Every time a is found in this scanning, at a bit position R2, a layer 1 rank N01 N02 x D2 R2 is determined and a corresponding record of the lower layer data container is read (the first time at the head address given by the column Fl in the layer 2 data container, and then at the addresses pointed to by the NX1 addresses in the layer 1 data container). By this method the layer 1 bitmap segments HP1 and their positions N01 are retrieved to assemble the bitmap vector representing the desired flat file row-ID list.
-49- 00 O In the general case, the data containers are accessed from layer n.
N Each segment HPk read after determining a rank NOk with k 1 is scanned to clocate its non-zero bits. Each non-zero bit of HPk located in a position Rk provides a lower layer rank NO(k-1) NOk x Dk Rk, and a corresponding 00 c 5 bitmap segment HP(k-1) is read in the chain designated in the lower layer container. The process is repeated recursively until k= 1: the numbers SNO1 x D1 R1 are the flat file row-ID's for the thesaurus entry.
C The coding data files illustrated in figures 34A-B can be created by a c method similar to that described with reference to figures 19-21. All the HPk 00 0 10 and F(k-1) fields are initialized with zeroes before stage 124. The procedure of cI figure 21 is executed only for k n, with step 161 replaced by the loop depicted in figure 35 in which the coding layer index k decreases from n to 1.
The first step 450 of this loop consists in writing the digit at bit position Rk of the bitmap segment HPk(AD). If the coding layer k is greater than 1 (test 451), it is decremented by one unit in step 452, and the first address M Fk(AD) is read in the layer coding data container (step 453).
If M is zero (test 454), the head address Hk of the free record chain in the layer k coding data container is written into the first address field Fk(AD) of the layer coding data container (step 455), to create a new chain. The value of AD is then replaced by Hk (step 456), and the record chains are updated in the layer k coding data container (steps 457-458): Hk is replaced by NXk(AD) before NXk(AD) is set to 0. After step 458, the process loops back to step 450.
If M 0 in test 454, the index R is set to 0 in step 460 to initialize the scanning of the bitmap segment HP HP(k+1)(AD). If R is smaller than the remainder R(k+1) corresponding to the current data graph identifier, the corresponding bit HP(R) of the bitmap segment HP is evaluated (test 462). If HP(R) 0, the program proceeds to step 463 for incrementing R by one unit before coming back to test 461. When HP(R) 1 in test 462, it is necessary to move forward in the layer k record chain: the integer M' receives the value of M in step 464, and M is replaced by NXk(M') in step 465. If the new value of M is not zero (test 466), the program proceeds to the above-mentioned step 463.
Otherwise, the end of the layer k record chain is reached, so that the head o00 address Hk of the layer k free record chain is assigned to NXk in step 467 c before proceeding to the above-mentioned step 456.
SIf R is equal to the remainder R(k+l) in test 461, the corresponding bit HP(R) of the bitmap segment HP is also evaluated (test 470). If HP(R)= 1, the 00 5 rank Qk already exists in the layer k+l input list relating to the current thesaurus entry, so that it is not necessary to create a new record in the layer k \coding data container: the value of AD is simply replaced by M in step 471, and the process loops back to step 450.
If HP(R)= 0 in test 470, the value of AD is replaced by the head oO address Hk of the free record chain (step 472), and the Huffman-type record Schains are updated in the layer k coding data container (steps 473-474): Hk is replaced by NXk(AD) before NXk(AD) is set to M. After step 474, the process loops back to step 450.
The loop of figure 35 is over when k 1 in test 451.
Figures 34C and 34D show tables whose contents are equivalent to those of figures 34A and 34B, and in which the bitmap segments HPk for k 1 are not explicitly stored. The layer n coding data container (figure 34C) is identical to that described with reference to figure 34A, but without the HPn column. Each layer k coding data container for k n (figure 34D) is identical to that described with reference to figure 34B, with an additional column R(k+l) containing layer k+l remainders. The presence of a remainder value R(k+l) in a record to the layer k coding data container means that there is a at position R(k+l) in the non-stored higher layer bitmap segment HP(k+1).
It will be appreciated that the scheme of figure 17, i.e. distinct coding data files for each thesaurus entry to minimize the disc accesses, is also applicable when the stored coding data do not include the ranks for layers 1, n-1. The layer n ranks and bitmap segments may be stored as in figure 17. For the lower layers, there are several options. There can be one data container for each thesaurus word and each coding layer k n, with record chains pointed to in the records relating the upper layer k+l. The layer k record chains can also be isolated in distinct files whose name include the attribute name AT, the word or macroword value W, the coding layer index k and a layer k+l rank NO(k+1). Each record of such file ATW_k NO(k+1) then contains a layer k+l remainder R(k+l) and a layer k bitmap segment HPk which is located -51- 00 O at rank NOk NO(k+1) x R(k+l).
QUERY CRITERIA HANDLING As in any RDBMS, queries can be expressed in accordance with the oo 00 Structured Query Language (SQL), which has been adopted as a standard by the International Standard Organization (ISO) and the American National SStandard Institute (ANSI).
Cc A general flow chart of the query processing procedure is shown in figure 36.
0O The query criteria, contained in the SQL 'WHERE" clause, are converted into a request tree in stage 190 of figure 36. The query criteria are analyzed and structured according to a tree in which the leaves correspond to ranges for respective attributes values as defined in the SQL query and the nodes correspond to logical operations to be performed from those leaves. The leaves are also referred to as "BETWEEN clauses" of the SQL query. An individual attribute value defined in the SQL query is a BETWEEN clause covering a single word.
Example 3: An example of such a tree is shown in figure 37 in the illustrative case of a query which consists in finding all data graphs relating to accidents undergone by client Andre or client Max and having a damage amount AA such that 500 AA 5000. That tree has three leaves, indicated by broken lines, corresponding to the BETWEEN clauses defined in the query: [Andre, Andr6] and [Max, Max] for the client name attribute and [500, 5000] for the accident amount attribute. The tree also has two nodes, one for the OR operation between the two CN criteria, and one at the root for the AND operation with the AA criterion.
The tree decomposition is not unique. The one having the minimum number of nodes is preferably selected.
The next stage 191 is a tree expansion made by analyzing and splitting the BETWEEN clauses relating to attributes having macroword thesauruses.
This is done from the tree obtained in step 190, with reference to the sorted thesaurus word and macroword index files associated with the attributes used -52- 00 in the query. The lower and upper bounds of each range defined in a c BETWEEN clause are compared with the words of the thesaurus associated with the attribute, to find a decomposition of the range into sub-ranges, whereby each sub-range is also defined as a BETWEEN clause in a word or oo 00 5 macroword thesaurus.
In a preferred embodiment, the decomposition is optimized to make Smaximum use of the macrowords. This optimization consists in retaining the lowest possible number of words or macrowords to form the sub-ranges to be C mapped onto the range defined in the BETWEEN clause. The system selects 00 0 10 the highest level macrowords that are included in the interval, and repeats the Ssame process in the remaining parts of the range until the atomic word level is attained or the words of the range are exhausted.
In the expanded tree produced in stage 191, the BETWEEN leaves which have been split are replaced by sub-trees made of OR nodes and leaves associated with the sub-ranges. Those leaves are also in the form of BETWEEN clauses, covering thesaurus entries relevant to the query. The expanded tree defines a combination of the relevant thesaurus entries for the subsequent processing.
All the leaves of the expanded tree are associated with respective word or macroword (sub-)ranges. Such range may be defined by its bounds in terms of word or macroword row-ID's in the thesaurus index file.
Figure 38 shows the expanded tree corresponding to the tree of Example 3 (figure 37). It is obtained by means of the thesaurus index files of figures 25-27. The one-word ranges "CN Andre" and "CN Max" are not split, but simply encoded by the row-ID's CN_x 1 and 4 of the words in the thesaurus index file, obtained by dichotomic searches. Another search in the accident amount thesauruses of figures 26 and 27 leads to splitting the range 500 AA 5000 into three sub-ranges, one for the individual words AA_x 2 and 5, and one for the macroword AA 3 x 1.
Figure 39 shows a flow chart of an optimal procedure for splitting a BETWEEN clause in stage 191 of figure 36. It is assumed that the (connected) range does not include the Null value (otherwise the leaf can be first split into two substitute leaves linked by an OR node, one leaf with the individual word -53- 00 0 row-ID AT_x 0, and the other satisfying the above assumption).
C It is also assumed that the attribute AT considered in the BETWEEN c clause has a number Q 0 of macroword thesauruses indexed by an integer level parameter q with 1 q Q, the level q 0 designating the individual word 00 C 5 thesaurus. For a level q thesaurus, the prefix length number of ASCII characters) is noted with P(0) is the individual Sword length. In figures 39-40, max designates the number of non-Null words in mma N thesaurus 0, Wq(x) designates the (macro)word stored at row-ID x in the level 00 q thesaurus, and designates the macroword obtained by truncating a 0 0 10 word W to keep its prefix of length for q 1.
In the initial step 200 of the procedure of figure 39, the program selects the word thesaurus row-ID's a and b such that Wo(a) and Wo(b) are respectively the lowest and highest thesaurus words included in the range defined for the leaf being processed. The integers a and b are readily selected by dichotomic searches in the word thesaurus based on the range bounds. If the search shows that the range covers no thesaurus word, the procedure is terminated by specifying that the leaf output will be an empty flat file row-ID list.
If Wo(a) is the lowest word of the thesaurus (a 1 in test 201), the binary variable XL is initialized as XL 0 in step 202. Otherwise, it is initialized as XL 1 in step 203. If Wo(b) is the highest word of the thesaurus (b xmax in test 204), the binary variable XR is initialized as XR 0 in step 205. Otherwise, it is initialized as XR 1 in step 206. In the following steps, the value XL (XR) 0 denotes the fact that the lower (upper) bound of the range under consideration is aligned with a macroword boundary. If it is aligned with a macroword boundary from a level q thesaurus, then this is also true for any level q' thesaurus with 1 q' q. The initialization 201-206 is valid for q Q.
In step 207, the program invokes a function FUNC whose flow chart is represented in figure 40. This function returns data describing a sub-tree to be inserted in the place of the processed leaf (step 208). The function FUNC has six arguments input when starting its execution in step 210 of figure 40A: the attribute reference AT; a thesaurus level parameter q (q Q when the function is first invoked in step 207 of figure 39); the thesaurus row-ID's a and b of the -54- 00 0 lowest and highest AT words in the range of interest; and the above-defined 0 Nc variables XL and XR.
cAfter step 210, it is determined whether the thesaurus level parameter q is zero (test 211). If q 0, two macroword thesaurus row-ID's a' and b' are 00 selected in step 212, such that Wq(a') and Wq(b') This is done by simple dichotomic searches in the level q thesaurus after truncating the words Wo(a) and W 0 C In the following test 213, the variable XL is evaluated. If XL 1, it is 0 determined in test 214 whether the consecutive words Wo(a-1) and Wo(a) share the same level q macroword, i.e. whether If so, the integer a' is increased by one unit in step 215. If [W 0 Wq(a') in test 214, the value of XL is changed to 0 in step 216 since the lower bound of the range under consideration is aligned with a level q macroword boundary.
After step 215 or 216, or when XL 0 in test 213, the variable XR is evaluated (test 217). If XR 1, it is determined in test 218 whether the consecutive words
W
0 and Wo(b+1) share the same level q macroword, i.e. whether If so, the integer b' is decreased by one unit in step 219. If Wq(b') in test 218, the value of XR is changed to 0 in step 216 since the upper bound of the range under consideration is aligned with a level q macroword boundary.
After step 219 or 220, or when XR 0 in test 217, the variables a' and b' are compared in test 221. If a' no level q macroword is spanned by the range under consideration, the program decrements q by one unit in step 222 and comes back to step 211.
When a' b' in test 221, a sub-range of macrowords is generated for insertion into the expanded query tree (step 223 in figure This sub-range covers the macroword row-ID's from AT_P(q)_x a' to AT_P(q)_x b'.
Afterwards, the variable XL is evaluated again in step 224. If XL 1, another range has to be considered, below the sub-range generated in step 223. In step 225, the row-ID b" of the upper bound of that lower range is determined: the corresponding word Wo(b") is the highest of the AT thesaurus 00 0 such that [WO(b")lp(q) The function FUNC(AT, q-l, a, 1, 0) is then Scalled recursively in step 226, to deal with the additional lower range. After step 226, or when XL 0 in test 224, the variable XR is evaluated again in step 227.
If XR 1, another range has to be considered, above the sub-range generated 00oo c 5 in step 223. In step 228, the row-ID a" of the lower bound of that upper range is determined: the corresponding word W 0 is the lowest of the AT thesaurus IND such that The function FUNC(AT, q-l, b, 0, 1) is then called recursively in step 229, to deal with the additional upper range.
When q 0 in test 211, a sub-range of b-a+1 words is generated for 0o insertion into the expanded query tree (step 230). This sub-range covers the individual word row-ID's from AT x a to AT x b.
After step 229 or 230, or when XR 0 in test 227, the execution of the function FUNC is terminated in step 231 by returning the data describing the sub-tree, which have been generated in step 223 or 230 and/or which have been returned by the function recursively called in steps 226 and/or 229.
Once the stage 191 of analyzing and expanding the query tree is completed, the expanded tree is processed in stage 192 of figure 36, starting from the highest coding layer n. If n> 1, the processing is performed successively in the layers k, with k decreasing from n to 1, as shown in the loop represented in figure 41.
The coding layer index k is initialized with the value n in step 240 of figure 41. The layer k processing is started in step 241 by selecting the root ND of the expanded query tree as a node for calling a function named FNODE (step 242). The input to this function comprise the coding layer index k, the parameters describing node ND and its children nodes, and a bitmap vector Res (initialized in an arbitrary manner for k Its output is a bitmap vector noted WZ. In layer 1, the bits of value 1 of the output bitmap vector WZ indicate the VDG's (flat file row-ID's) matching the query criteria defined by the tree whose root is node ND. In layer k> 1, they indicate the respective layer k-1 ranks of the groups of Ak flat file row-ID's which include at least one matching flat file row-ID. In each coding layer index k, the function FNODE is called recursively to process all the nodes of the expanded query tree.
The bitmap vector WZ output by the function called in step 242 is -56- 00 saved as the layer k query result Res in step 243, to be used in the subsequent C layer k-1 processing if k 1. If so (test 244), the index k is decremented by one unit in step 245, and the next layer processing is started from step 241.
For k 1, Res is the bitmap representation of the desired flat file row- 00 oo ID list, output in step 246.
A flow chart of function FNODE is shown in figure 42. The bitmap \vector WZ is considered there as a succession of segments of Dk bits. The Csegment of rank N of vector WZ the (N+1)-th segment with N 0)is noted WZ[N]. The bit of rank N of vector WZ the (N+1)-th bisegment with N 0) is noted cWZ[N]. The bit of rank N of vector WZ the (N+l)-th bit with N 0) is noted 00 oO WZ(N). After the function is started (step 248), a working zone is reserved in c RAM 103 for containing the bitmap vector WZ (step 249).
In test 250, it is first determined whether ND designates a preset node.
A preset node (not illustrated in the example of figure 38) is a node for which a flat file row-ID list has already been determined. Typically, that list has been produced as a matching data graph identifier list in the processing of a previous query (output of step 192). It may also be a combination of such matching identifier lists. One or more preset nodes can be defined in the conversion step 190 when the SQL query refers to the results of one or more previous queries, for example to restrict the response to records which were included in the response to the previous queries. This feature is particularly useful when the database is used in interactive mode.
The flat file row-ID list previously determined for a preset node can be stored in RAM 103 or saved in hard drive 105 (preferably in compressed form in the latter case). That list is encoded according to the n coding layers to provide layer k input lists in the form of bitmap vectors for 1 k n. Such layer k bitmap vector is loaded as WZ in step 251 when test 250 reveals that the node ND is preset.
Otherwise, if ND does not designate a leaf but an operator node (test 252), its first child node ND1 is selected in step 253, and the function FNODE is called recursively in step 254 to obtain the bitmap vector WZ1 corresponding to node ND1. The second child node ND2 of the operator node ND is then selected in step 255, and the function FNODE is called again in step 256 to obtain the bitmap vector WZ2 corresponding to node ND2.
00 -57- O In step 257, the bitmap vectors WZl and WZ2 are combined bitwise to form the bitmap vector WZ. The combination (WZ(N) WZ1 WZ(N) for any N) is in accordance with the Boolean operator described in the 0 parameters of node ND, e.g. AND, OR, Exclusive OR, etc. operation. It is oo c 5 essentially a superposition of bitmap vectors, which is performed very quickly since both operand vectors are stored in RAM 103. In step 258, the RAM space Swhich has been allocated to working zones WZl and WZ2 is released. In figure t'q C 42, the case where the operator node has two child nodes is only considered.
0 Clearly it can be extended to the case where there are more than two oO operands. Moreover, some operations may involve a single operand, such as c the NOT operation, so that the function FNODE may be call only once.
When node ND is a leaf (test 252), all the bits of the working zone WZ are set to zero in the initialization step 260. In addition, the thesaurus pointer x is initialized to the value xl of the first row-ID of the BETWEEN range defined for node ND.
If node ND relates to an attribute AT and macroword index q for which the thesaurus is stored in the "low density" format (test 261), the leaf processing is as described below with reference to figure 43 (step 262) to obtain the relevant bitmap vector WZ. If the thesaurus format is "normal density", the processing depends on whether the program is in the (chronologically) first layer, that is k n (test 263). The processing of figure 44 is applied if k n (step 264), and that of figure 45 if k n (step 265).
After step 251, 258, 262, 264 or 265, the execution of function FNODE is terminated in step 266 by returning the bitmap vector WZ.
For explaining the low density processing, we assume in figure 43 that the thesaurus storage also makes use of record chains: the thesaurus has an index file similar to those of figures 25-27 (the word index stored at row-ID x being noted AT_WI(x)) and an auxiliary table addressed by the word indexes and containing the addresses AT_F(WI) in a data container of the first flat file row-ID's of the record chains. In each record of address AD 0, this data container has, in addition to a flat file row-ID value NO(AD), a next address field for containing a pointer to the next address NX(AD) of the record chain. The chain tail has NX(AD) 0. Alternatively, the low density lists could be stored in 00 -58- O individual files for each word (similarly to figurel 7).
SThe low density processing of figure 43 has a loop in which the words Ctof the BETWEEN range are successively handled. In each iteration, the Sprogram first obtains the word index WI ATWI(x) in step 270, and then the 00oo c 5 head address AD AT_F(WI) in step 271 to initiate the scanning of the record chain. If AD 0 (test 272), there remains at least one item to be examined in Sthe record chain, so that the flat file row-ID value NO(AD) and the next address NX(AD) are read as variables N and M, respectively, in step 273. The k-1 00oo Euclidean division of N by Ak H Dk' (A1 1) is made in step 274 to obtain Ck'=l the layer k-1 quotient (rank) For k 1, N' N. For k 1, this operation 274 k-1 is simply a deletion of the E 6k' least significant bits of N (remainder) if the k'=l layer k' divisors Dk' are 2 8k' with 6k' integer (1 k' A is then written into bit WZ(N') of the bitmap vector WZ (step 275). The next address M is substituted for AD in step 276 before coming back to the test 272. When the record chain has been completely examined (AD =0 in test 272), it is determined whether the current word x is the last one x2 of the BETWEEN range (test 277). If x x2, the thesaurus pointer x is incremented by one unit in step 278 for the next iteration of the loop. The loop is over when x x2 in test 277, and the program proceeds to step 266 of figure 42.
The layer n normal density processing of figure 44 has a similar loop in which the words or macrowords of the BETWEEN range are successively handled, but without recalculating the (stored) coding data. In each iteration, the program first obtains the word index WI ATP(q)_WI(x) in step 280, and then the head address AD =ATP(q)_Fn(WI) in step 281 to initiate the scanning of the record chain. If AD 0 (test 282), there remains at least one item to be examined in the record chain, so that the layer n rank value NOn(AD), the next address NXn(AD) and the corresponding layer n bitmap segment HPn(AD) are read as variables N, M and H, respectively, in step 283.
The bitmap segment H is then superimposed, by an Boolean OR operation, onto the segment WZ[N] of bitmap vector WZ (step 284), and M is substituted for AD in step 285 before coming back to test 282. When the record chain has oO 59 00-59- O been completely examined (AD 0 in test 282), it is determined whether the C current word x is the last one x2 of the BETWEEN range (test 286). If x x2, the thesaurus pointer x is incremented by one unit in step 287 for the next C iteration of the loop. The loop is over when x x2 in test 286, and the program 00oo c 5 proceeds to step 266 of figure 42.
The layer k n normal density processing is detailed in figure 45 in the \case where the thesauruses are arranged as illustrated in figures 25-32. It Stakes advantage of the fact that, even where NOk(AD) belongs to a layer k rank Slist associated with a word or macroword of the BETWEEN range, it is useless 00 oo to access the bitmap segment HPk(AD) if there is a zero in the bit of rank SNOk(AD) of the bitmap vector Res obtained in the preceding layer k+l.
The procedure of figure 45 is comparable to that of figure 44. Steps 280-282 and 285-287 are the same with k substituted for n. However, when a record chain is to be examined (AD 0 in test 282), only the layer k rank value NOk(AD) and the next address NXk(AD) are read as variables N and M in step 290. The bit Res(N) of the layer k+1 result bitmap Res is then evaluated in test 291. If Res(N) 0, the rank N is filtered out by jumping directly to step 285.
Otherwise (Res(N)= the bitmap segment HPk(AD) is read in step 293 before proceeding to step 284.
With the arrangement of the thesaurus entry coding data, it is noted that the loops of figures 44 and 45 will generally imply the successive reading of contiguous data container records (steps 283 and 290), because each word of index WI has its coding data stored at consecutive addresses AD in the data container, as well as most consecutive words of the BETWEEN range.
Therefore, those loops can be executed efficiently by loading blocks of data container records by means of the computer cache memory, thereby reducing the required number of disc accesses. The same consideration applies to the low density data NO(AD) and NX(AD) read in step 273 of figure 43.
A further improvement is obtained with the layer k n normal density processing shown in figure 46, which is made of two successive loops. The first loop, indexed by the thesaurus pointer x, is for determining a temporary rank table noted TNO, which is used to handle the bitmap segments in the second loop. Table TNO has a number of addresses which is at least equal to the number of addresses ADmax of the data container in which the layer k coding 60 00-60- O data of the current thesaurus (AT, q) are stored. Each entry TNO(AD) of cI address AD in the rank table TNO is for containing an integer representing the Srank NOk(AD) if it is useful to access the bitmap segment HPk(AD), or else a default value 00 C 5 In the initialization step 279, all entries of the rank table TNO are set to the default value The first loop is comparable to that of figure 45. When Res(N) 1 in test 291, the rank N is written at address AD into table TNO in step 295 before substituting M for AD in step 285.
When the first loop is over (x x2 in test 286), the program proceeds to 00 the second loop which is initialized with AD 1 in step 301. In each iteration of the second loop, the contents N of the rank table TNO at address AD, read in step 302, are compared with the default value in test 303. If N is a valid rank value the bitmap segment HPk(AD) is read (step 304) and superimposed, by a bitwise Boolean OR operation, onto the segment WZ[N] of the bitmap vector WZ (step 305). If AD ADmax (test 306), the rank table address AD is incremented by one unit in step 307 before coming back to step 302. The second loop is over when AD ADmax in test 306, and the program proceeds to step 266 of figure 42.
In addition to filtering out the bitmap segments HPk(AD) that are not worth reading, the procedure illustrated by figure 46, owing to the rank table TNO, groups the read operations in the file containing the layer k bitmap segment data based on the address AD (step 304 in the second loop). Such grouping is not only done word by word but for all words of the BETWEEN range: when the HPk file is eventually read in the second loop, no more distinction is made between the words for which a rank value has been written into table TNO. This takes maximum advantage of the blockwise access to the HPk file, and provides a very significant advantage because the lower layers, especially layer 1, imply the largest HPk files and the highest numbers of read operations therein.
Figure 47 shows how the procedure of figure 45 can be adapted when the coding data containers are stored as illustrated in figures 25-30 and 34A-B.
The loop has a similar structure. However, since the coding data are accessed from the highest layer n, the address AD read in step 281 is the head address 00 -61- O AT_P(q)_Fn(WI) of the record chain in the layer n data container, and when C AD 0 in step 282, the rank value NOn(AD) and next address NXn(AD) read t as variables N and M in step 296 also relate to layer n. After step 296, a C filtering function FILT is called in step 297 before substituting M for AD in step 00 C 5 285.
A flow chart of this function FILT is shown in figure 48. Its arguments, Sinput when starting its execution in step 500, are as follows (in addition to the Sattribute name and macroword level which are implicit in figures 47-48): S- a first coding layer index k, corresponding to the first argument of the 00 0 10 function FNODE called in step 242 of figure 41; c a second coding layer index k' k, with k' n when the function FILT is called in step 297 of figure 47; k'-k bitmap vectors Resk+ 1 Resk+2, Resk', where Resk+ 1 is the layer k+1 query result Res. If Resk+ 2 Resk are the bitmap vectors obtained, in step 243 of figure 41, by encoding Res in the higher layers; a layer k' rank N, with N NOn(AD) when the function FILT is called in step 297 of figure 47; the corresponding record address AD in the layer k' data container; and the bitmap vector WZ which is being calculated.
In test 501, it is determined whether the (N+1)-th segment of the bitmap vector Resk. is only made of zeroes. If so, it is not necessary to read any further coding data relating to the layer k' rank N, so that the execution of the function is terminated in step 502 by returning the bitmap vector WZ.
If the segment Resk'[N] has at least one in test 501, the bitmap segment HPk'(AD) is read as segment variable H in step 503, and the intersection segment H ANDResk'[N] is evaluated in test 504. If this intersection segment is only made of zeroes, it is also useless to read any further coding data, and the program directly proceeds to step 502.
If test 504 reveals that H AND Resk'[N] has at least one it is necessary to get into the lower layer record chain. Its head address F(k'-1)(AD) is read as variable AD' in step 505, while the layer k' remainder R is initialized -62- O to 0 and the layer k'-1 rank N' is initialized to N x Dk'. The bitmap segment c H HPk'(AD) is scanned in a loop in which its bits H(R) are successively cexamined (test 506) to ascertain whether the rank N' N x Dk' R should be regarded. If H(R) 0, the rank N' is not in the layer k' coding data of the current 00 oO N 5 thesaurus entry, so that it is disregarded: R is incremented by one unit in step 507 and if the new R is still smaller than Dk' (test 508), N' is also incremented I by one unit in step 509 before proceeding to the next iteration from test 506.
If H(R) 1 in test 506, the bit of the vector Resk' is examined 0 0 in test 510 to determine whether the layer k'-1 rank N' has been filtered out in the higher layer processing. If so (Resk.(N') the program jumps to the next position in the layer k'-1 record chain by replacing AD' by the next address in step 511. After step 511, the program proceeds to the abovedescribed step 507.
If Resk'(N')= 1 in test 510, the processing depends on whether the coding layer k' is immediately above k (test 512). If k+1, the bitmap segment HPk(AD') is read (step 513) and superimposed, by a bitwise Boolean OR operation, onto the segment WZ[N'] of the bitmap vector WZ (step 514). If k' k+1 in test 512, the recursive function FILT is called in step 515 with the arguments k, Resk+ 1 Resk_-1, AD' and WZ. After step 514 or 515, the program proceeds to the above-described step 511.
The scanning of the bitmap segment H HPk'(AD) is over when R Dk' in test 508. The updated bitmap vector WZ is then returned in step 502.
When the coding data containers are arranged as illustrated in figures 34C-D, the scanning of the layer k' bitmap segment in loop 505-509 is replaced by the scanning of the layer k' remainders in the record chain of the layer k'-1 coding data container.
The procedure of figures 47-48 has the advantage that the lower layer record chains are accessed only when it is strictly necessary. In particular, it is noted that the loop 282-285 of figure 45 requires the reading of all the layer k ranks (step 290) relating to the current thesaurus entry while it may be already known from the k+1 processing that some ranks will be disregarded (Res(N) 0 in test 291). When this occurs in figures 47-48, the rank N is not read in the hard drive (it is not even stored). This advantage is very significant 00- 63- O since the lower layers, particularly layer 1, have the largest coding data c containers, so that plenty of useless read operation are avoided.
It is noted that the use of a rank table TNO according to figure 46 is quite compatible with the procedure of figures 47-48. The first loop 280-287 of 00oo c 5 figure 46 is simply replaced by that of figure 47, and steps 513-514 of figure 48 are replaced by writing N' into TNO(AD').
SIt is noted that the loops of figures 43-47 may cover not only a Cc SBETWEEN range in a thesaurus, but generally words and/or macrowords Swhose coding data are stored in the same data container, and which are 00oO combined in an OR type of operation. Instead of running the loops from x xl Sto x x2, an iteration is made for each one of such word or macroword.
For example, if the word and macroword thesauruses for a given attribute share the same data container, the loop may be executed only once for all relevant values of the attribute, i.e. for the sub-tree which, in stage 191 of figure 36, has been substituted for the corresponding node of the query tree.
In addition, such words and/or macrowords may possibly belong to different thesauruses (which requires a suitable labeling of the OR nodes of the query tree). For example, if a query aims at the accidents undergone by a certain client or having a damage amount greater than a given value, and if the client and accident amount thesauruses share the same data containers (as in figures 31-32), the client and accident amount attributes may be examined within the same first loop of figure 46, and the TNO table scanned only once to retrieve all the relevant HP1 segments.
However, it is preferable to have one data container for each thesaurus and each macroword level, as indicated previously. An advantage of this is to reduce the sizes of the rank tables TNO used in the procedure of figure 46.
It is also noted that, when encoding the leaves of the expanded query tree, it is possible to use the word indexes ATP(q)_WI(x) instead of the thesaurus row-ID's x. A list of word indexes is then encoded for each leaf of the expanded query tree. Accordingly, the tree expansion procedure 191 is carried out with reference to the thesaurus word index files, whereas they are not used in the processing of stage 192, which directly calls the record chain head addresses by means of the word indexes. This is useful when the word indexes do not coincide with the thesaurus row-ID's (contrary to figures 25-27), which 00 -64- O will normally happen as the database lives.
c In the preferred case where separate coding data files are used for ct each thesaurus word, as in figure 17, the layer n processing of step 264 is C similar to that shown in figure 44. The loop is not performed in a common data 00 c 5 container (with the loop index AD), but in the individual coding data files AT_P(q)_W_NOk and AT_P(q)_W_HPk (with a loop index i as in figure 33).
SOptimal disc access is ensured without any thesaurus sorting. The layer k n Sprocessing of step 265 does not need two loops as in figure 46. It may be in caccordance with figure 49.
00 The first step 310 of the procedure shown in figure 49 consists in C allocating the value AT_P(q)(x) of the word of rank x in the current thesaurus to the word variable W, and in initiating the loop index i to zero. As long as i is lower than the total number imax(AT, q, W, k) of layer k records in the coding data file relating to thesaurus AT, macroword level q and word W (test 311), steps 312-315 are performed. In step 312, the rank AT_P(q)_W_NOk(i) is assigned to the integer variable N. Those rank data are read block by block to minimize the disc accesses. In the following test 313, the bit Res(N) of the layer k+1 result bitmap Res is evaluated. If Res(N)= 1, the bitmap segment ATP(q)_W_HPk(i) is read in step 314 and superimposed, by an Boolean OR operation, onto the segment WZ[N] of bitmap vector WZ in step 315, whereby any in AT_P(q)_W_HPk(i) is written at the corresponding position into WZ[N] and any in AT_P(q)_W_HPk(i) leaves unchanged the corresponding bit of WZ[N]. The bitmap segment data AT_P(q)_W_HPk(i) are also read by blocks. In step 316, performed after step 315 or when Res(N) 0 in test 313, the loop index i is incremented by one unit before coming back to test 311.
When the relevant coding data have been completely examined (i imax(AT, q, W, k) in test 311), it is determined whether the current word x is the last one x2 of the BETWEEN range (test 317). If x x2, the thesaurus pointer x is incremented by one unit in step 318 before coming back to step 310 for the next iteration of the loop. The loop is over when x x2 in test 317.
Figure 50 shows an alternative way of performing the leaf processing of figure 42 (when test 252 is positive), in the case where the coding format of the flat file row-ID lists is specified in the thesaurus index registers, as shown in the right part of figures 25-27.
oo00 O The initialization step 260A is similar to that 260 of figure 42, except c that the rank table TNO is initialized to the default value at the same time. In Sstep 280A, the word index WI ATP(q)_WI(x) and the corresponding format F =AT_P(q)_FORMAT(x) are read from the AT level q thesaurus index 00oO register. If F designates "low density" (test 261A), the loop 271-276 depicted in figure 43 is executed in step 262A. Otherwise (F designates "normal density" \with n coding layers), the head address AD ATP(q)_Fk(WI) is read in step 281A to initiate the scanning of a record chain. If we are in the first coding layer k n (test 263A), the loop 282-285 depicted in figure 44 is executed in step 00oo 264A. Otherwise, the first loop 282-285 of figure 46 is executed in step 265A.
SAfter step 262A, 264A or 265A, the current thesaurus pointer x is compared with the upper bound x2 of the BETWEEN range in test 286A, to be incremented in step 2870A before coming back to step 280A if x x2. When x x2 in test 286A, the table TNO is exploited in step 301A, which is identical to the second loop 301-306 of figure 46, in order to complete the bitmap vector WZ returned in step 266 of figure 42.
QUERY OUTPUT The SQL query further specifies how the data matching the query criteria should be presented in the response. Therefore, the next stage 193 of the query processing (figure 36) is the preparation of the results for their display in stage 194.
Typically, the query defines a list of attributes whose values should be included in the displayed response ("SELECT" and "FROM" clauses in the SQL query, with FROM specifying the relevant data tables and SELECT specifying the relevant columns in those tables).
When a link table of the type shown in figure 9 is stored, the columns of that link table corresponding to the listed attributes are read in the matching rows, identified in the bitmap vector Res output in step 246 of figure 41, in order to obtain the links pointing to the relevant data tables. The attribute values are then retrieved from the data tables for display.
Another possibility is to scan the thesaurus relating to such attribute and to compute the bitwise Boolean AND between the result bitmap vector Res and each encoded bitmap vector of the thesaurus. Every time there is a hit -66- 00 O between those vectors (a in the AND output vector), the corresponding C thesaurus word will be displayed or otherwise processed. This permits the attribute values of the response to be retrieved without using any link or data table.
00 oO C 5 The AND operations may be performed directly in layer 1. They can also be performed as previously, by decrementing the layer index from k n to \k 1. This requires the layer k results which can be calculated from the layer 1 t'q Sbitmap vector Res. The latter option optimizes the disc access by taking 0 advantage of the multi-layer VDG compression scheme.
00oo Such scanning may also be accelerated by taking advantage of the Smacroword thesauruses. The highest level thesaurus of an attribute is first scanned, and the portions of the lower level thesaurus(es) covered by a given macroword are scanned only if a hit has been observed for the macroword.
Figure 51 shows a procedure suitable for accessing the values to be included in the response for a given attribute AT by scanning the corresponding macroword and/or word thesauruses, which fully takes advantage of both the macroword grouping and the VDG compression scheme.
As before, it is assumed that the attribute AT has a number Q+1 1 of thesauruses indexed by a level parameter q with 0 q Q, having respective prefix lengths P(q) with the level parameter q 0 designating the individual word thesaurus, whose prefix length corresponds to the attribute word length. In the notations of figure QA is an integer with 0_ QA Q representing a degree of accuracy expected in the query result; QA is set to 0 for maximum accuracy; the thesaurus pointer xq is a row-ID in the AT thesaurus index register of level q; for q QA, WZlq is a bitmap vector which represents a layer q target list of data graph identifiers which match the query criteria and should be examined in connection with the level q thesaurus word xq. In the initialization step 320, the result bitmap vector Res, output in step 246 of figure 41, is assigned to the vector WZ1Q which thus represents the flat file row-ID's matching the query criteria; 00 -67- S- for k 1, WZkq designates a bitmap vector in which each bit of rank N the (N+1)-th bit) indicates whether the (N+1)-th segment of D(k-1) bits of WZ(k-1)q includes at least one in accordance with the VDG 00 compression scheme (0 q WZkq is referred to as a layer k and level q filtering list for QA q Q and 1 k n. Working zones are Sreserved in RAM 103 for containing the bitmap vectors WZkq which t' need not be stored in the hard drive.
In the initialization step 320, the indexes q and XQ are set to q Q and 00 0XQ 0, in order to start scanning the highest level thesaurus. In the conversion 1 10 step 321, the bitmap vector WZlq is processed to provide the corresponding higher layer vectors WZkQ (1 k n).
The coding layer index k is set to n in step 322, and a function FINTER is called (step 323) to determine the intersection between the integer list represented in the layer k coding data of the thesaurus entry xq and the filtering list represented by the bitmap vector WZkq. The input to this function comprise the coding layer index k, the (macro)word thesaurus level q, the (macro)word index x xq, and the bitmap vector WZ WZkq. Its output is another bitmap vector having the same dimension, noted WX, which represents the integer list intersection.
The bitmap vector WX output by the function FINTER called in step 323 is tested in step 324 to determine whether at least one of its bits is If not, the (macro)word pointed to by xq does not cover any attribute value relevant to the query, so that the thesaurus pointer xq is incremented by one unit in step 325, and the program comes back to step 322 to examine the next (macro)word of the level q thesaurus.
If the bitmap vector WX has at least one and if k 1 (following test 326), the layer index k is decremented by one unit in step 327. The next layer processing is then started from step 323.
When k 1 in test 326, WX 0 is the bitmap representation of the list of flat file row-ID's which are represented both in the result bitmap vector Res and in the coding data of the current (macro)word xq.
-68- 00 If q QA (test 330), this bitmap vector WX is saved as WZ1qI in step 331. The row-ID AT_P(q)_FW(Xq) of the first "child" of macroword Xq in the lower level thesaurus is then read in the level q thesaurus and assigned as a 00 starting value of the thesaurus pointer Xq_l (step 332). The thesaurus level q is then decremented by one unit in step 333, and the lower level processing is started from step 321.
N When q QA in test 330, the word pointed to by XQA (if QA or a 0word covered by the macroword pointed to by XQA (if QA is an attribute 0 value of a data graph matching the query criteria. In step 335, a certain action is taken based on this word or its thesaurus pointer XQA and the corresponding bitmap vector WX. The latter vector identifies the rows of the flat file which contain the (macro)word XQA in the AT column and which satisfy the query criteria. The type of action depends on the SQL query. Different possibilities will be described further on.
After step 335, the higher level bitmap vectors WZ1q are updated to remove any present at the same location as in WX. Such a stands for a data graph having the word pointed to by XQA (if QA or a word covered by the macroword pointed to by XQA (if QA as the value of attribute AT; therefore, no other word will have a hit with it, so that it can be removed. To initialize the update, the index q is taken equal to Q in step 336. In step 337, the Boolean operation WZ1q AND NOT WX is performed bit by bit, and the result becomes the updated WZ1q. If the resulting bitmap vector WZ1q has at least one remaining (test 338), the thesaurus level index q is decremented by one unit in step 339, and step 337 is repeated.
If WZ1q consists only of zeroes in test 338, it is not necessary to continue the update in the lower levels. If q Q (test 340), the (macro)word pointed to by Xq does not cover any more attribute value relevant to the query: the thesaurus pointer xq is incremented in step 341, and the program comes back to step 321 to examine the next (macro)word of the level q thesaurus.
The scanning of the thesauruses for attribute AT is over when q Q in test 340.
-69- 00 O This function FINTER called in step 323 may be in accordance with the C1 flow chart shown in figure 52 when the thesauruses are stored as shown in Sfigures 25-32. It is started in step 350 by loading the above-mentioned input arguments k, q, x xq) and WZ WZkq). In step 351, the bitmap vector WX is 00 C 5 initialized with zeroes. The program first obtains the word index WI AT_P(q)_WI(x) in step 352, and then the head address O AD ATP(q)_Fk(WI) in step 353 to initiate the scanning of the relevant record tc, C chain in the data container.
C If the level q thesaurus entry x for attribute AT is stored in the "low 00 0 10 density" format (test 354), the processing is as described below with reference N to figure 53 (step 355) to obtain the intersection vector WX. If the format is "normal density", the processing depends on whether the program is in the first layer, that is k n (test 356). The processing of figure 54 is applied if k n (step 357), and that of figure 55 if k n (step 358). After step 355, 357 or 358, the execution of function FINTER is terminated in step 359 by returning the bitmap vector WX.
The low density processing of figure 53 has a loop in which each iteration begins by comparing the address AD with the end-of-chain value in test 360. If AD 0, there remains at least one item to be examined in the record chain, so that the flat file row-ID value NO(AD) and the next address NX(AD) are read as variables N and M, respectively, in step 361. The Euclidean division of N by Ak is made in step 362 to obtain the layer k-1 quotient (rank) If WZ(N') 1 in the following test 363, a is written into bit WX(N') of the bitmap vector WX (step 364). After step 364, or if WZ(N') 0 in test 363, the variable M is substituted for AD in step 365 before coming back to test 360. The low density processing for the current (macro)word is over when the record chain has been completely examined (AD 0 in test 360), and the program proceeds to step 359 of figure 52.
The layer n normal density processing of figure 54 has a similar loop in which each iteration begins, in step 370, by comparing the address AD with the end-of-chain value If AD 0, the layer n rank value NOn(AD) and the next address NXn(AD) are read as variables N and M, respectively, in step 371. If the segment of rank N in the bitmap vector WZ has at least one (WZ[N] 0 00 0 in the following test 372), the bitmap segment HPn(AD) is read (step 373) and CI combined with the bitmap segment WZ[N] in a bitwise Boolean AND operation Sto provide the segment WX[N] of the bitmap vector WX (step 374). After step 374, or if WZ[N] 0 in test 372, the variable M is substituted for AD in step 375 00 0 5 before coming back to test 370. The layer n normal density processing for the current (macro)word is over when the record chain has been completely Sexamined (AD 0 in test 370), and the program proceeds to step 359 of figure S52.
SThe layer k n normal density processing is advantageously made of 00 two successive loops (figure 55). The first loop is for determining a temporary Srank table TNO, which is used to handle the bitmap segments in the second loop, like in the procedure described previously with reference to figure 46.
Table TNO has a number of addresses which is at least equal to the number of addresses ADmax of the data container in which the layer k coding data of the current thesaurus (AT, q) are stored. Each entry TNO(AD) of address AD in the rank table TNO is for containing an integer representing the rank NOk(AD) if it is useful to access the bitmap segment HPk(AD), or else a default value Such access is useless if NOk(AD) does not belong to the layer k rank list associated with the current (macro)word Xq, or if there are only zeroes in the segment of rank NOk(AD) in the bitmap vector WZ WZkq+ 1 In the initialization step 380, all entries of the rank table TNO are set to the default value Each iteration of the first loop begins in step 381 by comparing the address AD with the end-of-chain value If AD 0, the layer k rank value NOk(AD) and the next address NXk(AD) are read as variables N and M, respectively, in step 382. The segment WZ[N] of rank N in the bitmap vector WZ is examined in test 383. If that segment WZ[N] has at least one "1" (WZ[N] 0 in test 383), the rank N is written at address AD into table TNO in step 384 before substituting M for AD in step 385 and coming back to test 381 to examine the next record of the chain. Otherwise (WZ[N] the rank N is filtered out by jumping directly to step 385.
The first loop is over when the record chain has been completely examined (AD 0 in test 381). The program then proceeds to the second loop 386-391. In each iteration of the second loop, the contents N of the rank table -71- 00 TNO at address AD, read in step 387 after having incremented AD in step 386, c are compared with the default value in test 388. If N is a valid rank value Cthe bitmap segment HPk(AD) is read (step 389) and combined with the bitmap segment WZ[N] in a bitwise Boolean AND operation to provide the segment 00oo c 5 WX[N] of rank N in the bitmap vector WX (step 390). If AD ADmax (test 391), the rank table address AD is incremented by one unit in step 386 when starting Sthe next iteration. The second loop is over when AD ADmax in test 391, and Sthe program proceeds to step 359 of figure 52.
SThe scanning of the thesauruses as explained with reference to figures 00 oo 51-55 has a number of significant advantages: c- it does not require any access to the original data tables. Therefore it is not compulsory to maintain the data tables in memory. Even when they are stored, they will often be accessible through a relatively low software interface, such as ODBC. The scanning method advantageously circumvents that interface; it is very efficient in terms of disc accesses, because it takes advantage of the record grouping in the coding data container. The procedures of figures 53-55 are respectively similar to those of figures 43, 44 and 46 regarding the disc accesses, and they provide the above-described advantages in this respect; the procedure of figure 51 is also very efficient owing to the filtering achieved by the updating of the bitmap vectors WZlq (loop 336-339) This filtering takes advantage of the fact that each flat file row has a unique value (possibly Null) for each attribute. It avoids plenty of useless operations to read coding data pertaining to subsequent thesaurus words and macrowords which would not provide hits in the lowest layer (because the hit in the higher layer would be due to a flat file row-ID corresponding to an already considered thesaurus word).
Figure 56 shows how the procedure of figure 51 can be adapted when the coding data containers are stored as illustrated in figures 25-30 and 34A-B.
The above-described function FINTER is replaced by a recursive function FFILT illustrated by figure 57. Accordingly, the loop 322-327 is replaced by a loop 590-593 after executing steps 351-353 as in figure 52 (with k If the -72- 00 O resulting intersection bitmap WX is made of zeroes only (test 324), xq is c incremented in step 325 before coming back to step 351 for the next (macro)word of the current level q thesaurus range. If WX has at least one "1" in test 324, the program proceeds to step 330 as described before. Otherwise, 00 N 5 the procedure of figure 56 is the same as that of figure 51.
Each iteration in the loop 590-593 begins by comparing the address AD I with the end-of-chain value in test 590. If AD 0, the layer n rank value c- NOn(AD) and the next address NXn(AD) are read as variables N and M, ci respectively, in step 591. Afterwards, the filtering and intersection function 00 0 10 FFILT is called in step 592 before substituting M for AD in step 593. The N computation of the intersection list WX for the current (macro)word is over when the layer n record chain has been completely examined (AD 0 in test 590), and the program proceeds to test 324 as indicated hereabove.
A flow chart of this function FFILT is shown in figure 57. Its arguments, input when starting its execution in step 600, are as follows: a coding layer index k, with k n when the function FFILT is called in step 592 of figure 56; k bitmap vectors WZ1q, WZ 2 q, WZkq as obtained in step 321 of figure 56; a layer k rank N, with N NOn(AD) when the function FFILT is called in step 592 of figure 56; the corresponding record address AD in the layer k data container; and the intersection bitmap vector WX which is being calculated.
In test 601, it is determined whether the segment of rank N of the bitmap vector WZkq is only made of zeroes. If so, it is not necessary to read any further coding data relating to the layer k rank N, so that the execution of the function is terminated in step 602 by returning the bitmap vector WX.
If the segment WZkq[N] has at least one in test 601, the bitmap segment HPk(AD) is read as segment variable H in step 603, and the intersection segment H AND WZkq[N] is evaluated in test 604. If this intersection segment is only made of zeroes, it is also useless to read any further coding data, and the program directly proceeds to step 602.
If test 604 reveals that H AND WZkq[N] has at least one it is 73 00 necessary to get into the lower layer record chain. Its head address F(k-I )(AD) NI is read as variable AD' in step 605, while the layer k remainder R is initialized to 0 and the layer k-I rank N' is initialized to N x Dk. The bitmap segment H HPk(AD) is scanned in a loop in which its bits H(R) are successively 00 c-i 5 examined (test 606) to ascertain whether the rank N' N x Dk R should be regarded. If H(R) 0, the rank N' is not in the layer k coding data of the current thesaurus entry, so that it is disregarded: R is incremented by one unit in step N 607 and if the new R is still smaller than Dk (test 608), N' is also incremented N by one unit in step 609 before proceeding to the next iteration from test 606.
00 If H(R) I in test 606, the bit of rank N' of the vector WZk q is examined c-I in test 610 to determine whether the layer k-i rank N' is in the result list. If not (WZkq(N') the program jumps to the next position in the layer k-I record chain by replacing AD' by the next address NX(k-1 in step 611. After step 611, the program proceeds to the above-described step 607.
If WZkq(N') 1 in test 610, the processing depends on whether the coding layer k is immediately above I (test 612). If k 2, the bitmap segment HPI is read (step 613) and combined with the bitmap segment WZl q[N'] in a bitwise Boolean AND operation to provide the segment WX[N'*I of rank N' in the bitmap vector WX (step 614). If k 2 in test 612, the recursive function FFILT is called in step 615 with the arguments k, WZlql 9 WZ(kl')q, AD' and WX After step 614 or 615, the program proceeds to the above-described step 611.
The scanning of the bitmap segment H HPk(AD) is over when R Dk in test 608. The updated bitmap vector WX is then returned in step 602.
It is noted that the use of a layer I rank table TNO (as in figure 55) is quite compatible with the procedure of figures 56-57. The records of the table TNO are initialized with the default value in step 351; steps 61 3-614 of figure 57 are replaced by writing N' into TNO(AD'); and when AD 0 in test 590, table TNO is scanned as in loop 386-391 of figure A further optimization of the procedure of figure 51 or 56 can be achieved when the stored thesaurus data include files organized as illustrated in figures 58-61. For each thesaurus, a table of the type shown in figures 58-60 is stored, to associate each possible value of the layer n rank NOn with a -74- 00 record chain head address F AD' in an additional data container as shown in c figure 61. The latter data container contains the same layer n bitmap segment data HP'2 HP2 as that of figure 32 or 34A, but the links NX'2 define record chains which pertain to the same layer n rank rather than to the same 00 00 5 thesaurus entry. The data container of figure 61 is thus obtained by sorting that of figure 32 or 34A based on the N02 column, deleting the N02, NX2 and F1 Scolumns, and adding a column NX'2 to contain the next addresses in the record t' chains based on N02 and a further column PTR where the thesaurus indexes x C)to which the record pertain is written. For each rank N02 the head address of
(N
00 00 10 the chain is memorized in FAD'(N02).
SBefore starting the procedure of figure 51 or 56, or after every iteration of step 321, the pre-filtering treatment shown in figure 62 is applied to mark thesaurus entries that will not be read for the reason that their layer n ranks are not in the layer n coding data of the matching data graph identifier list. The marking is done by means of a table
T
q for a macroword level q, which has one bit Tq(xq) for each level q thesaurus pointer xq. Those bits, as well as the layer n rank N NOn are initialized to zero in step 620 of figure 62. If the segment of rank N of WZnq is only made of zeroes (test 621), test 622 is performed to determine whether the highest possible layer n rank NOnmax has been reached. If not, N is incremented in step 623 and test 621 is repeated. When WZnq[N] P 0 in test 621, the head address FAD'(N) is read as variable AD' in step 624 and compared to the end-of-chain value in test 625. If AD' 0, the program proceeds to step 622. Otherwise, the bitmap segment HP'n(AD') and the corresponding next address value NX'n(AD') are read as variables H' and respectively, in step 626. If H' and WZnq[N] have no in common (test 627), M' is substituted for AD' in step 628, and the next iteration is started from test 625. If there is at least one in the bitwise Boolean AND combination of H' and WZnq[N] in test 627, the thesaurus pointer xq PTR(AD') is read in the last column of figure 61, and a is written in the corresponding location of table Tq before proceeding to step 628.
After that, as shown in figure 63, the loop 322-327 of figure 51, where a relevant bitmap vector WX is calculated, is completed by an initial filtering step oo00 0 640 where the bit Tq(Xq) is tested. This test 640 is also performed after having ~1incremented Xq in step 325. If Tq(xq)= 1 in test 640, the program proceeds to Sstep 322 as described before. If Tq(xq) 0, it proceeds directly to step 325, 00 thereby avoiding the computation of an intersection list WX that will be empty.
The same filtering step 640 can be performed before step 351 in figure 56.
INOThe function FINTER illustrated in figures 52-55 is readily adapted to the case where separate coding data files are used for each thesaurus word, 00oo as in figure 17. Steps 352-353 of figure 52 are replaced by the allocation of the value ATP(q)(x) to the word variable W, and by the initialization of the loop index i to zero. The low density processing of step 355 and the layer n normal density processing of step 357 are similar to those shown in figures 53 and 54.
The loop is not performed in a common data container (with the loop index AD), but in the individual coding data files (with a loop index i as in figure 33). The layer k n processing of step 358 does not need two loops as in figure 55. It may be in accordance with figure 64.
In the procedure shown in figure 64, steps 395-399 are performed as long as the loop index i is lower than the total number imax(AT, q, W, k) of layer k records in the coding data file relating to thesaurus AT, macroword level q and word W (test 394). In step 395, the rank ATP(q)_W_NOk(i) is assigned to the integer variable N. In the following step 396, the segment WZ[N] of rank N in the bitmap vector WZ is tested. If WZ[N] has at least one (WZ[N] the bitmap segment ATP(q)_W_HPk(i) is read (step 397) and combined with the bitmap segment WZ[N] in a bitwise Boolean AND operation to provide the segment WX[N] of rank N in the bitmap vector WX (step 398). In step 399, performed after step 398 or when WZ[N] 0 in test 396, the loop index i is incremented by one unit before coming back to test 394. The loop is over when the relevant coding data have been completely examined, i.e. when i imax(AT, q, W, k) in test 394.
The above-described procedure may involve different types of action in step 335 of figure 51 or 56, based on features of the SQL query.
In a relatively simple type of SQL query, a list of values of one attribute -76- 00 0 is required name all clients who meet certain criteria). In such a case, the c scanning of figure 51 or 56 is performed only in the thesaurus(es) relating to Sthat attribute, with QA 0, and the action of step 335 may simply be to read the word AT(xo) which is in position x o in the individual word thesaurus (in fact, if 00 C 5 the coding data are stored as illustrated in figure 17, the word AT(x 0 has been read just before) and to write this word AT(x 0 into an output table, or print it INOout. It is observed that the word list thereby produced is automatically sorted, in the ascending order. If the reverse order is required, the thesaurus may be 00 scanned in the opposite direction.
If the SQL query has a DISTINCT keyword in the SELECT clause regarding the attribute AT, there is one output of the word AT(xo) in step 335. If not, or if the SELECT clause has the keyword ALL, there may be one output of the word AT(x 0 for each non-zero bit of WX in step 335. Those non-zero bits may also be counted to provide the number of occurrences of the word AT(x 0 in the matching data graphs.
If the values of the attribute are required with a reduced accuracy, the thesaurus may be scanned as shown in figure 51 or 56 with QA 0, thereby avoiding memory accesses to obtain irrelevant details from the level q thesauruses with q QA. For example, if a date attribute is required expressed in years, the scanning of figure 51 or 56 may be stopped at the level QA corresponding to a truncation length of 4.
The SQL query frequently requires several attributes in the SELECT and FROM clauses. In order to maintain the connections between the attribute values belonging to the same data graph, some form of indexing is needed. A possibility is to reserve in RAM 103 a working zone for containing an output table having as many rows as in the virtual flat file and respective columns for receiving the attribute values of the result lists. The memory locations of the output table are initialized with a default value. The above-mentioned attribute values AT(x 0 or their prefixes AT(xQA) if QA 0, are written into the output table in the occurrences of step 335 shown in figure 51 or 56. Such write operation in step 335 is made into any row of the output table indicated by a non-zero bit of the bitmap vector WX. The output data are eventually produced -77- 00 by eliminating the empty rows from the output table (the rows that still contain C-I the default value).
Figure 65 shows how step 335 is developed in such a case, to write the word W AT(XQA) where appropriate in the column OT_AT of the output table.
00 C 5 The row pointerj is initialized to zero in step 400, and the word W is loaded (if it has not been before). Every time the bit WX() is 1 (test 401), the word W is written into row j and column AT of the output table (step 402). The row pointer C( j is the compared to its maximum value jmax in test 403 and incremented if Sj jmax (step 404). The program has finished the action of step 335 when 00 0 10 j jmax in test 403.
Example 4: We consider the query criteria of Example 3 and assume that the attributes requested for display are accident date, client name and policy date.
In Example 3, discussed with reference to figures 37-38, the bitmap of the matching data graphs (output in step 246 of figure 41) is Res 101100001000, as may be checked in figure 8. In this example, figure 66 shows the contents of the output table as described hereabove.
The above-mentioned output table may be too big to be conveniently reserved in RAM 103. In real databases, the number of rows in the virtual flat file is relatively high millions) and if there are too many characters in one row of the output table (because there are too many attributes to be included or because some of them use a relatively high number of characters), the output table may become prohibitively big. There are several solutions to deal with this potential problem.
One of them is to write the thesaurus row-ID's XQA (integers) into the output table instead of the (macro)words AT(XQA) in step 402 of figure Once all the relevant thesauruses have been scanned, the non-empty output table rows are selected to retrieve the attribute values from the thesaurus row- ID's. This reduces the breadth of the columns of the output table since the words AT(XQA) often require much more characters.
Figure 67 shows the contents of such an output table in the case of Example 4, the thesauruses being sorted as in figures -78- 00 Another solution, alternative or cumulative, is to use an index in RAM C 103, to associate an integer address with each data graph or flat file row-ID. A default address is initially assigned to all the data graphs. When one of them is designated for the first time by a in the corresponding bit of WX in step 335 o00 5 when scanning the first thesaurus), it is allocated a new address obtained by incrementing a counter. This address is retrieved from the index when the \data graph is again designated in the scanning of the subsequent thesaurus(es). This integer address is a row-ID in an output table stored in RAM 103, which has a reduced number of rows where the attribute values or oO prefixes AT(XQA), or their thesaurus row-ID's xQA, are written. The non-empty c rows are consecutive and hence the total number of rows can be significantly reduced. This compressed output table is eventually read out to display the results.
Figure 68 shows the contents of such index and output table, containing thesaurus row-ID's, in the case of Example 4.
Figures 69 and 70 show how step 335 is developed when scanning the first thesaurus and the subsequent thesaurus(es), respectively. The steps 400, 401, 403, 404 indicated by the same reference numerals are identical to those of figure 65. In figure 69, when the bit WX(j) is 1, the counter value m (initialized to 0 in step 320 of figure 51 or 56) is allocated to the index IND(j) for row j (step 410), the thesaurus pointer XQA (or word W AT(xQA)) is written into row j and column AT of the output table (step 411), and the counter value m is incremented (step 412). When the scanning the first thesaurus is over, m represents the number of matching data graphs. In figure 70, when the bit WX(j) is 1, the index IND(j) for row j is retrieved as pointer m' (step 413) and the thesaurus pointer xQA (or word W) is written into row m' and column AT of the output table (step 414).
The output table is easily sorted based on the contents of its columns when the SQL query has GROUP BY, ORDER BY or similar clauses. Such sorting operation may be performed hierarchically with reference to a plurality of attributes. The most significant attribute in the hierarchy is preferably subjected to the first thesaurus scanning as shown in figure 51 or 56 so that the first sorting criterion will be automatically fulfilled when constructing the output -79- 00 table. The sorting based on the remaining attributes is done within each portion c of the output table that has common values for the previous attribute(s).
The sorting is particularly simple when the columns of the output table contain thesaurus row-ID's XQA, as in figure 68, because it only involves sorting o00 S 5 integer lists.
It has been indicated before that for certain attributes, in particular Snumerical fields, the explicit attribute values may be stored in the link table (if N there is a link table). The output table of the type illustrated in figure 66, 67 or N 68 need not have a column for such attribute. If the attribute is to be displayed 00 oO or otherwise exploited, its values can be retrieved from the link table in the rows C corresponding to having the same row-ID as) the non-empty rows of the output table (figures 66-67) or the valid pointers in the output table index (figure 68).
SQL queries may also require calculations to be made on attribute values of the matching data records, particularly in data warehousing applications. Such calculations can be performed from the data of an output table of the type illustrated in figure 66, 67 or 68.
Example From Example 4, we assume that the (arithmetic) mean value of the time difference between the accident date and the policy date is requested, expressed as a number of days. For each non-empty row of the output table, the program computes the difference, in number of days, between the first and third column. Those differences are accumulated and the result is divided by the number of non-empty rows to obtain the desired mean value.
In fact, this mean value can be computed with an output table reduced to only one memory location: when scanning the accident date thesaurus, the attribute value expressed as a number of days from an arbitrary reference day is multiplied by the number of non-zero bits in WX in step 335 of figure 51 or 56 and added to an accumulation variable V (initialized to 0 in step 320) stored in the memory location of the reduced output table; then, when scanning the policy date thesaurus, the attribute value expressed as a number of days from the same reference day is multiplied by the number of non-zero bits in WX in step 335 and subtracted from V in step 335; finally, the resulting V is divided by 00 oo the number of non-zero bits in the result bitmap Res to provide the desired c mean value.
However, an output or computation table having more than one 00oo memory location is often useful in RAM 103 for that sort of calculations, in particular in cases where the desired quantity is not linear with respect to the attribute values if the quadratic or geometric, rather than arithmetic, mean INOvalue is requested in Example A computation table is a particular case of output table, and it has a oo structure similar to that of the output table described hereabove. It may have as many rows as in the virtual flat file (as the output tables of figures 66-67).
Alternatively, it may be associated with an index identical to that of figure 68. It may also have only one row, as in the above example of the output table having one memory location. Each column of the computation table is for containing values of an operand used in the calculation to be made. Depending on the complexity of the calculation, one or more columns may be needed, but in most cases one column will be sufficient.
The attribute whose values are involved in the calculation have their thesauruses scanned successively, as described with reference to figure 51 or 56. Step 335 may be developed as shown in figure 71 in the case of a computation table CT having a single column and as many rows as in the virtual flat file (when there is an index, it can be handled as in figures 69-70). In figure 71, steps 400, 401, 403 and 404 are identical to those of figure 65. When the bit WX(j) is 1 in step 401, the contents CT(j) of the computation table in row j is allocated to the operand Y in step 416, and then a function f of the operand Y and of the current (macro)word W AT(xQA) is calculated and saved as the new contents CT() in step 417.
The mathematical function f is selected on the basis of the calculation to be performed and of the thesaurus being scanned. Referring again to Example 5, when the accident date is first scanned, the function f(Y,W) may be the transformation of the date W expressed in the format yyyy mm dd into a number of days from a reference day (it is thus a function of W only); when the policy date thesaurus is scanned, the function f(Y,W) may consist in applying the same transformation to the date W and subtracting the result from Y.
-81 00 O Afterwards, the mean value (arithmetic, quadratic, geometric, of the non- N empty rows of CT is calculated to provide the desired output result. Other kinds of global calculation can be performed from the columns of the computation table, for example statistical, financial or actuarial calculations.
00 05 The macrowords are advantageously used in this type of calculation if the desired accuracy is lower than that afforded by the individual words of at least one of the attributes involved.
VIRTUAL FLAT FILE PARTITIONING 00 For large systems, it is often advantageous to partition the virtual flat file into several portions or blocks each consisting of a determined number of rows. The data graphs are distributed into the blocks based on their identifiers (flat file row-ID's).
Preferably, each thesaurus is divided into corresponding thesaurus sections, whereby each section has entries whose flat file row-ID lists are included in the corresponding virtual flat file block. The complete flat file row-ID list associated with one word assigned to an attribute is the union of the lists represented in the entries of the corresponding thesaurus sections for that word. Accordingly the complete flat file row-ID lists of the thesaurus entries are subjected to the same partitioning as the virtual flat file: they are split into sublists corresponding to the thesaurus sections.
The thesaurus index file for an attribute may be common to all the sections. A separate index file may also be provided for each section.
For each one of the blocks, steps 191-193 of the processing of a SQL query (figure 36) are performed as described hereabove with reference to figures 38-71. The results thus obtained are merged to display the response.
The processing of the query with respect to the different blocks may be performed sequentially or in parallel.
In a sequential processing, RAM availability for optimal processing speed can be effectively controlled. Even though the cost of RAM circuits is not currently considered to be critical, a given machine has a certain amount of available RAM capacity and this is a limitation to reserve RAM space for the above-described output or computation tables. When the limitation is likely to be encountered, partitioning the virtual flat file directly reduces the size of those -82- 00 tables (jmax in figures 65 and 69-71).
c Accordingly, the use of a particular machine to carry out the invention will dictate the choice of jmax, that is the block size. The virtual flat file blocks are dimensioned based on the selected size parameter, and the corresponding oo 00 5 thesaurus sections are constructed one section after the other as indicated with reference to steps 122-126 of figure 19.
SSuch dimensioning of the query processing engine enables to use optimal algorithms at all stages while avoiding the need to swap intermediary Sdata between RAM 103 and hard drive 105.
oo 00 10 A further acceleration is achieved when parallel processing is used.
SThe query processing is distributed between several processors, one for each virtual flat file block.
A possible architecture of the parallel query processing engine is illustrated in figure 72, in the particular case where all blocks have the same size jmax. A number M of matching units 700 are connected to a query server 701 through a communication network 702. Each matching unit 700 may be a processor system of the type shown in figure 18. It has a storage device 703 such as a hard drive for storing the thesaurus sections associated with the block. If a link table of the type shown in figure 9 is used, it is partitioned into blocks in the same manner as the virtual flat file, and each block is stored in the corresponding matching unit. The server 701 provides the man-machine interface. It translates the query criteria of the SQL WHERE clause into trees of the type shown in figure 37, which are provided to the M matching units 700 along with a description of the desired output. Each of the units 700 does its part of the job according to steps 191-193 of figure 36 and returns its response to the server 701. The latter compiles the results from the different matching units to provide the overall response to the user. In order to perform the analysis of step 191, each matching unit 700 uses its thesaurus sections.
Alternatively, the analysis of the query criteria could be executed centrally by the server 701 by means of global thesauruses, each global thesaurus being common to all the (macro)words and having M columns for containing pointers to identifier sub-lists in the M storage units 703. At the end of the analysis stage, the relevant pointers are addressed to the matching units 700 for their execution of steps 192-193.
-83- 00 An update server 704, which may be the same machine as the query C server 701, is also connected to the network 702 to create and maintain the VDG's relating to the different blocks. It monitors the changes made in the data tables of the RDBMS and routes thesaurus update commands to the units 700 00 00 5 in order to make the necessary changes in the thesaurus sections.
The above-described parallel system is readily extended when the \number of data graphs becomes close to the current maximum (M x jmax in the Sillustration of figure 72). This requires the addition of a further matching unit to Sdeal with a new virtual flat file block, whose size may be the same as or 00 different from the previous blocks, and a reconfiguration of the routing and N result compilation functions in the servers 701,704. The reconfiguration is completely transparent to the previously existing matching units. Therefore, increasing the system capacity can be done at a minimum cost. It does not even require to shut down the system.

Claims (257)

1. A method of organizing information in a database system, wherein a group of attributes is defined and words of a collection of data are assigned to said 00 attributes, wherein the group of attributes is divided into a plurality of sub- groups each associated with a respective data table, each data table having a column for each attribute of the associated sub-group and rows for containing IN data table records comprising at least one word assigned to an attribute of the (Ni associated sub-group, wherein links are defined between the data tables 00 records, each link having a target table and a corresponding source table having a link column containing link values each designating a record of said target table, whereby each of said link values represents a link between the record of the source table including said link value and the record of the target table designated by said link value, the method comprising the steps of: allocating respective identifiers to data graphs, wherein each data graph represents related attribute values respectively assigned to the attributes of said group, wherein each attribute value of a data graph is either a default value or a word of said collection of data, and wherein the words of each data graph are from linked data table records; -storing a plurality of word thesauruses respectively associated with attributes of said group, wherein for each word assigned at least once to an attribute in the collection of data, the word thesaurus associated with said attribute has a respective entry containing said word; and storing data representing data graph identifier lists respectively associated with the word thesaurus entries, wherein the data graph identifier list associated with a thesaurus entry relating to a word assigned to an attribute includes any identifier allocated to a data graph having said word assigned to said attribute.
2. A method according to claim 1, wherein the entries of each word thesaurus associated with an attribute of said group are sorted based on the words assigned to said attribute.
3. A method according to claim 1 or 2, further comprising the step of storing a link table having a plurality of rows respectively associated with the data graphs and a plurality of columns respectively associated with the attribute sub-groups, 00 OO O wherein each row of the link table contains, in each one of the columns, either N a value indicating that each attribute value represented in the data graph associated with said row and assigned to an attribute of the sub- group associated with said one of the columns is a default value or a link value for O 5 retrieving at least one stored word of the collection of data represented in the data graph associated with said row and assigned to an attribute of the sub- Sgroup associated with said one of the columns. (Ni
4. A method according to claim 3, wherein said data tables are stored, and 00 wherein each link value contained in the column of the link table associated with an attribute sub-group comprises data for identifying a row of the data table associated with said sub-group. A method according to claim 3 or 4, wherein the link table has at least one column associated with a sub-group consisting of one attribute, each link value contained in said column being a word assigned to said one attribute in the collection of data.
6. A method according to claim 3, wherein the link table has at least one column associated with a sub-group consisting of one attribute, each link value contained in said column being a pointer to an entry of the word thesaurus associated with said one attribute.
7. A method according to any one of the preceding claims, wherein each word thesaurus associated with an attribute of the group to which the default value is assigned in at least one of the data graphs further has an entry for the default value, whereby one of said data graph identifier lists is associated with said thesaurus entry for the default value and includes any identifier allocated to a data graph having said default value assigned to said attribute.
8. A method according to claim 7, wherein the step of allocating identifiers to the data graphs comprises: for any target table record which is not designated in the link column of the corresponding source table, inserting a dummy record in an additional row of said source table, having a link value designating said target table row in the link column and a default value in each attribute column, such insertion of dummy records being repeated until any record of any target 86 00 O table is designated in the link column of the corresponding source table C1 initializing the data representing data graph identifier lists, to represent empty lists and processing the records of at least one root table which is not the target table for any link, the processing of each root table record comprising: 00 0 5 constructing a respective data graph consisting of related attribute values of said root table record and of corresponding records of the other data tables successively determined on the basis of the contents of the link columns in said records; allocating an available identifier to said data graph; and -for each 0attribute, selecting the entry of the associated word thesaurus relating to the (N value assigned to said attribute in said data graph and updating the data representing the data graph identifier list associated with the selected entry to add the identifier allocated to said data graph to said list.
9. A method according to claim 8, wherein the processing of each root table record further comprises: generating a row in a link table having a plurality of columns respectively associated with the data tables, wherein said row of the link table contains, in each column associated with a data table, either a value indicating that the data graph has been constructed from a dummy record with respect to said data table or a link value designating a row of said data table where the attribute values represented in the data graph are stored, said link table being used for retrieving from the data tables words of the collection of data represented in the data graphs. A method according to claim 9, further comprising the step of deleting the dummy records from the data tables.
11. A method according to claim 9 or 10, further comprising the step of deleting the link columns from the data tables.
12. A method according to any one of the preceding claims, further comprising the step of storing at least one macroword thesaurus associated with an attribute of said group and with a prefix length shorter than a word length of said attribute, having a respective entry for each prefix value having said prefix length and matching a corresponding prefix of at least one word assigned at least once to said attribute in the collection of data, said entry of the macroword -87- 00 oO thesaurus being associated with a data graph identifier list including each c identifier allocated to a data graph having, assigned to said attribute, a word whose corresponding prefix matches said prefix value. 00oO 13. A method according to claim 12, wherein at least one attribute has a plurality of stored macroword thesauruses, associated with different prefix 0 lengths. Cc S14. A method according to claim 12 or 13, wherein the entries of each Smacroword thesaurus associated with an attribute are sorted based on the o00 prefix values, and the entries of the word thesaurus associated with said c 10 attribute are sorted based on the words assigned to said attribute. A method according to claim 14, wherein at least one attribute has Q stored macroword thesauruses associated with respective prefix lengths shorter than a word length of said attribute, Q being a positive integer, each of said Q macroword thesauruses having a thesaurus level parameter q such that 1 &It; q &It; Q, the prefix length being a decreasing function of the level parameter q, the word thesaurus associated with said attribute having a level parameter q 0, wherein each macroword thesaurus having a level parameter q 2 1 contains, in each entry provided for a level q prefix value, data designating the entry of the level q-1 thesaurus which corresponds to the lowest or highest level q-1 macroword or word whose corresponding prefix matches said level q prefix value.
16. A method according to any one of the preceding claims, wherein at least one thesaurus entry comprises data for pointing to at least one memory region where coding data representing the data graph identifier list associated with said entry are stored.
17. A method according to claim 16, wherein said memory region comprises a file individually allocated to said thesaurus entry.
18. A method according to claim 17, wherein said data for pointing to at least one memory region comprise the attribute value for which said thesaurus entry is provided, said attribute value being part of a respective file name used for accessing each file allocated to said thesaurus entry. 88 00 O 19. A method according to claim 16, wherein said memory region comprises a N portion of a data container having a plurality of records each having a next address field, said portion being defined as a record chain in said data container, the chains being defined by means of the next address fields, and 00 5 wherein said data for pointing to at least one memory region comprise a respective address of a first record of a chain in said data container. A method according to claim 19, further comprising the step of grouping the records stored in the data container so that the records of each chain have 00 contiguous addresses. 10 21. A method according to claim 19 or 20, wherein said data container is individually allocated to a thesaurus.
22. A method according to claim 19 or 20, wherein said data container is shared by a plurality of thesauruses.
23. A method according to any one of claims 19 to 22, wherein the thesaurus associated with an attribute of said group has an index register where the thesaurus entries are sorted based on the words assigned to said attribute, each entry including a word index for pointing to a row of an auxiliary table, and wherein each row of the auxiliary table contains an address in the data container of a first record of a chain.
24. A method according to any one of claims 19 to 23, wherein said data for pointing to at least one memory region comprise a respective address of a last record of a chain in said data container. A method according to any one of claims 16 to 24, wherein said coding data representing a data graph identifier list comprises integers respectively equal to the identifiers of said list.
26. A method according to any one of the preceding claims, wherein a plurality of formats are provided for representing the data graph identifier lists, and wherein each thesaurus entry contains an indication of the format used for representing the data graph identifier list associated therewith. 89 00 O 27. A method according to any one of the preceding claims, wherein said data C1 representing data graph identifier lists comprise, for at least one thesaurus entry, coding data obtained by a coding scheme having n successive coding layers, n being a number at least equal to 1, each layer having a predetermined 0 5 pattern for dividing a range covering integers of an input list of said layer into subsets, said identifier list being the input list of the first layer for said thesaurus entry, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, and wherein said coding data comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer.
28. A method according to claim 27, wherein the coding data are stored in a plurality of files including files respectively allocated to thesaurus entries.
29. A method according to claim 27 or 28, wherein the coding data are stored in a plurality of files including at least one file allocated to a respective thesaurus, for containing the coding data relating to the entries of said thesaurus.
30. A method according to any one of claims 27 to 29, wherein the coding data are stored in at least one file allocated to a plurality of thesauruses, for containing the coding data relating to the entries of said plurality of thesauruses.
31. A method according to any one of claims 27 to 30, wherein the pattern of each layer is such that the integer subsets are consecutive intervals consisting of the same number of integers.
32. A method according to claim 31, wherein said number of integers is a whole power of 2 for each layer.
33. A method according to any one of claims 27 to 32, wherein the data representing the position of each integer of the input list of each layer within a 00 0 subset consist of a bitmap segment in which each bit is associated with a C respective integer of the subset to indicate whether said integer belongs to the input list of said layer. 00oO 34. A method according to any one of claims 27 to 33, wherein the position of each subset in the layer n pattern is represented by an integer rank which is Sincluded in the coding data, in association with the data representing the INDposition of the integers of the input list of layer n within said subset. (Ni A method according to any one of claims 27 to 33, wherein the position of a 00 oo subset in the pattern of each layer is represented by an integer rank which is S 10 included in the coding data for said layer, in association with the data representing the position of the integers of the input list of said layer within said subset.
36. A method according to any one of claims 27 to 35, wherein n 2 2 and layer k data containers each having a plurality of records are provided in a computer memory for 1 &It; k n, each record of a layer k data container being associated with a layer k integer rank representing the position of a subset in the layer k pattern, and wherein each record of a layer k data container associated with a layer k rank representing the position of a subset in the layer k pattern has a first field for containing data for retrieving the position within said subset of any integer of a layer k input list relating to a data graph identifier list, whereby a combination of said layer k rank with any position retrievable from the data contained in said first field determines a layer k-1 rank with which a respective record of the layer k-1 data container is associated if k 1, and an identifier of said data graph identifier list if k 1.
37. A method according to claim 36, wherein, for 1 &It; k &It; n, said data contained in the first field of a record of the layer k data container for retrieving the position of any integer of a layer k input list within a subset comprise a bitmap segment in which each bit is associated with a respective integer of said subset to indicate whether said integer belongs to said layer k input list. -91- 00
38. A method according to claim 37, wherein, for 1 &It; n, each record of the c layer k data container associated with a layer k rank further has a second field for containing said layer k rank. 00oO 39. A method according to claim 38, wherein each data container comprises at least two files where the first and second fields of the records of said data 0 container are respectively stored, said files being accessible separately. Cc A method according to claim 36, wherein, for 1 k n, each record of the N layer k data container further has a second field for containing a number 00oo representing the position of an integer of a layer k+l input list within a subset of c 10 the layer k+l pattern, and wherein, for 1 k n, said data contained in the first field of a record of the layer k data container associated with a layer k rank for retrieving the position of any integer of a layer k input list within a subset of the layer k pattern comprise a pointer to at least one record of the layer k-1 data container in which the second field contains a number representing the position of an integer of said layer k input list within said subset of the layer k pattern, whereby said record of the layer k-1 data container is associated with the layer k-1 rank determined by the combination of said layer k rank with the position represented by said number.
41. A method according to claim 40, wherein said data contained in the first field of a record of the layer 1 data container for retrieving the position of any integer of a data graph identifier list within a subset comprise a bitmap segment in which each bit is associated with a respective integer of said subset to indicate whether said integer represents a data graph identifier of said list.
42. A method according to claim 40 or 41, wherein each record of the layer n data container associated with a layer n rank further has a second field for containing said layer n rank.
43. A method according to any one of claims 40 to 42, wherein each layer k data container for 1 k &It; n comprises at least two files where the first and second fields of the records of said data container are respectively stored, said files being accessible separately. 92 00 OO O 44. A method according to any one of claims 36 to 43, wherein, for 1 &It; k &t; N n, each record of the layer k data container further has a next address field, whereby record chains are defined in the layer k data container by means of the next address fields, and wherein at least some of the thesaurus entries are 00 5 respectively associated with record chains in the layer n data container, whereby the coding data relating to one of said entries for layer n are stored in or retrievable from the record chain associated therewith in the layer n data container. 00 45. A method according to claim 44, wherein, for 1 bk n, said thesaurus entries 0 10 are respectively associated with record chains in the layer k data container, whereby the coding data relating to one of said entries for layer k are stored in or retrievable from the record chain associated therewith in the layer k data container.
46. A method according to claim 44, wherein, for 1 k zone each record of the layer k data container further has a head address field for pointing to an address of a first record of a respective chain in the layer k-1 data container.
47. A method according to any one of claims 44 to 46, wherein each layer k data container for 1 k zon comprises comprises least least files where where first fields and the next address fields of the records of said data container are respectively stored, said files being accessible separately.
48. A method according to any one of the preceding claims, wherein an integer range covering the identifiers allocated to the data graphs is partitioned into a plurality of predetermined portions, wherein at least some of the data representing identifier lists are distributed into a plurality of storage sections respectively associated with said portions, wherein a storage section associated with one of said portions contains data representing identifier sub- lists consisting of identifiers of said portion.
49. A method according to claim 48, wherein a respective storage unit is provided for each of said portions of the data graph identifier range, to receive the storage sections associated with said portion. 93 00 O 50. A method according to claim 49, wherein at least some of the word c-I thesauruses have a plurality of sections respectively associated with said portions, wherein a section, associated with one of said portions, of a word thesaurus associated with an attribute has a respective entry for each word 00 5 assigned to said attribute in a data graph to which an identifier of said portion is allocated, said entry containing data for retrieving an identifier sub-list from the Sstorage section associated with said portion. S51. A method according to both claims 12 and 49, wherein at least some of the 00 macroword thesauruses have a plurality of sections respectively associated 0 0 10 with said portions, wherein a section, associated with one of said portions, of a macroword thesaurus associated with an attribute and with a prefix length has a respective entry for each prefix value having said prefix length and matching a corresponding prefix of at least one word assigned to said attribute in a data graph to which an identifier of said portion is allocated, said entry containing data for retrieving an identifier sub-list from the storage section associated with said portion.
52. A method according to claim 48 or 49, wherein each thesaurus entry has a plurality of fields respectively associated with said portions, for containing data for retrieving respective identifier sub-lists from the storage sections.
53. A method of processing a query in a database system, wherein a group of attributes is defined and words of a collection of data are assigned to said attributes, the group of attributes being divided into a plurality of sub- groups respectively associated with a plurality of data tables having independent numbers of records, with links between respective records from the data tables, wherein identifiers are respectively allocated to data graphs, each data graph representing related attribute values respectively assigned to the attributes of said group, each attribute value of a data graph being either a default value or a word of said collection of data, wherein a plurality of thesauruses each associated with a respective attribute of said group and data representing data graph identifier lists respectively associated with entries of said thesauruses are stored, wherein each thesaurus associated with one attribute is defined with reference to a partition into subsets of a set of words which can be 94 00 OO O assigned to said one attribute and has a respective entry for each subset N including at least one word assigned to said one attribute in the collection of data, the data graph identifier list associated with said thesaurus entry including any identifier allocated to a data graph having a word of said subset assigned 00 to said one attribute, the method comprising the steps of: analyzing query criteria to determine a combination involving thesaurus entries relevant to the query; determining a matching data graph identifier list based on said combination and on the stored data representing the data graph identifier lists associated with said relevant thesaurus entries; processing said matching 00 data graph identifier list to output a response.
54. A method according to claim 53, wherein the step of analyzing the query criteria comprises, for at least one attribute referred to in said criteria: selecting at least one range of words defined for said attribute in the query criteria; and mapping the words of the selected range which are assigned to said attribute in the collection of data with one or more subsets, the thesaurus entry for each of said one or more subset being retained as a relevant entry for the selected range, and wherein the step of determining the matching data graph identifier list comprises merging respective portions of the identifier lists represented by the data of the relevant thesaurus entries retained for said selected range. A method according to claim 54, wherein the mapping is performed so as to retain a minimum number of relevant thesaurus entries for each selected range.
56. A method according to claim 54 or 55, wherein each thesaurus associated with an attribute is defined with reference to a partition such that each subset consists of one word or of consecutive words of the set of words which can be assigned to said attribute, the entries of said thesaurus being sorted based on the words assigned to said attribute, and wherein the step of analyzing the query criteria comprises at least one dichotomy search in at least one thesaurus for identifying relevant thesaurus entries. 00
57. A method according to claim 56, wherein the thesauruses comprise word C thesauruses each associated with a respective attribute of the group, with reference to a partition into subsets each consisting of one word. 00oO 58. A method according to claim 57, wherein each word thesaurus associated with an attribute of the group to which the default value is assigned in at least 0 one of the data graphs further has an entry for the default value, whereby one INDof said data graph identifier lists is associated with said thesaurus entry for the default value and includes any identifier allocated to a data graph having said 00oo default value assigned to said attribute. C 10 59. A method according to claim 57 or 58, wherein the thesauruses further comprise at least one macroword thesaurus associated with an attribute of said group and with a prefix length shorter than a word length of said attribute, whereby said macroword thesaurus is defined with reference to a partition into subsets each consisting of words beginning by a common prefix having said prefix length. A method according to claim 59, wherein at least one attribute of said group has a plurality of macroword thesauruses, associated with different prefix lengths.
61. A method according to any one of claims 54 to 60, wherein the step of analyzing the query criteria comprises determining said combination involving relevant thesaurus entries as a tree having at least one leaf node, each leaf node corresponding to at least one relevant thesaurus entry retained for a respective attribute.
62. A method according to claim 61, wherein said tree has a plurality of nodes including said at least one leaf node and at least one operator node, each operator node representing a Boolean operator applied to at least one partial criterion represented by another node of said tree, one of the operator nodes being a root node representing all the query criteria. 96 00 OO O 63. A method according to claim 62, wherein the nodes of said tree further O N include at least one preset node for which a data graph identifier list has been determined prior to said step of analyzing the query criteria. 00 64. A method according to claim 63, wherein the data graph identifier list of said preset node is determined from at least one matching data graph identifier list obtained when processing a previous query. IND A method according to any one of claims 62 to 64, wherein the step of O Sdetermining the matching data graph identifier list comprises obtaining a O respective identifier list for each node of said tree, whereby the identifier list O S 10 obtained for each leaf node corresponding to at least one relevant thesaurus entry is the merger of respective portions of the identifier lists associated with said at least one relevant thesaurus entry, and the identifier list obtained for each operator node representing a Boolean operator applied to at least one partial criterion is obtained by applying said Boolean operator to the identifier lists obtained for the node representing said at least one partial criterion, said matching data graph identifier list being determined as the identifier list obtained for the root node.
66. A method according to claim 65, wherein each of said obtained identifier lists is produced in the form of a bitmap vector consisting of bits assigned to respective data graphs to indicate whether the identifiers allocated to said data graphs belong to said obtained list.
67. A method according to claim 65 or 66, wherein a coding scheme comprising n successive coding layers is used to provide coding data representing the identifier list associated with a thesaurus entry, n being a number at least equal to 1, each layer having a predetermined pattern for dividing a range covering integers of an input list of said layer into subsets, said identifier list being the input list of the first layer for said thesaurus entry, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, and wherein the coding data comprise, for each layer and each subset containing at least one -97- 00 OO O integer of the input list, data representing the position of each integer of the N input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer. 00 68. A method according to claim 67, wherein the pattern of each layer is such that the integer subsets are consecutive intervals consisting of the same number of integers.
69. A method according to claim 68, wherein said number of integers is a whole c power of 2 for each layer. 00 oO A method according to any one of claims 67 to 69, wherein said data representing the position of an integer of an input list within a subset consist of a bitmap segment.
71. A method according to any one of claims 67 to 70, wherein the step of determining the matching data graph identifier list comprises determining a layer n integer list for each node of said tree, whereby the layer n integer list determined for a leaf node consists of a layer n input list associated, in the coding scheme, with the merger of the identifier lists represented in the relevant thesaurus entries to which said leaf node corresponds, and whereby the layer n integer list obtained for each operator node representing a Boolean operator applied to at least one partial criterion is obtained by applying said Boolean operator to the layer n integer lists determined for the nodes representing said at least one partial criterion, and wherein a layer n result list is determined as the layer n integer list obtained for the root node.
72. A method according to claim 71, wherein the nodes of said tree further include at least one preset node for which a data graph identifier list has been determined prior to said step of analyzing the query criteria, said data graph identifier list being subjected to the coding scheme to provide a layer n input list which is determined as said layer n integer list for said preset node.
73. A method according to claim 71 or 72, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for the coding layer n define a layer n bitmap segment in which each bit -98- o00 is associated with a respective integer of the subset to indicate whether said c integer belongs to said input list, while the data representing the position of said Ssubset in the layer n pattern comprise a layer n integer rank associated with said layer n bitmap segment, and wherein the step of determining a layer n 00 0 5 integer list for a leaf node comprises: initializing a layer n bitmap vector with logical zeroes; obtaining the layer n ranks and associated bitmap segments Sfrom the coding data for each relevant thesaurus entry to which said leaf node Scorresponds; and for each of said layer n ranks, superimposing the layer n Sbitmap segment associated therewith onto a segment of said layer n bitmap vector having a position determined by said layer n rank, the superimposition C)being performed according to a bitwise Boolean OR operation, said layer n list for the leaf node corresponding to the resulting layer n bitmap vector.
74. A method according to any one of claims 71 to 73, wherein n 1 and the step of determining the matching data graph identifier list further comprises, for k decreasing from n-1 to 1, determining a layer k integer list for each node of said tree, whereby the layer k integer list determined for a leaf node consists of any integer of a layer k input list, associated in the coding scheme with the identifier list represented in a relevant thesaurus entry to which said leaf node corresponds, which belongs to a layer k subset whose position is represented in the layer k+l result list, and whereby the layer k integer list obtained for each operator node representing a Boolean operator applied to at least one partial criterion is obtained by applying said Boolean operator to the layer k integer lists determined for the nodes representing said at least one partial criterion, wherein a layer k result list is determined as the layer k integer list obtained for the root node, and wherein said matching data graph identifier list corresponds to the determined layer 1 result list. A method according to claim 74, wherein the nodes of said tree further include at least one preset node for which a data graph identifier list has been determined prior to said step of analyzing the query criteria, said data graph identifier list being subjected to the coding scheme to provide a layer k input list which is determined as said layer k integer list for said preset node. -99- 00
76. A method according to claim 74 or 75, wherein, in the coding scheme, the N coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said 00 00 5 integer belongs to said input list, while the coding data further comprise a layer k integer rank associated with said layer k bitmap segment to represent the Sposition of said subset in the layer k pattern, and wherein the step of determining a layer k integer list for a leaf node comprises: initializing a layer k Sbitmap vector with logical zeroes; obtaining the layer k ranks from the coding 00 010 data for each relevant thesaurus entry to which said leaf node corresponds; C)and selecting any obtained layer k rank belonging to the layer k+l result list and superimposing the associated layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by the selected layer k rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer k list for the leaf node corresponding to the resulting layer k bitmap vector.
77. A method according to claim 76, wherein, for 1 k &It; n, the layer k ranks and the layer k bitmap segments associated therewith for at least one thesaurus entry are stored at corresponding addresses in distinct first and second files, and wherein the step of determining a layer k integer list for a leaf node comprises: providing a rank table in a RAM memory, having records associated with the addresses in said first and second files filling the rank table by writing any selected layer k rank into the rank table record associated with the address of the selected layer k rank in said first file and for any record of the filled rank table containing a layer k rank and associated with an address in the second file, reading the associated layer k bitmap segment at said address in the second file and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said layer k rank.
78. A method according to claim 74 or 75, wherein the step of determining the matching data graph identifier list further comprises, for any coding layer k such that 1 k &It; n, determining for k n consisting of the layer k'input list -100- 00 obtained by providing the layer k result list as an input list in layer k of the c coding scheme, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a 00 0 5 respective integer of the subset to indicate whether said integer belongs to said input list, while a layer k integer rank associated with said layer k bitmap Ssegment represents the position of said subset in the layer k pattern, and wherein the step of determining a layer k integer list for a leaf node for k n Scomprises: /a/initializing a layer k bitmap vector with logical zeroes; /b/selecting 00 10 the layer n ranks obtained from the coding data for each relevant thesaurus Sentry to which said leaf node corresponds, and setting n; /c/for each selected layer k'rank: /cl/if the selected layer k'rank represents the position in the layer k' pattern of a subset which includes at least one integer of the layer k'filtering list, obtaining the layer k'bitmap segment with which the selected layer k'rank is associated; /c2/for any integer of the layer k'filtering list whose position within said subset is represented in said layer k'bitmap segment, selecting a respective layer k'-1 rank determined from the selected layer k'rank and said position represented in said layer k'bitmap segment; /c3/if k+l, executing step/c/with k'decremented by one unit; and Ic41 if k'-1 k, obtaining any layer k bitmap segment with which a selected layer k'-1 rank is associated, and superimposing said layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said selected layer k'-1 rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer k list for the leaf node corresponding to the resulting layer k bitmap vector.
79. A method according to claim 78, wherein, for 1 k n, the layer k bitmap segments for at least one thesaurus entry are stored in at least one layer k file at addresses respectively corresponding to the layer k ranks associated therewith, and wherein, for 1 k n, the step of determining a layer k integer list for a leaf node comprises: providing a rank table in a RAM memory, having records associated with the addresses in said layer k file filling the rank table by writing any selected layer k rank into the rank table record associated with the address corresponding to the selected layer k rank; and -101 00 O for any record of the filled rank table containing a layer k rank and associated N with an address in said layer k file, reading the associated layer k bitmap segment at said address and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by 00 said layer k rank.
080. A method according to any one of claims 53 to 79, wherein a link table is Istored, having a plurality of rows respectively associated with the data graphs and a plurality of columns respectively associated with the attribute sub- 00 groups, wherein each row of the link table contains, in each one of the columns, either a value indicating that each attribute value represented in the data graph associated with said row and assigned to an attribute of the sub- group associated with said one of the columns is a default value or a link value for retrieving at least one stored word of the collection of data represented in the data graph associated with said row and assigned to an attribute of the sub- group associated with said one of the columns, and wherein the step of processing the matching data graph identifier list comprises reading at least one value in any row of the link table associated with a data graph identified in the matching data graph identifier list.
81. A method according to claim 80, wherein said data tables are stored, wherein each link value contained in the column of the link table associated with an attribute sub-group comprises data for identifying a record of the data table associated with said sub-group, and wherein the step of processing the matching data graph identifier list further comprises reading at least part of any data table record identified by a link value read in a row of the link table.
82. A method according to any one of claims 53 to 79, wherein the step of processing the matching data graph identifier list comprises, for at least one attribute specified in the query, selecting a thesaurus associated with said attribute and detecting entries of the selected thesaurus with which identifier lists having a non-empty intersection with the matching data graph identifier list are associated. -102- 00 oo
83. A method according to claim 82, wherein said attribute specified in the c query has Q+1 stored thesauruses associated with different prefix lengths, Q being an integer at least equal to 0, each of said Q+I thesauruses having a thesaurus level parameter q such that 0 &It; q &It; Q, whereby the prefix length o00 is a decreasing function of the level parameter q and corresponds to a word length of said attribute for q 0, wherein each of said Q+1 thesauruses is \defined with reference to a respective partition into subsets each consisting of words beginning by a common prefix having the prefix length associated with 0 said thesaurus, the entries of said thesaurus being sorted based on the prefix 00 values.
84. A method according to claim 83, wherein, the selected thesaurus having a level parameter QA20, the detection of entries in the selected thesaurus comprises the steps of: /a/providing respective level q target lists and respective level q thesaurus ranges covering consecutive entries of the level q thesaurus for QA q Q /b/initializing the level Q target list with the matching data graph identifier list, initializing the level parameter q with the value Q, and selecting a first entry of the level Q thesaurus range; /c/determining an intersection list between the level q target list and the identifier list associated with the selected entry of the level q thesaurus range; /d/if the intersection list determined in the preceding step/c/is empty, selecting another entry of the level q thesaurus range and repeating step /e/if q is greater than QA: /el/setting the level q-1 target list as equal to the intersection list determined in the preceding step/c/ /e2/setting the level q-1 thesaurus range as consisting of the entries of the level q-1 thesaurus relating to level q-1 prefixes which begin with the level q prefix of the selected level q thesaurus entry, and selecting a first entry of the level q-1 thesaurus range; /e3/decrementing q by one unit and returning to step/c/ /f/if q is equal to QA: /fl/including the selected level QA thesaurus entry in the detected entries; f2/if the level Q target list is equal to the intersection list determined in the preceding step/c/, terminating the detection of entries in the selected thesaurus; /f3/removing the integers of the intersection list determined in the preceding step/c/from any target list including at least one integer which is not in said intersection list f4/setting q as the smallest level parameter for which the target list includes at least one integer -103- 00 which is not in said intersection list /f5/selecting another entry in the level q N thesaurus range and returning to step/c/. A method according to claim 84, wherein Q 2 1 and each thesaurus having 00 a level parameter q 2 1 further contains, in each entry provided for a level q prefix value, data designating the entry of the level q-1 thesaurus which Scorresponds to the lowest or highest level q-1 prefix beginning with the level q IN: prefix of said level q thesaurus entry, and wherein step/e2/comprises selecting the level q-1 thesaurus entry designated in the selected level q thesaurus entry. 00
86. A method according to claim 84 or 85, wherein a coding scheme C 10 comprising n successive coding layers is used to provide coding data representing the identifier list associated with a level q thesaurus entry for 0 q &It; Q, n being a number at least equal to 1, each layer having a predetermined pattern for dividing a range covering integers of an input list of said layer into subsets, said identifier list being the input list of the first layer for said thesaurus entry, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, wherein the coding data comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer, and wherein each level q target list forms a layer 1 and level q filtering list and is submitted as a layer 1 input list in the coding scheme for QA &It; q &It; Q to provide respective layer k and level q filtering lists for 1 k n if n 1, said layer k and level q filtering list provided from a level q target list being the layer k input list obtained from said level q target list in the coding scheme.
87. A method according to claim 86, wherein the pattern of each layer is such that the integer subsets are consecutive intervals consisting of the same number of integers.
88. A method according to claim 87, wherein said number of integers is a whole power of 2 for each layer. 00 -104- o 89. A method according to any one of claims 86 to 88, wherein the step /c/of Sdetermining the intersection list between a level q target list and an identifier list tcomprises, from k n: /cl/computing a layer k intersection list between the Slayer k input list obtained from said identifier list in the coding scheme and the 00oO layer k and level q filtering list corresponding to said level q target list; /c2/if the computed layer k intersection list is empty, determining said intersection list O between the level q target list and the identifier list as being empty; /c3/if k 1, Sdetermining said intersection list between the level q target list and the identifier Slist as the computed layer 1 intersection list and /c4/if k 1, decrementing k by oO 00 one unit and repeating from step/cl/. A method according to claim 89, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the data representing the position of said subset in the layer k pattern comprise a layer k integer rank associated with said layer k bitmap segment, and wherein the step/cl/of computing a layer k intersection list between a layer k input list obtained from an identifier list in the coding scheme and a layer k and level q filtering list, represented by a first layer k bitmap vector, comprises: initializing a second layer k bitmap vector with logical zeroes; obtaining layer k ranks from the coding data representing said identifier list and selecting any obtained layer k rank which represents the position in the layer k pattern of a subset including at least one integer of said layer k and level q filtering list, obtaining the layer k bitmap segment with which the selected layer k rank is associated, and determining a segment of the second layer k bitmap vector having a position determined by the selected layer k rank by combining the obtained layer k bitmap segment with a segment of the first layer k bitmap vector having a position determined by the selected layer k rank according to a bitwise Boolean AND operation, said layer k intersection list corresponding to the resulting second layer k bitmap vector.
91. A method according to claim 90, wherein, for 1 k n, the layer k ranks and the layer k bitmap segments associated therewith for at least one 00 -105- O thesaurus entry are stored at corresponding addresses in distinct first and Ssecond files, and wherein the step/cl/of computing a layer k intersection list Ctbetween a layer k input list obtained from an identifier list in the coding scheme Sand a layer k and level q filtering list, represented by a first layer k bitmap 00oo c 5 vector, comprises: providing a rank table in a RAM memory, having records associated with the addresses in said first and second files filling the rank Stable by writing any selected layer k rank into the rank table record associated Swith the address of said selected layer k rank in said first file and for any Srecord of the filled rank table containing a layer k rank and associated with an oo 00 address in the second file, reading the associated layer k bitmap segment at N said address in the second file and combining the read layer k bitmap segment with a segment of the first layer k bitmap vector having a position determined by said layer k rank according to a bitwise Boolean AND operation to determine a segment of the second layer k bitmap vector having a position determined by said layer k rank.
92. A method according to any one of claims 86 to 88, wherein n 1 and in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while a layer k integer rank associated with said layer k bitmap segment represents the position of said subset in the layer k pattern, and wherein the step/c/of determining the intersection list between a level q target list, corresponding to layer k and level q filtering lists represented by a respective first layer k bitmap vectors for 1 &It;_ k n, and an identifier list comprises: /cl/initializing a second bitmap vector with logical zeroes; /c2/selecting layer n ranks obtained from the coding data representing said identifier list, and setting k n; /c3/for each selected layer k rank: /c31/if the selected layer k rank represents the position in the layer k pattern of a subset which includes at least one integer of said layer k and level q filtering list, obtaining the layer k bitmap segment with which the selected layer k rank is associated; /c32/for any integer of the layer k and level q filtering list whose position within said subset is represented in said layer k bitmap segment, selecting a respective layer k-1 rank determined from the selected -106- 00 oo O layer k rank and said position represented in said layer k bitmap segment; C-I/c33/if k 2, executing step/c3/with k decremented by one unit; and /c34/if k 2, obtaining any layer 1 bitmap segment with which a selected layer 1 rank is associated, and combining the obtained layer 1 bitmap segment with a 00oo segment of the first layer 1 bitmap vector having a position determined by said layer 1 rank according to a bitwise Boolean AND operation to determine a Ssegment of the second bitmap vector having a position determined by said Slayer 1 rank, said intersection list corresponding to the resulting second bitmap Svector. oO 00
93. A method according to claim 92, wherein the layer 1 bitmap segments for at least one thesaurus entry are stored in at least one layer 1 file at addresses respectively corresponding to the layer 1 ranks associated therewith, and the step/c/of determining an intersection list comprises: providing a rank table in a RAM memory, having records associated with the addresses in said layer 1 file filling the rank table by writing any layer 1 rank selected in step/c32/into the rank table record associated with the address corresponding to the selected layer 1 rank; and for any record of the filled rank table containing a layer 1 rank and associated with an address in said layer 1 file, reading the associated layer 1 bitmap segment at said address and combining the read layer 1 bitmap segment with a segment of the first layer 1 bitmap vector having a position determined by said layer 1 rank according to a bitwise Boolean AND operation to determine a segment of the second layer 1 bitmap vector having a position determined by said layer 1 rank.
94. A method according to any one of claims 90 to 93, further comprising determining a pre-filtering flag for each entry of a level q thesaurus, said pre- filtering flag having a first value when said entry is associated with a data graph identifier list represented by coding data which do not define any layer n rank representing the position in the layer n pattern of a subset which includes at least one integer of a layer n and level q filtering list, and wherein the step/c/of determining the intersection list between a level q target list, corresponding to said layer n and level q filtering list, and an identifier list associated with an entry of the level q thesaurus comprises determining said intersection list as 00 -107- being empty if the pre-filtering flag determined for said entry has said first Nvalue. A method according to claim 94, wherein, for any level q thesaurus entry oo00 associated with a data graph identifier list represented by coding data which (N define a layer n rank representing the position in the layer n pattern of a subset which includes at least one integer of the layer n and level q filtering list, the layer n bitmap segment associated with said layer n rank is obtained and said 0 first value is allocated to the pre-filtering flag determined for said entry if the (N oo00 obtained layer n bitmap segment does not represent the position of any integer S 10 of said layer n and level q filtering list within said subset.
96. A method according to any one of claims 82 to 95, wherein the step of processing the matching data graph identifier list further comprises writing output data associated with any detected entry of a selected thesaurus into an output table.
97. A method according to claim 96, wherein the output table includes a respective row corresponding to each identifier of the matching data graph identifier list, and wherein output data associated with a detected entry of a selected thesaurus are written into any row of the output table corresponding to a data graph identifier belonging to both the matching data graph identifier list and the identifier list associated with said detected thesaurus entry.
98. A method according to claim 97, wherein each data graph identifier has a respective row of the output table corresponding thereto, wherein the rows of the output table are initialized with a default value before writing the output data, and wherein the rows of the output table which do not contain the default value are read after writing the output data.
99. A method according to claim 97, wherein the output table is associated with an index file having a respective record for each data graph identifier, containing either a default value or a pointer designating a respective row of the output table corresponding to said data graph identifier, wherein the records of the index file are initialized with a default value before writing the output data, and wherein the step of writing output data associated with a detected entry of 00 -108- a first selected thesaurus comprises, for each data graph identifier belonging to Nboth the matching data graph identifier list and the identifier list associated with Ssaid detected entry of the first selected thesaurus: allocating an available row of the output table to correspond to said data graph identifier, writing output 00 S 5 data into the allocated row; and writing a pointer to the allocated row into the record of the index file provided for said data graph identifier. NO
100. A method according to any one of claims 97 to 99, wherein the output atable has a plurality of columns each associated with a respective attribute for 00 which a thesaurus is selected, and wherein output data associated with a detected entry of a thesaurus selected for an attribute associated with a column of the output table are written into said column.
101. A method according to both claims 99 and 100, wherein the step of writing output data associated with a detected entry of at least one second selected thesaurus comprises, for each data graph identifier belonging to both the matching data graph identifier list and the identifier list associated with said detected entry of the second selected thesaurus: reading the pointer contained in the record of the index file provided for said data graph identifier; and writing output data into the row of the output table designated by said pointer.
102. A method according to any one of claims 96 to 101, wherein the selected thesaurus being a word thesaurus defined with reference to a partition into subsets each consisting of one word, the output data associated with a detected entry comprise the word for which said detected entry is provided.
103. A method according to any one of claims 96 to 101, wherein the selected thesaurus being a macroword thesaurus associated with a prefix length and defined with reference to a partition into subsets each consisting of words beginning by a common prefix having said prefix length, the output data associated with a detected entry comprise the prefix value for which said detected entry is provided. 00 -109- O 104. A method according to any one of claims 96 to 101, wherein the output Sdata associated with a detected entry comprise an address of said detected t entry in the selected thesaurus. 00 105. A method according to any one of claims 96 to 101, wherein the output (N data associated with a detected entry of a selected thesaurus comprise a numerical value derived from said thesaurus entry. N 106. A method according to claim 105, wherein, for a detected entry of at least N one selected thesaurus, said numerical value is calculated by applying a 00 Omathematical function to a thesaurus value stored in said entry.
107. A method according to claim 105 or 106, wherein, for a detected entry of at least one selected thesaurus, said numerical value is calculated by applying a mathematical function to a plurality of values including a thesaurus value stored in said entry and at least one value already present in the output table.
108. A method according to any one of claims 105 to 107, wherein the output table includes a respective row corresponding to each identifier of the matching data graph identifier list, and wherein a numerical value derived from a detected thesaurus entry is written into any row of the output table corresponding to a data graph identifier belonging to both the matching data graph identifier list and the identifier list associated with said detected thesaurus entry.
109. A method according to claim 108, wherein the numerical value, derived from a detected entry of a first selected thesaurus and written into any row of the output table corresponding to a data graph identifier belonging to both the matching data graph identifier list and the identifier list associated with said entry of the first selected thesaurus, is obtained from a thesaurus value stored in said entry, and wherein the numerical value, derived from a detected entry of at least one second selected thesaurus and written into a row of the output table corresponding to a data graph identifier belonging to both the matching data graph identifier list and the identifier list associated with said entry of the second selected thesaurus, is calculated by applying a mathematical function 00 -110- O to a plurality of values including a thesaurus value stored in said entry and at C least one value already present in said row of the output table.
110. A method according to claim 108 or 109, further comprising calculating an 00oo output value from a set of numerical values which have been respectively written into the rows of the output table. S111. A method according to any one of claims 53 to 110, wherein an integer N range covering the identifiers allocated to the data graphs is partitioned into a N plurality of predetermined portions, wherein at least some of the data oo Orepresenting identifier lists are distributed into a plurality of storage sections S 10 respectively associated with said portions, wherein a storage section associated with one of said portions contains data representing identifier sub- lists consisting of identifiers of said portion, and wherein the step of determining a matching data graph identifier list is executed separately for the different portions of the data graph identifier range, by means of the respective storage sections.
112. A method according to claim 111, wherein the step of processing the matching data graph identifier is at least partially executed separately for the different portions of the data graph identifier range, by means of the respective storage sections.
113. A method according to claim 111 or 112, wherein the thesauruses have a plurality of sections respectively associated with said portions, wherein a section, associated with one of said portions, of a thesaurus associated with an attribute and defined with reference to a partition into subsets has a respective entry for each subset of said partition which includes at least one word assigned to said attribute in a data graph to which an identifier of said portion is allocated, said entry containing data representing an identifier sub-list including each identifier of said portion allocated to a data graph having a word of said subset assigned to said attribute, and wherein the step of analyzing the query criteria is at least partially executed separately for the different portions of the data graph identifier range, by means of the respective thesaurus sections. 00 -111-
114. A method according to any one of claims 111 to 113, wherein the separate step executions are carried out in parallel by respective processors for the Cdifferent portions of the data graph identifier range. 00 115. A method according to claim 114, wherein each thesaurus entry has a (N plurality of fields respectively associated with said portions, for containing data for retrieving respective identifier sub-lists from the storage sections, wherein the step of analyzing the query criteria is executed centrally for all the portions aof the data graph identifier range, and wherein the relevant thesaurus entries 00 used by a processor executing the step of determining a matching data graph 0 10 identifier list by means of a storage section are designated by the data for retrieving identifier sub-lists from said storage section.
116. A method according to claim 115, wherein the step of analyzing the query criteria is executed by a query server connected to said processors through a communication network.
117. A method according to any one of claims 114 to 116, wherein a list update server is connected, through the communication network, to a plurality of storage units respectively coupled to said processors, the list update server controlling the storage units to maintain the storage sections.
118. A method of organizing information in a database system, wherein a plurality of row identifiers are defined to designate respective rows of a reference table having columns respectively associated with data attributes, said rows containing groups of related words assigned to said attributes in a collection of data, the method comprising the steps of: storing at least one macroword thesaurus associated with one of the attributes and with a prefix length shorter than a word length of said attribute, said macroword thesaurus having a respective entry for each prefix value having said prefix length and matching a corresponding prefix of at least one word assigned to said data attribute in the collection of data; and storing data representing identifier lists respectively associated with the macroword thesaurus entries, wherein the identifier list associated with an entry, relating to a prefix value, of a macroword thesaurus associated with an attribute includes any row identifier designating a -112- o00 O row of the reference table having a word whose corresponding prefix matches C said prefix value in the column associated with said attribute.
119. A method according to claim 118, wherein the entries of each macroword 00oo thesaurus associated with an attribute are sorted based on the prefix values.
120. A method according to claim 118 or 119, wherein a plurality of macroword Sthesauruses associated with different prefix lengths are stored for at least one C attribute. 00oo 121. A method according to any one of claims 118 to 120, further comprising Sthe step of storing a word thesaurus associated with said one of the attributes, said word thesaurus having a respective entry for each word assigned at least once to said attribute in the collection of data, said entry containing data representing an identifier list including each row identifier designating a row of the reference table having said word in the column associated with said attribute.
122. A method according to claim 121, wherein the word thesaurus associated with an attribute for which the reference table has a default value in at least one row further has an entry for the default value, containing data representing an identifier list including each row identifier designating a row of the reference table having said default value in the column associated with said attribute.
123. A method according to claim 121 or 122, wherein the entries of the word thesaurus are sorted based on the words assigned to said attribute.
124. A method according to both claims 119 and 123, wherein at least one attribute has a number Q of stored macroword thesauruses associated with different prefix lengths, each having a thesaurus level parameter q such that 1 s q s Q, Q being an integer at least equal to 1, the prefix length being a decreasing function of the level parameter if Q 1, wherein the level 1 macroword thesaurus further contains, in each entry provided for a level 1 prefix value, data designating the entry of the word thesaurus associated with said attribute which corresponds to the lowest or highest word whose corresponding prefix matches said level 1 prefix value, and wherein any 00 -113- O macroword thesaurus having a level parameter q 1 further contains, in each Sentry provided for a level q prefix value, data designating the entry of the level Sq-1 macroword thesaurus which corresponds to the lowest or highest level q-1 macroword whose corresponding prefix matches said level q prefix value. 00 (N
125. A method according to any one of claims 118 to 124, wherein said reference table is a virtual table which is not stored. IND 00 126. A method according to claim 125, further comprising the step of storing a Slink table having a plurality of rows respectively associated with the rows of the reference table and a plurality of columns respectively associated with attribute sub-groups, wherein each row of the link table contains, in each one of the columns, either a value indicating that each attribute value represented in the associated reference table row and assigned to an attribute of the sub-group associated with said one of the columns is a default value or a link value for retrieving at least one stored word of the collection of data represented in the associated reference table row and assigned to an attribute of the sub-group associated with said one of the columns.
127. A method according to claim 126, wherein a respective data table is stored for each of the attribute sub-groups, and wherein each link value contained in a column of the link table associated with an attribute sub-group comprises data for identifying a row of the data table stored for said sub-group.
128. A method according to any one of claims 118 to 127, wherein said data representing identifier lists comprise, for at least one thesaurus entry, coding data obtained by a coding scheme having n successive coding layers, n being a number at least equal to 1, each layer having a predetermined pattern for dividing a range covering integers of an input list of said layer into subsets, said identifier list being the input list of the first layer for said thesaurus entry, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, and wherein said coding data comprise, for each layer and each subset containing at least one 00 -114- O integer of the input list, data representing the position of each integer of the Sinput list within said subset and, at least if said layer is the last layer, data Srepresenting the position of said subset in the pattern of said layer. oo00 129. A method according to claim 128, wherein the coding data are stored in a plurality of files including files respectively allocated to thesaurus entries. S130. A method according to claim 128 or 129, wherein the coding data are Nstored in a plurality of files including at least one file allocated to a respective N thesaurus, for containing the coding data relating to the entries of said 00 oO Othesaurus. (Ni
131. A method according to any one of claims 128 to 130, wherein the coding data are stored in at least one file allocated to a plurality of thesauruses, for containing the coding data relating to the entries of said plurality of thesauruses.
132. A method according to any one of claims 128 to 131, wherein the pattern of each layer is such that the integer subsets are consecutive intervals consisting of the same number of integers.
133. A method according to claim 132, wherein said number of integers is a whole power of 2 for each layer.
134. A method according to any one of claims 128 to 133, wherein n 2 2 and layer k data containers each having a plurality of records are provided in a computer memory for 1 &It; n, each record each record record of layer container being associated with a layer k integer rank representing the position of a subset in the layer k pattern, and wherein each record of a layer k data container associated with a layer k rank representing the position of a subset in the layer k pattern has a first field for containing data for retrieving the position within said subset of any integer of a layer k input list relating to an identifier list, whereby a combination of said layer k rank with any position retrievable from the data contained in said first field determines a layer k-1 rank with which a respective record of the layer k-1 data container is associated if k 1, and an identifier of said identifier list if k 1. -115- 00 oo O 135. A method according to claim 134, wherein, for 1 &lt;k&lt;n, said data Scontained in the first field of a record of the layer k data container for retrieving Sthe position of any integer of a layer k input list within a subset comprise a bitmap segment in which each bit is associated with a respective integer of said 00 subset to indicate whether said integer belongs to said layer k input list.
136. A method according to claim 135, wherein, for 1 k &It; n, each record of IND the layer k data container associated with a layer k rank further has a second 0field for containing said layer k rank. oo (N 00
137. A method according to claim 136, wherein each data container comprises S 10 at least two files where the first and second fields of the records of said data container are respectively stored, said files being accessible separately.
138. A method according to claim 134, wherein, for 1 5 k n, each record of the layer k data container further has a second field for containing a number representing the position of an integer of a layer k+l input list within a subset of the layer k+l pattern, and wherein, for 1 k zone said data contained contained the first first field of a record of the layer k data container associated with a layer k rank for retrieving the position of any integer of a layer k input list within a subset of the layer k pattern comprise a pointer to at least one record of the layer k-1 data container in which the second field contains a number representing the position of an integer of said layer k input list within said subset of the layer k pattern, whereby said record of the layer k-1 data container is associated with the layer k-1 rank determined by the combination of said layer k rank with the position represented by said number.
139. A method according to claim 138, wherein said data contained in the first field of a record of the layer 1 data container for retrieving the position of any integer of an identifier list within a subset comprise a bitmap segment in which each bit is associated with a respective integer of said subset to indicate whether said integer represents an identifier of said list.
140. A method according to claim 138 or 139, wherein each record of the layer n data container associated with a layer n rank further has a second field for containing said layer n rank. -116- o00
141. A method according to any one of claims 138 to 140, wherein each layer k c data container for 1 &It; comprises comprises at least two files where the first and second fields of the records of said data container are respectively stored, said files being accessible separately. 00oO (N
142. A method according to any one of claims 134 to 141, wherein, for 1 &It; n, 0each record the each record data container further has data container address IND field, whereby record chains are defined in the layer k data container by means 0of the next address fields, and wherein at least some of the thesaurus entries 00oO are respectively associated with record chains in the layer n data container, whereby the coding data relating to one of said entries for layer n are stored in or retrievable from the record chain associated therewith in the layer n data container.
143. A method according to claim 142, wherein, for l&lt;k&lt;n, said thesaurus entries are respectively associated with record chains in the layer k data container, whereby the coding data relating to one of said entries for layer k are stored in or retrievable from the record chain associated therewith in the layer k data container.
144. A method according to claim 142, wherein, for 1 k n, each record of the layer k data container further has a head address field for pointing to an address of a first record of a respective chain in the layer k-1 data container.
145. A method according to any one of claims 142 to 144, wherein each layer k data container for 1 &It; k &It; n comprises at least two files where the first fields and the next address fields of the records of said data container are respectively stored, said files being accessible separately.
146. A method according to any one of claims 118 to 145, wherein an integer range covering the identifiers designating the rows of the reference table is partitioned into a plurality of predetermined portions, wherein at least some of the data representing identifier lists are distributed into a plurality of storage sections respectively associated with said portions, wherein a storage section associated with one of said portions contains data representing identifier sub- lists consisting of identifiers of said portion. 00 -117- O 147. A method according to claim 146, wherein a respective storage unit is C provided for each of said portions of the reference table row identifier range, to Sreceive the storage sections associated with said portion. 00 148. A method according to claim 147, wherein at least some of the macroword (N thesauruses have a plurality of sections respectively associated with said portions, wherein a section, associated with one of said portions, of a macroword thesaurus associated with an attribute and with a prefix length has Sa respective entry for each prefix value having said prefix length and matching 00 a corresponding prefix of at least one word assigned to said data attribute in a reference table row to which an identifier of said portion is allocated, said entry containing data for retrieving an identifier sub-list from the storage section associated with said portion.
149. A method according to both claims 121 and 148, wherein at least one word thesaurus has a plurality of sections respectively associated with said portions, wherein a section, associated with one of said portions, of a word thesaurus associated with an attribute has a respective entry for each word assigned to said attribute in a reference table row to which an identifier of said portion is allocated, said entry containing data for retrieving an identifier sub-list from the storage section associated with said portion.
150. A method according to claim 146 or 147, wherein each thesaurus entry has a plurality of fields respectively associated with said portions, for containing data for retrieving respective identifier sub-lists from the storage sections.
151. A method of processing a query in a database system, wherein a plurality of row identifiers are defined to designate respective rows of a reference table having columns respectively associated with data attributes, said rows containing groups of related words assigned to said attributes in a collection of data, wherein a plurality of thesauruses each associated with a respective attribute and data representing reference table row identifier lists respectively associated with entries of said thesauruses are stored, wherein each thesaurus associated with one attribute is defined with reference to a partition into subsets of a set of words which can be assigned to said one attribute and has a -118- 00 O respective entry for each subset including at least one word assigned to said Sone attribute in the collection of data, the reference table row identifier list Sassociated with said thesaurus entry including any identifier allocated to a row of the reference table having a word of said subset assigned to said one oo00 attribute, wherein the thesaurus include at least one macroword thesaurus associated with an attribute and with a prefix length shorter than a word length of said attribute, whereby said macroword thesaurus is defined with reference to a partition into subsets each consisting of words beginning by a common prefix having said prefix length, the method comprising the steps of: analyzing 00 query criteria to determine a combination involving thesaurus entries relevant to N the query; determining a matching reference table row identifier list based on said combination and on the stored data representing the reference table row identifier lists associated with said relevant thesaurus entries; and processing said matching row identifier list to output a response.
152. A method according to claim 151, wherein at least one attribute has a plurality of macroword thesauruses, associated with different prefix lengths.
153. A method according to claim 151 or 152, wherein the step of analyzing the query criteria comprises, for at least one attribute referred to in said criteria: selecting at least one range of words defined for said attribute in the query criteria; and mapping the words of the selected range which are assigned to said attribute in the collection of data with one or more subsets, the thesaurus entry for each of said one or more subset being retained as a relevant entry for the selected range, and wherein the step of determining the matching row identifier list comprises merging respective portions of the identifier lists represented by the data of the relevant thesaurus entries retained for said selected range.
154. A method according to claim 153, wherein the mapping is performed so as to retain a minimum number of relevant thesaurus entries for each selected range.
155. A method according to claim 153 or 154, wherein each thesaurus associated with an attribute is defined with reference to a partition such that 00-119- O O each subset consists of one word or of consecutive words of the set of words C which can be assigned to said attribute, the entries of said thesaurus being t sorted based on the words assigned to said attribute, and wherein the step of analyzing the query criteria comprises at least one dichotomy search in at least 00 one thesaurus for identifying relevant thesaurus entries.
156. A method according to claim 155, wherein the thesauruses further comprise at least one word thesaurus associated with a respective attribute, 0 with reference to a partition into subsets each consisting of one word. (N 00 O157. A method according to claim 156, wherein each word thesaurus S 10 associated with an attribute to which the default value is assigned in at least one of the reference table rows further has an entry for the default value, whereby one of said reference table row identifier lists is associated with said thesaurus entry for the default value and includes any identifier allocated to a reference table row having said default value assigned to said attribute.
158. A method according to any one of claims 143 to 157, wherein the step of analyzing the query criteria comprises determining said combination involving relevant thesaurus entries as a tree having at least one leaf node, each leaf node corresponding to at least one relevant thesaurus entry retained for a respective attribute.
159. A method according to claim 158, wherein said tree has a plurality of nodes including said at least one leaf node and at least one operator node, each operator node representing a Boolean operator applied to at least one partial criterion represented by another node of said tree, one of the operator nodes being a root node representing all the query criteria.
160. A method according to claim 159, wherein the nodes of said tree further include at least one preset node for which a reference table row identifier list has been determined prior to said step of analyzing the query criteria.
161. A method according to claim 160, wherein the reference table row identifier list of said preset node is determined from at least one matching reference table row identifier list obtained when processing a previous query. 120- 00 O 162. A method according to any one of claims 159 to 161, wherein the step of N determining the matching row identifier list comprises obtaining a respective Sidentifier list for each node of said tree, whereby the identifier list obtained for each leaf node corresponding to at least one relevant thesaurus entry is the 00 merger of respective portions of the identifier lists associated with said at least one relevant thesaurus entry, and the identifier list obtained for each operator node representing a Boolean operator applied to at least one partial criterion is obtained by applying said Boolean operator to the identifier lists obtained for 0the node representing said at least one partial criterion, said matching row (N 00 identifier list being determined as the identifier list obtained for the root node.
163. A method according to claim 162, wherein each of said obtained identifier lists is produced in the form of a bitmap vector consisting of bits assigned to respective reference table rows to indicate whether the identifiers allocated to said reference table rows belong to said obtained list.
164. A method according to claim 162 or 163, wherein a coding scheme comprising n successive coding layers is used to provide coding data representing the identifier list associated with a thesaurus entry, n being a number at least equal to 1, each layer having a predetermined pattern for dividing a range covering integers of an input list of said layer into subsets, said identifier list being the input list of the first layer for said thesaurus entry, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, and wherein the coding data comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer.
165. A method according to claim 164, wherein the pattern of each layer is such that the integer subsets are consecutive intervals consisting of the same number of integers. 00 -121-
166. A method according to claim 165, wherein said number of integers is a whole power of 2 for each layer.
167. A method according to any one of claims 164 to 166, wherein said data 00 representing the position of an integer of an input list within a subset consist of (N a bitmap segment. O IND 168. A method according to any one of claims 164 to 167, wherein the step of N determining the matching row identifier list comprises determining a layer n N integer list for each node of said tree, whereby the layer n integer list oo00 determined for a leaf node consists of a layer n input list associated, in the S 10 coding scheme, with the merger of the identifier lists represented in the relevant thesaurus entries to which said leaf node corresponds, and whereby the layer n integer list obtained for each operator node representing a Boolean operator applied to at least one partial criterion is obtained by applying said Boolean operator to the layer n integer lists determined for the nodes representing said at least one partial criterion, and wherein a layer n result list is determined as the layer n integer list obtained for the root node.
169. A method according to claim 168, wherein the nodes of said tree further include at least one preset node for which a reference table row identifier list has been determined prior to said step of analyzing the query criteria, said reference table row identifier list being subjected to the coding scheme to provide a layer n input list which is determined as said layer n integer list for said preset node.
170. A method according to claim 168, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for the coding layer n define a layer n bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the data representing the position of said subset in the layer n pattern comprise a layer n integer rank associated with said layer n bitmap segment, and wherein the step of determining a layer n integer list for a leaf node comprises: initializing a layer n bitmap vector with logical zeroes; obtaining the layer n ranks and associated bitmap segments 122- 00 O O from the coding data for each relevant thesaurus entry to which said leaf node C corresponds; and for each of said layer n ranks, superimposing the layer n Sbitmap segment associated therewith onto a segment of said layer n bitmap vector having a position determined by said layer n rank, the superimposition 00 N 5 being performed according to a bitwise Boolean OR operation, said layer n list for the leaf node corresponding to the resulting layer n bitmap vector. O
171. A method according to any one of claims 168 to 170, wherein n 1 and C the step of determining the matching row identifier list further comprises, for k 00 decreasing from n-1 to 1, determining a layer k integer list for each node of said tree, whereby the layer k integer list determined for a leaf node consists of any integer of a layer k input list, associated in the coding scheme with the identifier list represented in a relevant thesaurus entry to which said leaf node corresponds, which belongs to a layer k subset whose position is represented in the layer k+1 result list, and whereby the layer k integer list obtained for each operator node representing a Boolean operator applied to at least one partial criterion is obtained by applying said Boolean operator to the layer k integer lists determined for the nodes representing said at least one partial criterion, wherein a layer k result list is determined as the layer k integer list obtained for the root node, and wherein said matching row identifier list corresponds to the determined layer 1 result list.
172. A method according to claim 171, wherein the nodes of said tree further include at least one preset node for which a reference table row identifier list has been determined prior to said step of analyzing the query criteria, said reference table row identifier list being subjected to the coding scheme to provide a layer k input list which is determined as said layer k integer list for said preset node.
173. A method according to claim 171 or 172, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the coding data further comprise a layer k integer rank associated with said layer k bitmap segment to represent the -123- 00 O position of said subset in the layer k pattern, and wherein the step of determining a layer k integer list for a leaf node comprises: initializing a layer k bitmap vector with logical zeroes; obtaining the layer k ranks from the coding data for each relevant thesaurus entry to which said leaf node corresponds; 00 N 5 and selecting any obtained layer k rank belonging to the layer k+l result list and superimposing the associated layer k bitmap segment onto a segment of Ssaid layer k bitmap vector having a position determined by the selected layer k rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer k list for the leaf node corresponding to the resulting layer 00 k bitmap vector.
174. A method according to claim 173, wherein, for 1 zu k n, the layer k ranks and the layer k bitmap segments associated therewith for at least one thesaurus entry are stored at corresponding addresses in distinct first and second files, and wherein the step of determining a layer k integer list for a leaf node comprises: providing a rank table in a RAM memory, having records associated with the addresses in said first and second files filling the rank table by writing any selected layer k rank into the rank table record associated with the address of the selected layer k rank in said first file and for any record of the filled rank table containing a layer k rank and associated with an address in the second file, reading the associated layer k bitmap segment at said address in the second file and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said layer k rank.
175. A method according to claim 171 or 172, wherein the step of determining the matching row identifier list further comprises, for any coding layer k such that 1 k zone determining determining a layer k'filtering list for k k' n consisting of the layer k'input list obtained by providing the layer k result list as an input list in layer k of the coding scheme, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while a layer k integer rank associated with -124- 00 oo said layer k bitmap segment represents the position of said subset in the layer C k pattern, and wherein the step of determining a layer k integer list for a leaf Snode for k n comprises: /a/initializing a layer k bitmap vector with logical zeroes; /b/selecting the layer n ranks obtained from the coding data for each 00 relevant thesaurus entry to which said leaf node corresponds, and setting n; /c/for each selected layer k'rank /cl/if the selected layer k'rank represents the \position in the layer k' pattern of a subset which includes at least one integer of Sthe layer k'filtering list, obtaining the layer k'bitmap segment with which the C)selected layer k'rank is associated; /c2/for any integer of the layer k'filtering list oo whose position within said subset is represented in said layer k'bitmap Ssegment, selecting a respective layer k'-1 rank determined from the selected layer k'rank and said position represented in said layer k'bitmap segment; /c3/if k+l, executing step/c/with k'decremented by one unit; and /c4/if k'-1 k, obtaining any layer k bitmap segment with which a selected layer k'-1 rank is associated, and superimposing said layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said selected layer k'-1 rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer k list for the leaf node corresponding to the resulting layer k bitmap vector.
176. A method according to claim 175, wherein, for 1 k n, the layer k bitmap segments for at least one thesaurus entry are stored in at least one layer k file at addresses respectively corresponding to the layer k ranks associated therewith, and wherein, for 1 &It; the step step determining determining a layer k integer list for a leaf node comprises: providing a rank table in a RAM memory, having records associated with the addresses in said layer k file filling the rank table by writing any selected layer k rank into the rank table record associated with the address corresponding to the selected layer k rank; and for any record of the filled rank table containing a layer k rank and associated with an address in said layer k file, reading the associated layer k bitmap segment at said address and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said layer k rank. 00 -125- O 177. A method according to any one of claims 151 to 176, wherein the step of Sprocessing the matching row identifier list comprises, for at least one attribute specified in the query, selecting a thesaurus associated with said attribute and detecting entries of the selected thesaurus with which identifier lists having a o00 N 5 non-empty intersection with the matching row identifier list are associated.
0178. A method according to claim 177, wherein said attribute specified in the Cc query has Q+1 stored thesauruses associated with different prefix lengths, Q 0being an integer at least equal to 0, each of said Q+1 thesauruses having a 00oo thesaurus level parameter q such that 0 &It; whereby the prefix length is whereby decreasing function of the level parameter q and corresponds to a word length of said attribute for q 0, wherein each of said Q+1 thesauruses is defined with reference to a respective partition into subsets each consisting of words beginning by a common prefix having the prefix length associated with said thesaurus, the entries of said thesaurus being sorted based on the prefix values.
179. A method according to claim 178, wherein, the selected thesaurus having a level parameter QA20, the detection of entries in the selected thesaurus comprises the steps of: /a/providing respective level q target lists and respective level q thesaurus ranges covering consecutive entries of the level q thesaurus for QA &It; q &It; Q /b/initializing the level Q target list with the matching row identifier list, initializing the level parameter q with the value Q, and selecting a first entry of the level Q thesaurus range; /c/determining an intersection list between the level q target list and the identifier list associated with the selected entry of the level q thesaurus range; /d/if the intersection list determined in the preceding step/c/is empty, selecting another entry of the level q thesaurus range and repeating step /e/if q is greater than QA: /el/setting the level q-1 target list as equal to the intersection list determined in the preceding step/c/ /e2/setting the level q-1 thesaurus range as consisting of the entries of the level q-1 thesaurus relating to level q-1 prefixes which begin with the level q prefix of the selected level q thesaurus entry, and selecting a first entry of the level q-1 thesaurus range; /e3/decrementing q by one unit and returning to step/c/ /f/if q is equal to QA: /1/including the selected level QA -126- 00 O thesaurus entry in the detected entries; /f2/if the level Q target list is equal to C the intersection list determined in the preceding step/c/, terminating the Sdetection of entries in the selected thesaurus; /f3/removing the integers of the C intersection list determined in the preceding step/c/from any target list including 00 at least one integer which is not in said intersection list /f4/setting q as the smallest level parameter for which the target list includes at least one integer \which is not in said intersection list /f5/selecting another entry in the level q Sthesaurus range and returning to step/c/. 00 180. A method according to claim 179, wherein Q 2 1 and each thesaurus having a level parameter q 2 1 further contains, in each entry provided for a level q prefix value, data designating the entry of the level q-1 thesaurus which corresponds to the lowest or highest level q-1 prefix beginning with the level q prefix of said level q thesaurus entry, and wherein step/e2/comprises selecting the level q-1 thesaurus entry designated in the selected level q thesaurus entry.
181. A method according to claim 179 or 180, wherein a coding scheme comprising n successive coding layers is used to provide coding data representing the identifier list associated with a level q thesaurus entry for 0 q &It;Q, n being a number at least equal to 1, each layer having a predetermined pattern for dividing a range covering integers of an input list of said layer into subsets, said identifier list being the input list of the first layer for said thesaurus entry, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, wherein the coding data comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer, and wherein each level q target list forms a layer 1 and level q filtering list and is submitted as a layer 1 input list in the coding scheme for QA s q Q to provide respective layer k and level q filtering lists for 1 k n if n 1, said layer k and level q filtering list provided from a level q target list being the layer k input list obtained from said level q target list in the coding scheme. 00 -127- O 182. A method according to claim 181, wherein the pattern of each layer is N such that the integer subsets are consecutive intervals consisting of the same Ctnumber of integers. 00oO 183. A method according to claim 182, wherein said number of integers is a whole power of 2 for each layer. O 184. A method according to any one of claims 181 to 183, wherein the step/c/of C determining the intersection list between a level q target list and an identifier list N comprises, from k n: /cl/computing a layer k intersection list between the oO Slayer k input list obtained from said identifier list in the coding scheme and the S 10 layer k and level q filtering list corresponding to said level q target list /c2/if the computed layer k intersection list is empty, determining said intersection list between the level q target list and the identifier list as being empty; /c3/if k 1, determining said intersection list between the level q target list and the identifier list as the computed layer 1 intersection list and /c4/if k 1, decrementing k by one unit and repeating from step/cl/.
185. A method according to claim 184, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k &It; n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the data representing the position of said subset in the layer k pattern comprise a layer k integer rank associated with said layer k bitmap segment, and wherein the step/cl/of computing a layer k intersection list between a layer k input list obtained from an identifier list in the coding scheme and a layer k and level q filtering list, represented by a first layer k bitmap vector, comprises: initializing a second layer k bitmap vector with logical zeroes; obtaining layer k ranks from the coding data representing said identifier list and selecting any obtained layer k rank which represents the position in the layer k pattern of a subset including at least one integer of said layer k and level q filtering list, obtaining the layer k bitmap segment with which the selected layer k rank is associated, and determining a segment of the second layer k bitmap vector having a position determined by the selected layer k rank by combining the obtained layer k bitmap segment with a segment 00 -128- O of the first layer k bitmap vector having a position determined by the selected c layer k rank according to a bitwise Boolean AND operation, said layer k Sintersection list corresponding to the resulting second layer k bitmap vector. o00 186. A method according to claim 185, wherein, for 1 &It; k n, the layer k (N ranks and the layer k bitmap segments associated therewith for at least one 0thesaurus entry are stored at corresponding addresses in distinct first and INO t' second files, and wherein the step/cl/of computing a layer k intersection list 0between a layer k input list obtained from an identifier list in the coding scheme oO and a layer k and level q filtering list, represented by a first layer k bitmap vector, comprises: providing a rank table in a RAM memory, having records associated with the addresses in said first and second files filling the rank table by writing any selected layer k rank into the rank table record associated with the address of said selected layer k rank in said first file and for any record of the filled rank table containing a layer k rank and associated with an address in the second file, reading the associated layer k bitmap segment at said address in the second file and combining the read layer k bitmap segment with a segment of the first layer k bitmap vector having a position determined by said layer k rank according to a bitwise Boolean AND operation to determine a segment of the second layer k bitmap vector having a position determined by said layer k rank.
187. A method according to any one of claims 181 to 183, wherein n 1 and in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while a layer k integer rank associated with said layer k bitmap segment represents the position of said subset in the layer k pattern, and wherein the step/c/of determining the intersection list between a level q target list, corresponding to layer k and level q filtering lists represented by a respective first layer k bitmap vectors for 1 &It;_ k n, and an identifier list comprises: /cl/initializing a second bitmap vector with logical zeroes; /c2/selecting layer n ranks obtained from the coding data representing said identifier list, and setting k n; /c3/for each selected layer k 00 -129- O rank: /c31/if the selected layer k rank represents the position in the layer k Spattern of a subset which includes at least one integer of said layer k and level Ctq filtering list, obtaining the layer k bitmap segment with which the selected Slayer k rank is associated; /c32/for any integer of the layer k and level q filtering 00oO list whose position within said subset is represented in said layer k bitmap segment, selecting a respective layer k-1 rank determined from the selected Slayer k rank and said position represented in said layer k bitmap segment; S/c33/if k 2, executing step/c3/with k decremented by one unit; and /c34/if k S2, obtaining any layer 1 bitmap segment with which a selected layer 1 rank is 00oo associated, and combining the obtained layer 1 bitmap segment with a Ssegment of the first layer 1 bitmap vector having a position determined by said layer 1 rank according to a bitwise Boolean AND operation to determine a segment of the second bitmap vector having a position determined by said layer 1 rank, said intersection list corresponding to the resulting second bitmap vector.
188. A method according to claim 187, wherein the layer 1 bitmap segments for at least one thesaurus entry are stored in at least one layer 1 file at addresses respectively corresponding to the layer 1 ranks associated therewith, and the step/c/of determining an intersection list comprises: providing a rank table in a RAM memory, having records associated with the addresses in said layer 1 file filling the rank table by writing any layer 1 rank selected in step/c32/into the rank table record associated with the address corresponding to the selected layer 1 rank; and for any record of the filled rank table containing a layer 1 rank and associated with an address in said layer 1 file, reading the associated layer 1 bitmap segment at said address and combining the read layer 1 bitmap segment with a segment of the first layer 1 bitmap vector having a position determined by said layer 1 rank according to a bitwise Boolean AND operation to determine a segment of the second layer 1 bitmap vector having a position determined by said layer 1 rank.
189. A method according to any one of claims 185 to 188, further comprising determining a pre-filtering flag for each entry of a level q thesaurus, said pre- filtering flag having a first value when said entry is associated with a reference -130- 00 O O table row identifier list represented by coding data which do not define any C1 layer n rank representing the position in the layer n pattern of a subset which Sincludes at least one integer of a layer n and level q filtering list, and wherein the step/c/of determining the intersection list between a level q target list, 00 corresponding to said layer n and level q filtering list, and an identifier list associated with an entry of the level q thesaurus comprises determining said intersection list as being empty if the pre-filtering flag determined for said entry has said first value. o00 190. A method according to claim 189, wherein, for any level q thesaurus entry associated with a row identifier list represented by coding data which define a layer n rank representing the position in the layer n pattern of a subset which includes at least one integer of the layer n and level q filtering list, the layer n bitmap segment associated with said layer n rank is obtained and said first value is allocated to the pre-filtering flag determined for said entry if the obtained layer n bitmap segment does not represent the position of any integer of said layer n and level q filtering list within said subset.
191. A method according to any one of claims 177 to 190, wherein the step of processing the matching row identifier list further comprises writing output data associated with any detected entry of a selected thesaurus into an output table.
192. A method according to claim 191, wherein the output table includes a respective row corresponding to each identifier of the matching row identifier list, and wherein output data associated with a detected entry of a selected thesaurus are written into any row of the output table corresponding to a reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected thesaurus entry.
193. A method according to claim 192, wherein each reference table row identifier has a respective row of the output table corresponding thereto, wherein the rows of the output table are initialized with a default value before writing the output data, and wherein the rows of the output table which do not contain the default value are read after writing the output data. 00 -131-
194. A method according to claim 192, wherein the output table is associated with an index file having a respective record for each reference table row t identifier, containing either a default value or a pointer designating a respective row of the output table corresponding to said reference table row identifier, oo00 wherein the records of the index file are initialized with a default value before writing the output data, and wherein the step of writing output data associated with a detected entry of a first selected thesaurus comprises, for each reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected entry of the first selected oo00 S 10 thesaurus: allocating an available row of the output table to correspond to said O Sreference table row identifier, -writing output data into the allocated row; and writing a pointer to the allocated row into the record of the index file provided for said reference table row identifier.
195. A method according to any one of claims 192 to 194, wherein the output table has a plurality of columns each associated with a respective attribute for which a thesaurus is selected, and wherein output data associated with a detected entry of a thesaurus selected for an attribute associated with a column of the output table are written into said column.
196. A method according to both claims 194 and 195, wherein the step of writing output data associated with a detected entry of at least one second selected thesaurus comprises, for each reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected entry of the second selected thesaurus: reading the pointer contained in the record of the index file provided for said reference table row identifier; and writing output data into the row of the output table designated by said pointer.
197. A method according to any one of claims 191 to 196, wherein the selected thesaurus being a word thesaurus defined with reference to a partition into subsets each consisting of one word, the output data associated with a detected entry comprise the word for which said detected entry is provided. 0- 132 O 198. A method according to any one of claims 191 to 196, wherein the selected c thesaurus being a macroword thesaurus associated with a prefix length and t defined with reference to a partition into subsets each consisting of words beginning by a common prefix having said prefix length, the output data 00 S 5 associated with a detected entry comprise the prefix value for which said detected entry is provided.
199. A method according to any one of claims 191 to 196, wherein the output adata associated with a detected entry comprise an address of said detected 00 entry in the selected thesaurus. N 10 200. A method according to any one of claims 191 to 196, wherein the output data associated with a detected entry of a selected thesaurus comprise a numerical value derived from said thesaurus entry.
201. A method according to claim 200, wherein, for a detected entry of at least one selected thesaurus, said numerical value is calculated by applying a mathematical function to a thesaurus value stored in said entry.
202. A method according to claim 200 or 201, wherein, for a detected entry of at least one selected thesaurus, said numerical value is calculated by applying a mathematical function to a plurality of values including a thesaurus value stored in said entry and at least one value already present in the output table.
203. A method according to any one of claims 200 to 202, wherein the output table includes a respective row corresponding to each identifier of the matching row identifier list, and wherein a numerical value derived from a detected thesaurus entry is written into any row of the output table corresponding to a reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected thesaurus entry.
204. A method according to claim 203, wherein the numerical value, derived from a detected entry of a first selected thesaurus and written into any row of the output table corresponding to a reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said entry of the first selected thesaurus, is obtained from a thesaurus value stored 0- 133 O in said entry, and wherein the numerical value, derived from a detected entry of c at least one second selected thesaurus and written into a row of the output t table corresponding to a reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said entry of the 00 S 5 second selected thesaurus, is calculated by applying a mathematical function to a plurality of values including a thesaurus value stored in said entry and at least one value already present in said row of the output table. S205. A method according to claim 203 or 204, further comprising calculating an 00oo output value from a set of numerical values which have been respectively written into the rows of the output table.
206. A method according to any one of claims 151 to 205, wherein an integer range covering the identifiers designating the rows of the reference table is partitioned into a plurality of predetermined portions, wherein at least some of the data representing identifier lists are distributed into a plurality of storage sections respectively associated with said portions, wherein a storage section associated with one of said portions contains data representing identifier sub- lists consisting of identifiers of said portion. and wherein the step of determining a matching row identifier list is executed separately for the different portions of the reference table row identifier range, by means of the respective storage sections.
207. A method according to claim 206, wherein the step of processing the matching row identifier is at least partially executed separately for the different portions of the reference table row identifier range, by means of the respective storage sections.
208. A method according to claim 206 or 207, wherein the thesauruses have a plurality of sections respectively associated with said portions, wherein a section, associated with one of said portions, of a thesaurus associated with an attribute and defined with reference to a partition into subsets has a respective entry for each subset of said partition which includes at least one word assigned to said attribute in a reference table row to which an identifier of said portion is allocated, said entry containing data representing an identifier sub-list 00 -134- O including each identifier of said portion allocated to a reference table row C having a word of said subset assigned to said attribute, and wherein the step of t analyzing the query criteria is at least partially executed separately for the different portions of the reference table row identifier range, by means of the oo00 respective thesaurus sections.
0209. A method according to any one of claims 206 to 208, wherein the separate step executions are carried out in parallel by respective processors for the adifferent portions of the reference table row identifier range. 00 O210. A method according to claim 209, wherein each thesaurus entry has a S 10 plurality of fields respectively associated with said portions, for containing data for retrieving respective identifier sub-lists from the storage sections, wherein the step of analyzing the query criteria is executed centrally for all the portions of the reference table row identifier range, and wherein the relevant thesaurus entries used by a processor executing the step of determining a matching row identifier list by means of a storage section are designated by the data for retrieving identifier sub-lists from said storage section.
211. A method according to claim 210, wherein the step of analyzing the query criteria is executed by a query server connected to said processors through a communication network.
212. A method according to claim 211, wherein a list update server is connected, through the communication network, to a plurality of storage units respectively coupled to said processors, the list update server controlling the storage units to maintain the storage sections.
213. A method according to any one of claims 151 to 212, wherein said reference table is a virtual table which is not stored.
214. A method of processing a query in a database system, wherein a plurality of row identifiers are defined to designate respective rows of a reference table having columns respectively associated with data attributes, said rows containing groups of related words assigned to said attributes in a collection of data, wherein a plurality of thesauruses each associated with a respective 00 -135- O attribute and data representing reference table row identifier lists respectively Sassociated with entries of said thesauruses are stored, wherein each thesaurus associated with one attribute is defined with reference to a partition into subsets of a set of words which can be assigned to said one attribute and has a 00oo respective entry for each subset including at least one word assigned to said one attribute in the collection of data, the reference table row identifier list Sassociated with said thesaurus entry including any identifier allocated to a row N of the reference table having a word of said subset assigned to said one Sattribute, the method comprising the steps of: determining a matching oo 00 reference table row identifier list based on a combination of thesaurus entries N relevant to the query and on the stored data representing the reference table row identifier lists associated with said relevant thesaurus entries; and processing said matching row identifier list to output a response, wherein the step of processing the matching row identifier list comprises, for at least one attribute specified in the query, selecting a thesaurus associated with said attribute and detecting entries of the selected thesaurus with which identifier lists having a non-empty intersection with the matching row identifier list are associated.
215. A method according to claim 214, wherein said attribute specified in the query has Q+1 stored thesauruses associated with different prefix lengths, Q being an integer at least equal to 0, each of said Q+1 thesauruses having a thesaurus level parameter q such that 0 &It; q Q, whereby the prefix length is a decreasing function of the level parameter q and corresponds to a word length of said attribute for q 0, wherein each of said Q+1 thesauruses is defined with reference to a respective partition into subsets each consisting of words beginning by a common prefix having the prefix length associated with said thesaurus, the entries of said thesaurus being sorted based on the prefix values.
216. A method according to claim 215, wherein, the selected thesaurus having a level parameter QA20, the detection of entries in the selected thesaurus comprises the steps of: /a/providing respective level q target lists and respective level q thesaurus ranges covering consecutive entries of the level q -136- 00 O thesaurus for QA q &It; Q /b/initializing the level Q target list with the matching c1 row identifier list, initializing the level parameter q with the value Q, and s selecting a first entry of the level Q thesaurus range; /c/determining an intersection list between the level q target list and the identifier list associated 00 with the selected entry of the level q thesaurus range; /d/if the intersection list determined in the preceding step/c/is empty, selecting another entry of the level Sq thesaurus range and repeating step /e/if q is greater than QA: /el/setting Sthe level q-1 target list as equal to the intersection list determined in the 0 preceding step/c/; /e2/setting the level q-1 thesaurus range as consisting of the oo o1 entries of the level q-1 thesaurus relating to level q-1 prefixes which begin with C the level q prefix of the selected level q thesaurus entry, and selecting a first entry of the level q-1 thesaurus range; /e3/decrementing q by one unit and returning to step/c/ /f/if q is equal to QA: /fl/including the selected level QA thesaurus entry in the detected entries; /f2/if the level Q target list is equal to the intersection list determined in the preceding step/c/, terminating the detection of entries in the selected thesaurus; /f3/removing the integers of the intersection list determined in the preceding step/c/from any target list including at least one integer which is not in said intersection list /f4/setting q as the smallest level parameter for which the target list includes at least one integer which is not in said intersection list /f5/selecting another entry in the level q thesaurus range and returning to step/c/.
217. A method according to claim 216, wherein Q 2 1 and each thesaurus having a level parameter q 2 1 further contains, in each entry provided for a level q prefix value, data designating the entry of the level q-1 thesaurus which corresponds to the lowest or highest level q-1 prefix beginning with the level q prefix of said level q thesaurus entry, and wherein step/e2/comprises selecting the level q-1 thesaurus entry designated in the selected level q thesaurus entry.
218. A method according to claim 216 or 217, wherein a coding scheme comprising n successive coding layers is used to provide coding data representing the identifier list associated with a level q thesaurus entry for 0&lt;q&lt;Q, n being a number at least equal to 1, each layer having a predetermined pattern for dividing a range covering integers of an input list of 00 -137- O said layer into subsets, said identifier list being the input list of the first layer for C said thesaurus entry, wherein for any layer other than the last layer, an integer Ctlist representing the position, in the pattern of said layer, of each subset Scontaining at least one integer of the input list forms the input list for the next 00oO C 5 layer, wherein the coding data comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of Seach integer of the input list within said subset and, at least if said layer is the Slast layer, data representing the position of said subset in the pattern of said Slayer, and wherein each level q target list forms a layer 1 and level q filtering list 00 oo and is submitted as a layer 1 input list in the coding scheme for QA s q s Q to N provide respective layer k and level q filtering lists for 1 k n if n 1, said layer k and level q filtering list provided from a level q target list being the layer k input list obtained from said level q target list in the coding scheme.
219. A method according to claim 218, wherein the pattern of each layer is such that the integer subsets are consecutive intervals consisting of the same number of integers.
220. A method according to claim 219, wherein said number of integers is a whole power of 2 for each layer.
221. A method according to any one of claims 218 to 220, wherein the step/c/of determining the intersection list between a level q target list and an identifier list comprises, from k n: /cl/computing a layer k intersection list between the layer k input list obtained from said identifier list in the coding scheme and the layer k and level q filtering list corresponding to said level q target list /c2/if the computed layer k intersection list is empty, determining said intersection list between the level q target list and the identifier list as being empty; /c3/if k 1, determining said intersection list between the level q target list and the identifier list as the computed layer 1 intersection list and /c4/if k 1, decrementing k by one unit and repeating from step/cl/.
222. A method according to claim 221, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k s n define a layer k bitmap segment in which each 00 -138- bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the data representing the position of said C subset in the layer k pattern comprise a layer k integer rank associated with said layer k bitmap segment, and wherein the step/cl/of computing a layer k 00 intersection list between a layer k input list obtained from an identifier list in the coding scheme and a layer k and level q filtering list, represented by a first layer k bitmap vector, comprises: initializing a second layer k bitmap vector with logical zeroes; obtaining layer k ranks from the coding data representing said identifier list and selecting any obtained layer k rank which represents 00 0 10 the position in the layer k pattern of a subset including at least one integer of Nsaid layer k and level q filtering list, obtaining the layer k bitmap segment with which the selected layer k rank is associated, and determining a segment of the second layer k bitmap vector having a position determined by the selected layer k rank by combining the obtained layer k bitmap segment with a segment of the first layer k bitmap vector having a position determined by the selected layer k rank according to a bitwise Boolean AND operation, said layer k intersection list corresponding to the resulting second layer k bitmap vector.
223. A method according to claim 222, wherein, for 1 s k n, the layer k ranks and the layer k bitmap segments associated therewith for at least one thesaurus entry are stored at corresponding addresses in distinct first and second files, and wherein the step/cl/of computing a layer k intersection list between a layer k input list obtained from an identifier list in the coding scheme and a layer k and level q filtering list, represented by a first layer k bitmap vector, comprises: providing a rank table in a RAM memory, having records associated with the addresses in said first and second files filling the rank table by writing any selected layer k rank into the rank table record associated with the address of said selected layer k rank in said first file and for any record of the filled rank table containing a layer k rank and associated with an address in the second file, reading the associated layer k bitmap segment at said address in the second file and combining the read layer k bitmap segment with a segment of the first layer k bitmap vector having a position determined by said layer k rank according to a bitwise Boolean AND operation to determine 00 -139- O a segment of the second layer k bitmap vector having a position determined by Ssaid layer k rank. S224. A method according to any one of claims 218 to 220, wherein n 1 and in 00 the coding scheme, the coding data representing the position of each integer of (N an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset \D Sto indicate whether said integer belongs to said input list, while a layer k integer rank associated with said layer k bitmap segment represents the position of o00 said subset in the layer k pattern, and wherein the step/c/of determining the intersection list between a level q target list, corresponding to layer k and level q filtering lists represented by a respective first layer k bitmap vectors for 1 &It; k &It; n, and an identifier list, comprises: /cl/initializing a second bitmap vector with logical zeroes; /c2/selecting layer n ranks obtained from the coding data representing said identifier list, and setting k n; /c3/for each selected layer k rank: /c31/if the selected layer k rank represents the position in the layer k pattern of a subset which includes at least one integer of said layer k and level q filtering list, obtaining the layer k bitmap segment with which the selected layer k rank is associated; /c32/for any integer of the layer k and level q filtering list whose position within said subset is represented in said layer k bitmap segment, selecting a respective layer k-1 rank determined from the selected layer k rank and said position represented in said layer k bitmap segment; /c33/if k 2, executing step/c3/with k decremented by one unit; and /c34/if k 2, obtaining any layer 1 bitmap segment with which a selected layer 1 rank is associated, and combining the obtained layer 1 bitmap segment with a segment of the first layer 1 bitmap vector having a position determined by said layer 1 rank according to a bitwise Boolean AND operation to determine a segment of the second bitmap vector having a position determined by said layer 1 rank, said intersection list corresponding to the resulting second bitmap vector.
225. A method according to claim 224, wherein the layer 1 bitmap segments for at least one thesaurus entry are stored in at least one layer 1 file at addresses respectively corresponding to the layer 1 ranks associated therewith, and the 00 -140- O step/c/of determining an intersection list comprises: providing a rank table in a C RAM memory, having records associated with the addresses in said layer 1 file filling the rank table by writing any layer 1 rank selected in step/c32/into the rank table record associated with the address corresponding to the selected 00 C 5 layer 1 rank; and for any record of the filled rank table containing a layer 1 rank and associated with an address in said layer 1 file, reading the associated Slayer 1 bitmap segment at said address and combining the read layer 1 bitmap Cc Ssegment with a segment of the first layer 1 bitmap vector having a position Sdetermined by said layer 1 rank according to a bitwise Boolean AND operation 00 to determine a segment of the second layer 1 bitmap vector having a position Sdetermined by said layer 1 rank.
226. A method according to any one of claims 222 to 225, further comprising determining a pre-filtering flag for each entry of a level q thesaurus, said pre- filtering flag having a first value when said entry is associated with a reference table row identifier list represented by coding data which do not define any layer n rank representing the position in the layer n pattern of a subset which includes at least one integer of a layer n and level q filtering list, and wherein the step/c/of determining the intersection list between a level q target list, corresponding to said layer n and level q filtering list, and an identifier list associated with an entry of the level q thesaurus comprises determining said intersection list as being empty if the pre-filtering flag determined for said entry has said first value.
227. A method according to claim 226, wherein, for any level q thesaurus entry associated with a row identifier list represented by coding data which define a layer n rank representing the position in the layer n pattern of a subset which includes at least one integer of the layer n and level q filtering list, the layer n bitmap segment associated with said layer n rank is obtained and said first value is allocated to the pre-filtering flag determined for said entry if the obtained layer n bitmap segment does not represent the position of any integer of said layer n and level q filtering list within said subset. 00 -141-
228. A method according to any one of claims 214 to 227, wherein the step of Nprocessing the matching row identifier list further comprises writing output data C associated with any detected entry of a selected thesaurus into an output table. 00 229. A method according to claim 228, wherein the output table includes a (N respective row corresponding to each identifier of the matching row identifier 0list, and wherein output data associated with a detected entry of a selected thesaurus are written into any row of the output table corresponding to a 0 reference table row identifier belonging to both the matching row identifier list (N oo and the identifier list associated with said detected thesaurus entry. S 10 230. A method according to claim 229, wherein each reference table row identifier has a respective row of the output table corresponding thereto, wherein the rows of the output table are initialized with a default value before writing the output data, and wherein the rows of the output table which do not contain the default value are read after writing the output data.
231. A method according to claim 229, wherein the output table is associated with an index file having a respective record for each reference table row identifier, containing either a default value or a pointer designating a respective row of the output table corresponding to said reference table row identifier, wherein the records of the index file are initialized with a default value before writing the output data, and wherein the step of writing output data associated with a detected entry of a first selected thesaurus comprises, for each reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected entry of the first selected thesaurus: allocating an available row of the output table to correspond to said reference table row identifier, writing output data into the allocated row; and writing a pointer to the allocated row into the record of the index file provided for said reference table row identifier.
232. A method according to any one of claims 229 to 231, wherein the output table has a plurality of columns each associated with a respective attribute for which a thesaurus is selected, and wherein output data associated with a 0- 142 O detected entry of a thesaurus selected for an attribute associated with a column Sof the output table are written into said column.
233. A method according to both claims 231 and 232, wherein the step of 00 writing output data associated with a detected entry of at least one second (N selected thesaurus comprises, for each reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected entry of the second selected thesaurus: reading the pointer Scontained in the record of the index file provided for said reference table row 00 identifier; and writing output data into the row of the output table designated by said pointer.
234. A method according to any one of claims 228 to 233, wherein the selected thesaurus being a word thesaurus defined with reference to a partition into subsets each consisting of one word, the output data associated with a detected entry comprise the word for which said detected entry is provided.
235. A method according to any one of claims 228 to 233, wherein the selected thesaurus being a macroword thesaurus associated with a prefix length and defined with reference to a partition into subsets each consisting of words beginning by a common prefix having said prefix length, the output data associated with a detected entry comprise the prefix value for which said detected entry is provided.
236. A method according to any one of claims 228 to 233, wherein the output data associated with a detected entry comprise an address of said detected entry in the selected thesaurus.
237. A method according to any one of claims 228 to 233, wherein the output data associated with a detected entry of a selected thesaurus comprise a numerical value derived from said thesaurus entry.
238. A method according to claim 237, wherein, for a detected entry of at least one selected thesaurus, said numerical value is calculated by applying a mathematical function to a thesaurus value stored in said entry. 00 -143-
239. A method according to claim 237 or 238, wherein, for a detected entry of N at least one selected thesaurus, said numerical value is calculated by applying t a mathematical function to a plurality of values including a thesaurus value stored in said entry and at least one value already present in the output table. 00
240. A method according to any one of claims 237 to 239, wherein the output table includes a respective row corresponding to each identifier of the matching row identifier list, and wherein a numerical value derived from a detected athesaurus entry is written into any row of the output table corresponding to a 00 reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said detected thesaurus entry.
241. A method according to claim 240, wherein the numerical value, derived from a detected entry of a first selected thesaurus and written into any row of the output table corresponding to a reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said entry of the first selected thesaurus, is obtained from a thesaurus value stored in said entry, and wherein the numerical value, derived from a detected entry of at least one second selected thesaurus and written into a row of the output table corresponding to a reference table row identifier belonging to both the matching row identifier list and the identifier list associated with said entry of the second selected thesaurus, is calculated by applying a mathematical function to a plurality of values including a thesaurus value stored in said entry and at least one value already present in said row of the output table.
242. A method according to claim 240 or 241, further comprising calculating an output value from a set of numerical values which have been respectively written into the rows of the output table.
243. A method according to any one of claims 214 to 242, wherein an integer range covering the identifiers designating the rows of the reference table is partitioned into a plurality of predetermined portions, wherein at least some of the data representing identifier lists are distributed into a plurality of storage sections respectively associated with said portions, wherein a storage section associated with one of said portions contains data representing identifier sub- 00 -144- O lists consisting of identifiers of said portion, and wherein the step of determining N a matching row identifier list is executed separately for the different portions of Cthe reference table row identifier range, by means of the respective storage sections. 00 oo (N
244. A method according to claim 243, wherein the step of processing the 0 matching row identifier is at least partially executed separately for the different Sportions of the reference table row identifier range, by means of the respective (-i storage sections. o00 O 245. A method according to claim 243 or 244, wherein the separate step (i 10 executions are carried out in parallel by respective processors for the different portions of the reference table row identifier range.
246. A method according to claim 245, wherein the combination of thesaurus entries relevant to the query is determined, on the basis of criteria specified in the query, by a query server connected to said processors through a communication network.
247. A method according to claim 246, wherein a list update server is connected, through the communication network, to a plurality of storage units respectively coupled to said processors, the list update server controlling the storage units to maintain the storage sections.
248. A method according to any one of claims 214 to 247, wherein said reference table is a virtual table which is not stored.
249. A method of encoding integer lists in a computer system, comprising the steps of: dividing a range covering integers of an input list into subsets according to a predetermined pattern; and producing coding data including, for each subset containing at least one integer of the input list, data representing the position of said subset in the pattern, and data representing the position of each integer of the input list within said subset.
250. A method according to claim 249, wherein the data representing the position of each integer of the input list within a subset consist of a bitmap 00 -145- segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to the input list.
251. The method of claim 250, wherein the position of each subset in the oo00 pattern is represented by an integer rank which is included in the coding data, (N in association with the corresponding bitmap segment, if said subset contains 0at least one integer of the input list. 00 252. A method according to claim 251, wherein a coding data container comprising records having respective addresses is provided for storing together coding data produced from a plurality of integer lists, wherein each record of the coding data container includes a first field for storing an integer rank related to the pattern, a second field for storing an address value and a third field for storing a bitmap segment, and wherein the encoding of a non-empty input list comprises the steps of: a/selecting an available record of the coding data container; b/selecting a subset containing at least one integer of the input list to which no record has been allocated c/allocating the selected record to the selected subset; d/storing the rank and the bitmap segment of the coding data produced for the selected subset in the first and third fields of the selected record, respectively e/if every subset containing at least one integer of the input list has a record allocated thereto, storing an end value in the second field of the selected record; and f/if at least one subset containing at least one integer of the input list has no record allocated thereto, storing the address of an available record of the coding data container in the second field of the selected record, selecting said available record and repeating from step b/.
253. A method according to claim 252, wherein the coding data container has a first file comprising the first and second fields of the records and a second file comprising the third fields of the records, the first and second files being accessible separately.
254. A method according to claim 252 or 253, further comprising the step of grouping the records stored in the data container, so that the records allocated to the subsets for any encoded integer list have contiguous addresses. 146 00 O 255. A method according to any one of claims 249 to 252, wherein the coding C data produced from one integer list are stored in at least one file allocated to Ssaid one integer list. o00 256. A method according to claim 255, wherein the coding data are stored in first and second files having a common addressing, whereby for each subset containing at least one integer of the input list, the data representing the position of said subset in the pattern are stored in the first file and the data Srepresenting the position of each integer of the input list within said subset are 00oo stored at a corresponding address in the second file. S 10 257. A method according to any one of claims 249 to 256, wherein the subsets are consecutive intervals consisting of the same number of integers.
258. A method according to claim 257, wherein said number of integers is a whole power of 2.
259. A method of encoding integer lists in a computer system, comprising n successive coding layers, n being a number at least equal to 1, wherein each coding layer comprises the steps of: dividing a range covering integers of an input list of said layer into subsets according to a predetermined pattern; producing coding data including, for each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last coding layer, data representing the position of said subset in the pattern; if said layer is not the last coding layer, forming a further integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list, and providing said further integer list as an input list of the next layer.
260. A method according to claim 259, wherein, in the pattern of each layer, the subsets are consecutive intervals consisting of the same number of integers.
261. A method according to claim 260, wherein said number of integers is a whole power of 2 for each layer. 00 -147-
262. A method according to any one of claims 259 to 261, wherein the coding data produced for each layer are stored in first and second files having a common addressing, whereby for each subset containing at least one integer of the input list of said layer, the data representing the position of said subset in 00 c-I 5 the pattern are stored in the first file and the data representing the position of each integer of the input list within said subset are stored at a corresponding address in the second file.
263. A method according to any one of claims 259 to 262, wherein the coding 00 data produced from one integer list input in the first layer are stored in at least 0 10 one file allocated to said one integer list.
264. A method according to any one of claims 259 to 262, wherein the coding data produced from one integer list input in the first layer are stored as at least one record chain in a data container allocated to a plurality of integer lists.
265. A method according to claim 264, further comprising the step of grouping the records of the data container so that the records of each chain have contiguous addresses.
266. A method according to any one of claims 259 to 265, wherein n 2 2 and layer k data containers each having a plurality of records are provided in a computer memory for 1 :k n, each record of a layer k data container being associated with a layer k integer rank representing the position of a subset in the layer k pattern, and wherein each record of a layer k data container associated with a layer k rank representing the position of a subset in the layer k pattern has a first field for containing data for retrieving the position within said subset of any integer of a layer k input list relating to a layer 1 input list, whereby a combination of said layer k rank with any position retrievable from the data contained in said first field determines a layer k-I rank with which a respective record of the layer k-i data container is associated if k 1, and an integer of said layer 1 input list if k 1. 267. A method according to claim 266, wherein each record of the layer n data container associated with a layer n rank further has a second field for containing said layer n rank. 0 -148- O 268. A method according to claim 266 or 267, wherein, for 1 k &It; n, said data Scontained in the first field of a record of the layer k data container for retrieving Ctthe position of any integer of a layer k input list within a subset comprise a E bitmap segment in which each bit is associated with a respective integer of said 00oO subset to indicate whether said integer belongs to said layer k input list.
269. A method according to claim 268, wherein, for 1 k zone each record of Sthe layer k data container associated with a layer k rank further has a second field for containing said layer k rank. oO 00
270. A method according to claim 269, wherein each data container comprises lo at least two files where the first and second fields of the records of said data container are respectively stored, said files being accessible separately.
271. A method according to claim 266 or 267, wherein, for 1 k n, each record of the layer k data container further has a second field for containing a number representing the position of an integer of a layer k+l input list within a subset of the layer k+l pattern, and wherein, for 1 k n, said data contained in the first field of a record of the layer k data container associated with a layer k rank for retrieving the position of any integer of a layer k input list within a subset of the layer k pattern comprise a pointer to at least one record of the layer k-1 data container in which the second field contains a number representing the position of an integer of said layer k input list within said subset of the layer k pattern, whereby said record of the layer k-1 data container is associated with the layer k-1 rank determined by the combination of said layer k rank with the position represented by said number. 272. A method according to claim 271, wherein said data contained in the first field of a record of the layer 1 data container for retrieving the position of any integer of a layer 1 input list within a subset comprise a bitmap segment in which each bit is associated with a respective integer of said subset to indicate whether said integer belongs to said layer 1 input list.
273. A method according to claim 271 or 272, wherein each layer k data container for 1 &It; n comprises at least two files where the first and second 0 149 fields of the records of said data container are respectively stored, said files being accessible separately.
274. A method according to any one of claims 266 to 273, wherein, for 1 &It; k 00 &Wt; n, each record of the layer k data container further has a next address field, (N whereby record chains are defined in the layer k data container by means of the next address fields, and wherein at least some of the layer 1 input lists are respectively associated with record chains in the layer n data container, whereby the coding data for layer n relating to one of said layer 1 input lists are 00 stored in or retrievable from the record chain associated therewith in the layer n data container.
275. A method according to claim 274, wherein, for I k n, said layer I input lists are respectively associated with record chains in the layer k data container, whereby the coding data relating to one of said layer 1 input lists for layer k are stored in or retrievable from the record chain associated therewith in the layer k data container.
276. A method according to claim 24, wherein, for 1 k n, each record of the layer k data container further has a head address field for pointing to an address of a first record of a respective chain in the layer k-I data container.
277. A method according to any one of claims 274 to 276, wherein each layer k data container for I k: n comprises at least two files where the first fields and the next address fields of the records of said data container are respectively stored, said files being accessible separately.
278. A method according to any one of claims 274 to 277, further comprising the step of grouping the records of the data container for each coding layer, so that the records of each chain have contiguous addresses.
279. A computerized method of combining a plurality of first integer lists into a second integer list, wherein at least one of the first integer lists is represented by stored coding data provided by a coding scheme comprising n successive coding layers, n being a number at least equal to I, each layer having a predetermined pattern for dividing a range covering integers of an input list of 00 -150- said layer into subsets, said first integer list being the input list of the first layer, N wherein for any layer other than the last layer, an integer list representing the t position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, wherein the stored 00 coding data representing a first integer list comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer, the method comprising the steps of: defining a 00 0 10 combination of intermediary lists each corresponding to at least one of the first 0 Ninteger lists for k decreasing from n to 1, computing a layer k result list by combining a plurality of layer k intermediary lists in accordance with said combination; and producing the second integer list as the layer 1 result list, and wherein, for any intermediary list corresponding to at least one first integer list represented by stored coding data, the layer n intermediary list is determined from said stored coding data as consisting of the integers of any layer n input list associated with said at least one first integer list in the coding scheme and, if n 1, each layer k intermediary list for k n is determined from said stored coding data and the layer k+1 result list as consisting of any integer of a layer k input list associated with said at least one first integer list in the coding scheme which belongs to a layer k subset whose position is represented in the layer k+1 result list.
280. A method according to claim 279, wherein, in the pattern of each layer, the subsets are consecutive intervals consisting of the same number of integers.
281. A method according to claim 280, wherein said number of integers is a whole power of 2 for each layer.
282. A method according to any one of claims 279 to 281, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for the coding layer n define a layer n bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the data representing the position of said subset in the layer n pattern comprise a layer 151 00 n integer rank associated with said layer n bitmap segment, and wherein the C1 layer n intermediary list for an intermediary list corresponding to at least one first integer list represented by stored coding data is determined in a procedure comprising :-initializing a layer n bitmap vector with logical zeroes; obtaining 00 ci 5 the layer n ranks and associated bitmap segments from said stored coding data; and for each of said layer n ranks, superimposing the layer n bitmap segment associated therewith onto a segment of said layer n bitmap vector having a position determined by said layer n rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer n 00 intermediary list corresponding to the resulting layer n bitmap vector.
283. A method according to claim 282, wherein n 1 and in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the coding data further comprise a layer k integer rank associated with said layer k bitmap segment to represent the position of said subset in the layer k pattern, and wherein, for k n, the layer k intermediary list for an intermediary list corresponding to at least one first integer list represented by stored coding data is determined in a procedure comprising: initializing a layer k bitmap vector with logical zeroes; obtaining the layer k ranks from said stored coding data; and selecting any obtained layer k rank belonging to the layer k+1 result list and superimposing the associated layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by the selected layer k rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer k intermediary list corresponding to the resulting layer k bitmap vector.
284. A method according to claim 283, wherein, for 1 &Mt; the the layer k ranks and the layer k bitmap segments associated therewith are stored at corresponding addresses in distinct first and second files, and said procedure for determining the layer k intermediary list for an intermediary list corresponding to at least one first integer list represented by stored coding data -152- 00 OO O comprises: providing a rank table in a RAM memory, having records N associated with the addresses in said first and second files filling the rank s table by writing any selected layer k rank into the rank table record associated with the address of the selected layer k rank in said first file and for any 00 record of the filled rank table containing a layer k rank and associated with an address in the second file, reading the associated layer k bitmap segment at Ssaid address in the second file and superimposing the read layer k bitmap Ssegment onto a segment of said layer k bitmap vector having a position Sdetermined by said layer k rank. 00
285. A method according to claim 282, wherein n 1 and for any coding layer k such that 1 k n, a layer k'filtering list is determined for k n, said layer k'filtering list being the layer k'input list obtained by providing the layer k result list as an input list in layer k of the coding scheme, wherein, in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while a layer k integer rank associated with said layer k bitmap segment represents the position of said subset in the layer k pattern, and wherein, for k &It; n, the layer k intermediary list for an intermediary list corresponding to at least one first integer list represented by stored coding data is determined in a procedure comprising: /a/initializing a layer k bitmap vector with logical zeroes; /b/selecting the layer n ranks obtained from said stored coding data, and setting n; /c/for each selected layer k'rank: /cl/if the selected layer k'rank represents the position in the layer k' pattern of a subset which includes at least one integer of the layer k'filtering list, obtaining the layer k'bitmap segment with which the selected layer k'rank is associated; /c2/for any integer of the layer k'filtering list whose position within said subset is represented in said layer k'bitmap segment, selecting a respective layer k'-1 rank determined from the selected layer k'rank and said position represented in said layer k'bitmap segment; /c3/if k+1, executing step/c/with k'decremented by one unit; and /c4/if k'-1 k, obtaining any layer k bitmap segment with which a selected layer k'-1 rank is associated, and superimposing said layer k bitmap segment onto a segment of said layer k 00 -153- O bitmap vector having a position determined by said selected layer k'-1 rank, the N superimposition being performed according to a bitwise Boolean OR operation, Csaid layer k intermediary list corresponding to the resulting layer k bitmap Svector. 00oO (N
286. A method according to claim 285, wherein, for 1 k n, the layer k bitmap Csegments are stored in at least one layer k file at addresses respectively Scorresponding to the layer k ranks associated therewith, and said procedure for Cdetermining the layer k intermediary list for an intermediary list corresponding 00oo to at least one first integer list represented by stored coding data comprises providing a rank table in a RAM memory, having records associated with the addresses in said layer k file filling the rank table by writing any selected layer k rank into the rank table record associated with the address corresponding to the selected layer k rank; and for any record of the filled rank table containing a layer k rank and associated with an address in said layer k file, reading the associated layer k bitmap segment at said address and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said layer k rank.
287. A method according to any one of claims 279 to 284, wherein a coding data container comprising records having respective addresses is provided for each coding layer k zone for storing together together layer k coding data of a plurality of said first integer lists, and wherein each record of the coding data container for each layer includes a first field for storing a rank related to the pattern of said layer, a second field for storing an address value and a third field for storing a bitmap segment, whereby said address value either points to another record of the data container where further layer k coding data relating to the same first integer list are stored or designates an end of coding data.
288. A method according to claim 287, wherein the records stored in the data container for each coding layer k are so grouped that the records where the layer k coding data of any first integer list are stored have contiguous addresses. -154- 00 oo O 289. A method according to any one of claims 279 to 286, wherein the coding Sdata are stored in at least one file allocated to one first integer list.
290. A method according to claim 289, wherein the coding data of each layer 00oO are stored in first and second files having a common addressing, whereby for (N each subset containing at least one integer of the input list of said layer, the data representing the position of said subset in the pattern are stored in the first Cc file and the data representing the position of each integer of the input list within said subset are stored at a corresponding address in the second file. oo 00
0291. A method according to any one of claims 279 to 290, wherein the S 10 intermediary lists include at least one preset list, said preset list consisting of one of the first integer lists for which the layer k input lists, according to the coding scheme, are determined in advance for 1 &It; k &It; n, said layer k input lists being the respective layer k intermediary lists corresponding to said preset list.
292. A database system for managing information from a collection of data, comprising means arranged and programmed to implement a method as claimed in any one of claims 1 to 248.
293. A computer system, comprising means arranged and programmed to implement a method as claimed in any one of claims 249 to 291.
294. A computer program product, loadable into the internal memory of a digital computer, comprising software code portions for carrying out a method as claimed in any one of claims 1 to 291 when said product is run on the computer.
295. A method of encoding integer lists in a computer system, comprising the steps of: dividing a range covering integers of an input list into subsets according to a predetermined pattern, wherein the subsets are consecutive intervals consisting of the same number of integers; and producing coding data including, for each subset containing at least one integer of the input list, data representing the position of said subset in 00 -155- O the pattern, and data representing the position of each integer of the N input list within said subset.
296. A method according to claim 295, wherein the data representing the oo position of each integer of the input list within a subset consist of a bitmap segment in which each bit is associated with a respective integer of the subset 0to indicate whether said integer belongs to the input list. S297. The method of claim 296, wherein the position of each subset in the N pattern is represented by an integer rank which is included in the coding data, oo Oin association with the corresponding bitmap segment, if said subset contains 10 at least one integer of the input list.
298. A method according to claim 297, wherein a coding data container comprising records having respective addresses is provided for storing together coding data produced from a plurality of integer lists, wherein each record of the coding data container includes a first field for storing an integer rank related to the pattern, a second field for storing an address value and a third field for storing a bitmap segment, and wherein the encoding of a non-empty input list comprises the steps of: a/ selecting an available record of the coding data container; b/ selecting a subset containing at least one integer of the input list to which no record has been allocated; c/ allocating the selected record to the selected subset; d/ storing the rank and the bitmap segment of the coding data produced for the selected subset in the first and third fields of the selected record, respectively; e/ if every subset containing at least one integer of the input list has a record allocated thereto, storing an end value in the second field of the selected record; and f/ if at least one subset containing at least one integer of the input list has no record allocated thereto, storing the address of an available record of the coding data container in the second field of the selected record, selecting said available record and repeating from step b/. 0- 156- O 299. A method according to claim 298, wherein the coding data container N has a first file comprising the first and second fields of the records and a Ssecond file comprising the third fields of the records, the first and second files being accessible separately. 00 (N
300. A method according to claim 298 or 299, further comprising the step of grouping the records stored in the data container, so that the records allocated to the subsets for any encoded integer list have contiguous Saddresses. 00 O S301. A method according to any one of claims 295 to 298, wherein the S 10 coding data produced from one integer list are stored in at least one file allocated to said one integer list.
302. A method according to claim 301, wherein the coding data are stored in first and second files having a common addressing, whereby for each subset containing at least one integer of the input list, the data representing the position of said subset in the pattern are stored in the first file and the data representing the position of each integer of the input list within said subset are stored at a corresponding address in the second file.
303. A method according to claim 295, wherein said number of integers is a whole power of 2.
304. A method of encoding integer lists in a computer system, comprising n successive coding layers, n being a number at least equal to 1, wherein each coding layer comprises the steps of: dividing a range covering integers of an input list of said layer into subsets according to a predetermined pattern, wherein the subsets are consecutive intervals consisting of the same number of integers; producing coding data including, for each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last coding layer, data representing the position of said subset in the pattern; if said layer is not the last coding layer, forming a further integer list representing the position, in the pattern of said layer, of each subset 00 -157- containing at least one integer of the input list, and providing said further integer list as an input list of the next layer.
305. A method according to claim 304, wherein said number of integers is oo00 a whole power of 2 for each layer. (N
306. A method according to any one of claims 304 to 305, wherein the N coding data produced for each layer are stored in first and second files having N a common addressing, whereby for each subset containing at least one integer N of the input list of said layer, the data representing the position of said subset in 00 Othe pattern are stored in the first file and the data representing the position of each integer of the input list within said subset are stored at a corresponding address in the second file.
307. A method according to any one of claims 304 to 306 wherein the coding data produced from one integer list input in the first layer are stored in at least one file allocated to said one integer list.
308. A method according to any one of claims 304 to 307, wherein the coding data produced from one integer list input in the first layer are stored as at least one record chain in a data container allocated to a plurality of integer lists.
309. A method according to claim 308, further comprising the step of grouping the records of the data container so that the records of each chain have contiguous addresses.
310. A method according to any one of claims 304 to 309, wherein n 2 and layer k data containers each having a plurality of records are provided in a computer memory for 1 k n, each record of a layer k data container being associated with a layer k integer rank representing the position of a subset in the layer k pattern, and wherein each record of a layer k data container associated with a layer k rank representing the position of a subset in the layer k pattern has a first field for containing data for retrieving the position within said subset of any integer of a layer k input list relating to a layer 1 input list, whereby a combination of said layer k rank with any position retrievable from 00 -158- O the data contained in said first field determines a layer k-1 rank with which a Srespective record of the layer k-1 data container is associated if k 1, and an Cinteger of said layer 1 input list if k 1. 00 311. A method according to claim 310, wherein each record of the layer n (N data container associated with a layer n rank further has a second field for containing said layer n rank. \O N 312. A method according to claim 310 or 311, wherein, for 1 k 5 n, said N data contained in the first field of a record of the layer k data container for o00 Sretrieving the position of any integer of a layer k input list within a subset comprise a bitmap segment in which each bit is associated with a respective integer of said subset to indicate whether said integer belongs to said layer k input list.
313. A method according to claim 312, wherein, for 1 k n, each record of the layer k data container associated with a layer k rank further has a second field for containing said layer k rank.
314. A method according to claim 313, wherein each data container comprises at least two files where the first and second fields of the records of said data container are respectively stored, said files being accessible separately.
315. A method according to claim 310 or 311, wherein, for 1 k n, each record of the layer k data container further has a second field for containing a number representing the position of an integer of a layer k+l input list within a subset of the layer k+l pattern, and wherein, for 1 k n, said data contained in the first field of a record of the layer k data container associated with a layer k rank for retrieving the position of any integer of a layer k input list within a subset of the layer k pattern comprise a pointer to at least one record of the layer k-1 data container in which the second field contains a number representing the position of an integer of said layer k input list within said subset of the layer k pattern, whereby said record of the layer k-1 data container is associated with the layer 00 -159- O k-1 rank determined by the combination of said layer k rank with the position c represented by said number.
316. A method according to claim 315, wherein said data contained in the 00oO first field of a record of the layer 1 data container for retrieving the position of (N any integer of a layer 1 input list within a subset comprise a bitmap segment in 0which each bit is associated with a respective integer of said subset to indicate Cc whether said integer belongs to said layer 1 input list. c 317. A method according to claim 315 or 316, wherein each layer k data oO 00 Scontainer for 1 k n comprises at least two files where the first and second fields of the records of said data container are respectively stored, said files being accessible separately.
318. A method according to any one of claims 310 to 317, wherein, for 1 k n, each record of the layer k data container further has a next address field, whereby record chains are defined in the layer k data container by means of the next address fields, and wherein at least some of the layer 1 input lists are respectively associated with record chains in the layer n data container, whereby the coding data for layer n relating to one of said layer 1 input lists are stored in or retrievable from the record chain associated therewith in the layer n data container.
319. A method according to claim 318, wherein, for 1 k n, said layer 1 input lists are respectively associated with record chains in the layer k data container, whereby the coding data relating to one of said layer 1 input lists for layer k are stored in or retrievable from the record chain associated therewith in the layer k data container.
320. A method according to claim 318, wherein, for 1 k n, each record of the layer k data container further has a head address field for pointing to an address of a first record of a respective chain in the layer k-1 data container.
321. A method according to any one of claims 318 to 320, wherein each layer k data container for 1 k n comprises at least two files where the first 00 160- O fields and the next address fields of the records of said data container are Srespectively stored, said files being accessible separately.
322. A method according to any one of claims 318 to 321, further 00 comprising the step of grouping the records of the data container for each coding layer, so that the records of each chain have contiguous addresses.
323. A computerized method of combining a plurality of first integer lists N into a second integer list, wherein at least one of the first integer lists is N represented by stored coding data provided by a coding scheme comprising n O Osuccessive coding layers, n being a number at least equal to 1, each layer N 10 having a predetermined pattern for dividing a range covering integers of an input list of said layer into subsets, the subsets being consecutive intervals consisting of the same number of integers, said first integer list being the input list of the first layer, wherein for any layer other than the last layer, an integer list representing the position, in the pattern of said layer, of each subset containing at least one integer of the input list forms the input list for the next layer, wherein the stored coding data representing a first integer list comprise, for each layer and each subset containing at least one integer of the input list, data representing the position of each integer of the input list within said subset and, at least if said layer is the last layer, data representing the position of said subset in the pattern of said layer, the method comprising the steps of: defining a combination of intermediary lists each corresponding to at least one of the first integer lists; for k decreasing from n to 1, computing a layer k result list by combining a plurality of layer k intermediary lists in accordance with said combination; and producing the second integer list as the layer 1 result list, and wherein, for any intermediary list corresponding to at least one first integer list represented by stored coding data, the layer n intermediary list is determined from said stored coding data as consisting of the integers of any layer n input list associated with said at least one first integer list in the coding scheme and, if n 1, each layer k intermediary list for k n is determined from said stored coding data and the layer k+1 result list as consisting of any integer 00 -161- of a layer k input list associated with said at least one first integer list in the coding scheme which belongs to a layer k subset whose position is t represented in the layer k+1 result list. 00 324. A method according to claim 323, wherein said number of integers is a whole power of 2 for each layer. S325. A method according to any one of claims 323 to 324, wherein, in the Ncoding scheme, the coding data representing the position of each integer of an N input list within a subset for the coding layer n define a layer n bitmap segment OO Oin which each bit is associated with a respective integer of the subset to N 10 indicate whether said integer belongs to said input list, while the data representing the position of said subset in the layer n pattern comprise a layer n integer rank associated with said layer n bitmap segment, and wherein the layer n intermediary list for an intermediary list corresponding to at least one first integer list represented by stored coding data is determined in a procedure comprising: initializing a layer n bitmap vector with logical zeroes; obtaining the layer n ranks and associated bitmap segments from said stored coding data; and for each of said layer n ranks, superimposing the layer n bitmap segment associated therewith onto a segment of said layer n bitmap vector having a position determined by said layer n rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer n intermediary list corresponding to the resulting layer n bitmap vector.
326. A method according to claim 325, wherein n 1 and in the coding scheme, the coding data representing the position of each integer of an input list within a subset for a coding layer k n define a layer k bitmap segment in which each bit is associated with a respective integer of the subset to indicate whether said integer belongs to said input list, while the coding data further comprise a layer k integer rank associated with said layer k bitmap segment to represent the position of said subset in the layer k pattern, and wherein, for k n, the layer k intermediary list for an intermediary list corresponding to at 00 -162- O least one first integer list represented by stored coding data is determined in a C-I procedure comprising: initializing a layer k bitmap vector with logical zeroes; obtaining the layer k ranks from said stored coding data; and 00 C 5 selecting any obtained layer k rank belonging to the layer k+l result list and superimposing the associated layer k bitmap segment onto a Ssegment of said layer k bitmap vector having a position determined by the selected layer k rank, the superimposition being performed according N, to a bitwise Boolean OR operation, 00 said layer k intermediary list corresponding to the resulting layer k bitmap vector.
327. A method according to claim 326, wherein, for 1 k n, the layer k ranks and the layer k bitmap segments associated therewith are stored at corresponding addresses in distinct first and second files, and said procedure for determining the layer k intermediary list for an intermediary list corresponding to at least one first integer list represented by stored coding data comprises: providing a rank table in a RAM memory, having records associated with the addresses in said first and second files; filling the rank table by writing any selected layer k rank into the rank table record associated with the address of the selected layer k rank in said first file; and for any record of the filled rank table containing a layer k rank and associated with an address in the second file, reading the associated layer k bitmap segment at said address in the second file and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said layer k rank.
328. A method according to claim 325, wherein n 1 and for any coding layer k such that 1 k n, a layer k' filtering list is determined for k n, said layer k' filtering list being the layer k' input list obtained by providing the layer k result list as an input list in layer k of the coding scheme, 00 -163- 0 wherein, in the coding scheme, the coding data representing the Sposition of each integer of an input list within a subset for a coding layer k n Cdefine a layer k bitmap segment in which each bit is associated with a Srespective integer of the subset to indicate whether said integer belongs to said 00oo c 5 input list, while a layer k integer rank associated with said layer k bitmap segment represents the position of said subset in the layer k pattern, and Swherein, for k< n, the layer k intermediary list for an intermediary list Scorresponding to at least one first integer list represented by stored coding data Sis determined in a procedure comprising: 00oo /al initializing a layer k bitmap vector with logical zeroes; S/Ibl selecting the layer n ranks obtained from said stored coding data, and setting n; for each selected layer k' rank: /cl/ if the selected layer k' rank represents the position in the layer k' pattern of a subset which includes at least one integer of the layer k' filtering list, obtaining the layer k' bitmap segment with which the selected layer k' rank is associated; /c2/ for any integer of the layer k' filtering list whose position within said subset is represented in said layer k' bitmap segment, selecting a respective layer k'-I rank determined from the selected layer k' rank and said position represented in said layer k' bitmap segment; /c3/ if k' k+l, executing step with k' decremented by one unit; and /c4/ if k'-1 k, obtaining any layer k bitmap segment with which a selected layer k'-1 rank is associated, and superimposing said layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said selected layer k'-1 rank, the superimposition being performed according to a bitwise Boolean OR operation, said layer k intermediary list corresponding to the resulting layer k bitmap vector. 164 00 O 329. A method according to claim 328, wherein, for 1 k n, the layer k Sbitmap segments are stored in at least one layer k file at addresses C respectively corresponding to the layer k ranks associated therewith, and said procedure for determining the layer k intermediary list for an intermediary list 00 S 5 corresponding to at least one first integer list represented by stored coding data comprises: providing a rank table in a RAM memory, having records associated with (the addresses in said layer k file; S- filling the rank table by writing any selected layer k rank into the rank 00 table record associated with the address corresponding to the selected N layer k rank; and for any record of the filled rank table containing a layer k rank and associated with an address in said layer k file, reading the associated layer k bitmap segment at said address and superimposing the read layer k bitmap segment onto a segment of said layer k bitmap vector having a position determined by said layer k rank.
330. A method according to any one of claims 323 to 327, wherein a coding data container comprising records having respective addresses is provided for each coding layer k n, for storing together layer k coding data of a plurality of said first integer lists, and wherein each record of the coding data container for each layer includes a first field for storing a rank related to the pattern of said layer, a second field for storing an address value and a third field for storing a bitmap segment, whereby said address value either points to another record of the data container where further layer k coding data relating to the same first integer list are stored or designates an end of coding data.
331. A method according to claim 330, wherein the records stored in the data container for each coding layer k are so grouped that the records where the layer k coding data of any first integer list are stored have contiguous addresses.
332. A method according to any one of claims 323 to 330, wherein the coding data are stored in at least one file allocated to one first integer list. 00 -165- O 333. A method according to claim 332, wherein the coding data of each Slayer are stored in first and second files having a common addressing, whereby Ctfor each subset containing at least one integer of the input list of said layer, the E data representing the position of said subset in the pattern are stored in the first 00oo file and the data representing the position of each integer of the input list within said subset are stored at a corresponding address in the second file. NO c 334. A method according to any one of claims 323 to 333, wherein the intermediary lists include at least one preset list, said preset list consisting of oO one of the first integer lists for which the layer k input lists, according to the 0 10 coding scheme, are determined in advance for 1 k n, said layer k input lists being the respective layer k intermediary lists corresponding to said preset list.
335. A computer system, comprising means arranged and programmed to implement a method as claimed in any one of claims 295 to 334.
336. A computer program product, loadable into the internal memory of a digital computer, comprising software code portions for carrying out a method as claimed in any one of claims 295 to 334 when said product is run on the computer.
337. A method substantially as herein before described with reference to the accompanying Figures 9 through 72.
338. A computer program product or system substantially as herein before described with reference to the accompanying Figures 9 through 72.
AU2008202360A 2000-11-29 2008-05-28 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods Abandoned AU2008202360A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU2008202360A AU2008202360A1 (en) 2000-11-29 2008-05-28 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods

Applications Claiming Priority (7)

Application Number Priority Date Filing Date Title
EP00403332.0 2000-11-29
EP00403329.6 2000-11-29
EP00403330.4 2000-11-29
EP00403331.2 2000-11-29
AU2002232035A AU2002232035B2 (en) 2000-11-29 2001-11-29 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods
PCT/IB2001/002792 WO2002044943A2 (en) 2000-11-29 2001-11-29 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods
AU2008202360A AU2008202360A1 (en) 2000-11-29 2008-05-28 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
AU2002232035A Division AU2002232035B2 (en) 2000-11-29 2001-11-29 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods

Publications (1)

Publication Number Publication Date
AU2008202360A1 true AU2008202360A1 (en) 2008-06-19

Family

ID=39540291

Family Applications (1)

Application Number Title Priority Date Filing Date
AU2008202360A Abandoned AU2008202360A1 (en) 2000-11-29 2008-05-28 Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods

Country Status (1)

Country Link
AU (1) AU2008202360A1 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110807040A (en) * 2019-10-30 2020-02-18 北京达佳互联信息技术有限公司 Method, device, equipment and storage medium for managing data
CN120561129A (en) * 2025-08-05 2025-08-29 杭州悦数科技有限公司 A segmented aggregate hash table reading and writing method and system based on graph database

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110807040A (en) * 2019-10-30 2020-02-18 北京达佳互联信息技术有限公司 Method, device, equipment and storage medium for managing data
CN110807040B (en) * 2019-10-30 2023-03-24 北京达佳互联信息技术有限公司 Method, device, equipment and storage medium for managing data
CN120561129A (en) * 2025-08-05 2025-08-29 杭州悦数科技有限公司 A segmented aggregate hash table reading and writing method and system based on graph database
CN120561129B (en) * 2025-08-05 2025-10-17 杭州悦数科技有限公司 A segmented aggregate hash table reading and writing method and system based on graph database

Similar Documents

Publication Publication Date Title
US6564212B2 (en) Method of processing queries in a database system, and database system and software product for implementing such method
US6633883B2 (en) Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods
US6711563B1 (en) Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods
US7246124B2 (en) Methods of encoding and combining integer lists in a computer system, and computer software product for implementing such methods
Gyssens et al. Tables as a paradigm for querying and restructuring
US7171427B2 (en) Methods of navigating a cube that is implemented as a relational object
US6141655A (en) Method and apparatus for optimizing and structuring data by designing a cube forest data structure for hierarchically split cube forest template
US8868544B2 (en) Using relational structures to create and support a cube within a relational database system
JP2008269643A (en) Method of organizing data and of processing query in database system, and database system and software product for executing such method
US20030135495A1 (en) Database indexing method and apparatus
NZ543307A (en) A method of interrogating a database with an index and data where the index is a hierarchical structure of decision nodes
AU2002232035A1 (en) Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods
US10585871B2 (en) Database engine for mobile devices
Sabry Search Tree: Fundamentals and Applications
AU2008202360A1 (en) Methods of organizing data and processing queries in a database system, and database system and software product for implementing such methods
Karasalo et al. The Design of Cantor-A New System for Data Analysis.
Rae et al. In-rdbms inverted indexes revisited
NZ544471A (en) Method of encoding integer lists in a computer system
Zezula et al. Object store with navigation accelerator
Abel et al. Caching strategies for spatial joins
Celko Joe Celko's thinking in sets: Auxiliary, temporal, and virtual tables in SQL
US12536145B2 (en) Systems and methods for column store indices
Wellenzohn et al. Inserting keys into the robust content-and-structure (RCAS) index
US20230394017A1 (en) Systems and methods for column store indices
Schmidt et al. Basic components for building column store-based applications

Legal Events

Date Code Title Description
MK4 Application lapsed section 142(2)(d) - no continuation fee paid for the application