US20040143588A1 - Database model system and method - Google Patents

Database model system and method Download PDF

Info

Publication number
US20040143588A1
US20040143588A1 US10/749,067 US74906703A US2004143588A1 US 20040143588 A1 US20040143588 A1 US 20040143588A1 US 74906703 A US74906703 A US 74906703A US 2004143588 A1 US2004143588 A1 US 2004143588A1
Authority
US
United States
Prior art keywords
content
attributes
category
database
providing
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
US10/749,067
Inventor
Norman Russell
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.)
Individual
Original Assignee
Individual
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 US09/655,779 external-priority patent/US6687704B1/en
Application filed by Individual filed Critical Individual
Priority to US10/749,067 priority Critical patent/US20040143588A1/en
Publication of US20040143588A1 publication Critical patent/US20040143588A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G11INFORMATION STORAGE
    • G11CSTATIC STORES
    • G11C5/00Details of stores covered by group G11C11/00
    • G11C5/02Disposition of storage elements, e.g. in the form of a matrix array
    • G11C5/04Supports for storage elements, e.g. memory modules; Mounting or fixing of storage elements on such supports
    • GPHYSICS
    • G11INFORMATION STORAGE
    • G11CSTATIC STORES
    • G11C29/00Checking stores for correct operation ; Subsequent repair; Testing stores during standby or offline operation
    • G11C29/70Masking faults in memories by using spares or by reconfiguring
    • G11C29/88Masking faults in memories by using spares or by reconfiguring with partially good memories

Definitions

  • Appendices A-H which are part of the present disclosure as paper appendices and that will be converted to microfiche appendices prior to the issuance of a patent, are attached herewith and incorporated herein by reference in their entirety.
  • Appendix A contains technical architecture design definitions and data for implementing a database model system and method in accordance with an embodiment of the present invention as described more completely below.
  • Appendices B and D define data elements utilized for implementing the database model system and method of Appendix A.
  • Appendix C provides a table and index report and Appendix E provides a group definition report for implementing the database model system and method of Appendix A.
  • Appendix F provides a tools integration guide containing technical and functional descriptions of various tools and practices employed to implement the database model system and method of Appendix A.
  • Appendix G provides a design document for a dynamic HTML template interpreter for delivering content in accordance with the database model system and method of Appendix A.
  • Appendix H provides listings of computer programs and related data including the software source code for implementing a database model system and method in accordance with the database model system and method of Appendix A.
  • the present invention relates generally to computer systems and, more particularly, to data modeling.
  • Data models describe the organization of a database, which is generally a set of related files that are created and managed by a database management system.
  • the database is typically part of a computer system that stores a large quantity of data organized in a manner that facilitates efficient storage, search, and retrieval.
  • businesses tend to store and require access to large quantities of data relating to specific business matters such as pertaining to employees, customers, inventory, and finances.
  • a relational database is a common type of database model.
  • the relational database organizes the data in tables comprised of rows and columns, with each data element indexed by its particular row and column.
  • Each row represents an entity, which is a thing of significance about which the organization wishes to hold information concerning.
  • Each column in the corresponding row defines a characteristic or attribute of that entity, with certain columns possibly being designated as “keys” that uniquely identify each row.
  • Primary keys identify an indexed field that maintains the primary sequence of the file or table to access the row, while foreign keys identify a field in one table that is indexed in another table in order to relate or link the tables.
  • FIG. 1 illustrates a traditional data model table structure for an employee table 100 .
  • Employee table 100 is an exemplary table structure listing various attributes of an employee including identification (ID) such as a number, name, and salary.
  • ID identification
  • Employee table 100 could be used to create a relational database employee table, with each row corresponding to a certain employee. In such a case, the first column would correspond to the identification number, the next column would correspond to the name, and the final column would correspond to the salary.
  • the attributes (i.e., the columns) in an entity table are properties specific to an instance of that entity (i.e., the row).
  • a drawback of the traditional data model is that it may be difficult to add or change attributes.
  • companies differ from each other in terms such as products, services, scale, operating procedures, and organizational structures. Companies may also change internally due to changes such as restructuring, changing product lines, or ways of doing business. Consequently, all of the attributes may not be known, may not be well defined, or may change frequently over a certain period of time.
  • an attribute must be changed or a new attribute added to a table, then this value must be added to each one of the related records in the database and the change reflected in the related, corresponding tables. This process is time-consuming and labor intensive and requires database maintenance to change the structure of the database.
  • the present invention provides a database model system and method which offer a flexible and generic database design.
  • the present invention provides many advantages over traditional database modeling schemes and permits additions, deletions, or modifications of attributes of a table by adding, deleting, or modifying the data in an appropriate row and constructing the desired relationships. Consequently, database modifications require changes to the data rather than to the fundamental table definition and database schema.
  • the database model may be incorporated into a computer system, for example, to deliver web pages to users on a computer network.
  • a method of structuring a database comprises providing a data object table having a minimal set of attributes, an attribute table having attributes corresponding to the data object table, and a value table having values corresponding to the attributes.
  • a method of structuring a database comprising providing a category table, a content table containing content corresponding to categories in the category table, and a category contents table containing a mapping scheme that maps content contained in the content table to categories in the category table.
  • An attribute table containing attributes for an application utilizing the database and an attribute values table containing values corresponding to attributes in the attribute table are also provided.
  • a computer system comprising one or more server computers connected through a computer network and one or more computer programs executed by a server computer that manages data stored in a database having a structure in accordance with the embodiments described above.
  • FIG. 1 is a block diagram illustrating a traditional data model table structure.
  • FIG. 2 a is a block diagram illustrating an exemplary data model table structure, in accordance with some embodiments of the present invention.
  • FIG. 2 b is a block diagram illustrating an exemplary data model table structure for FIG. 2 a.
  • FIG. 3 a is a block diagram illustrating an exemplary generic database model table structure, in accordance with some embodiments of the present invention.
  • FIG. 3 b is a block diagram illustrating an exemplary relationship of category and content, in accordance with some embodiments of the present invention.
  • FIG. 3 c is a table illustrating a category hierarchy, in accordance with some embodiments of the present invention.
  • FIGS. 4 a - 41 are a block diagram illustrating a database′ model for an exemplary Internet publishing architecture, in accordance with some embodiments of the present invention.
  • FIG. 5 is a system block diagram for an exemplary network application utilizing the database model of FIG. 4.
  • FIG. 6 is an exemplary template for displaying content by utilizing the database model of FIG. 4.
  • FIG. 7 is a flowchart for an exemplary data model table structure, in accordance with some embodiments of the present invention.
  • FIG. 8 is a flowchart for an exemplary data model table structure, in accordance with some embodiments of the present invention.
  • FIG. 2 a shows a block diagram illustrating an exemplary data model table structure 200 , in accordance with some embodiments of the present invention.
  • Table structure 200 comprises an employees table 202 , an attributes table 204 , and an employee attributes table 206 .
  • Employees table 202 comprises attributes (i.e., columns) that are always required and are very unlikely to be changed.
  • employees table 202 includes employee identification (ID) and employee name as attributes that will be relatively permanent and remain significant.
  • Employees table 202 may be viewed as an entity table or a data object table.
  • Attributes table 204 comprises rows of properties about employees that may be required or desired.
  • attributes table 204 includes ID and name, with values for attribute “name” being such items as address and phone number.
  • Employee attributes table 206 comprises the values of the specified attributes for a specified employee.
  • Employee attributes table 206 may store the actual value for the address and phone number of each employee. The foreign keys in employee attributes table 206 determine the attribute for which each value is defined and the corresponding employee.
  • Various column identifiers or keys may also be employed.
  • the “#” symbol placed next to a column indicates that the column is the primary key for the table.
  • employees table 202 has one column, ID, which represents its primary key
  • employee attributes table 206 has two columns, EMPLOYEE_ID and ATTRIBUTE_ID, which combine to form its primary key.
  • the primary key may be viewed as an attribute (i.e., a column) or combination of attributes (i.e., columns) that can be utilized to uniquely identify a body of information (i.e., a record).
  • attribute i.e., a column
  • combination of attributes i.e., columns
  • the combination of EMPLOYEE_ID and ATTRIBUTE_ID may be used to uniquely identify every record of information in employee attributes table 206 .
  • the “*” symbol placed next to a column indicates the column is mandatory for every record of information in the specified table.
  • employees table 202 has a “*” symbol associated with columns ID and NAME, because both columns are mandatory for every record in employees table 202 .
  • Other column identifiers may also be employed to indicate, for example, columns that are optional.
  • Table structure 200 is an example of a database architecture in accordance with an embodiment of the present invention.
  • Table structure 200 differs from the traditional data model table structure, as exemplified in employee table 100 and described in reference to FIG. 1, by providing a generic data model for employee information.
  • Table structure 200 in comparison to employee table 100 could be viewed as rotating the entities or tables of the traditional data model on their side and providing attributes and attribute values of an entity in a separate table.
  • the attribute columns in a traditional data model become rows in an attribute table in accordance with some embodiments of the present invention consequently, the addition, deletion, or modification of attributes does not require a database schema change.
  • FIG. 2 b is a block diagram illustrating an exemplary data model table structure 250 for FIG. 2 a .
  • table structure 250 comprises exemplary data for table structure 200 of FIG. 2 a .
  • Table structure 250 comprises employees table 252 , attributes table 254 , and employee attributes 256 .
  • Employees table 252 includes attributes such as, for example, ID and name, with rows corresponding to specific instances of those attributes. For example, the rows may include IDs 10 , 20 , and 30 , corresponding to Names Joe, Peter, and Sue, which are employees.
  • Attributes table 254 includes values for attribute Name such as, for example, telephone, address, and age, with corresponding attribute ID values 100 , 110 , and 120 .
  • Employee attributes table 256 includes the values of the specified attributes for a specified employee.
  • column headings may include Employee ID (EMP_ID), attribute ID (ATTRIB_ID), and Value, with the rows corresponding to specific instances of these column headings.
  • EMP_ID has rows 10 , 10 , 20 , and 30
  • attribute ID has rows 100 , 120 , 120 , 110
  • Value has rows containing values for a telephone number ((123) 123-1234), age (30), age (45), and address (123 Main St., City, State).
  • the first row identifies.
  • Joe (Employee ID of 10, known through Employees table 252 ) and stores the value of his telephone number, which is identified as a telephone number through Attributes table 254 .
  • the same analysis may be performed for the other exemplary rows.
  • Table structure 250 illustrates the generic nature of the data model, in accordance with some embodiments of the present invention.
  • the addition, deletion, or modification of attributes does not require a database schema change. For example, if data regarding the drivers license for employee Sue (Employee ID 30) needs to be incorporated into table structure 250 , no additional columns are required. Instead, attributes table 254 would be modified to include another row (e.g., ID of 140 and Name of Drivers License) and Employee attributes table 256 would be modified to include another row (e.g., Employee ID of 30, Attribute ID of 140, and Value of A123, with A123 being the value of Sue's-drivers license number). Thus, many different changes may be made that only require changes to the data rather than to the database structure and table definitions.
  • FIG. 3 a is a block diagram illustrating an exemplary generic database model table structure 300 , in accordance with some embodiments of the present invention.
  • Table structure 300 comprises an attribute values table 302 , an attributes table 304 , a category contents table 310 , a categories table 312 , a content table 314 , and a category relationships table 316 .
  • the basic table components of this exemplary generic database model comprise content, categories, and attributes, which are linked together and provide attributes and content for a given entity in separate tables.
  • Categories table 312 comprises a table of categories for the subject matter of table structure 300 .
  • categories may consist of a company's business structure or product line, which may be viewed as structured data.
  • Category relationships table 316 describes how categories relate to each other along with corresponding relationship rules.
  • Content table 314 contains any content necessary to describe or support a category.
  • such content may include text documents, images, videos, or sounds and include unstructured data.
  • FIG. 3 b is a block diagram 330 illustrating an exemplary relationship of category and content, in accordance with some embodiments of the present invention.
  • Block diagram 330 comprises a number of category items 332 , 334 , 336 , 338 , and 340 and a number of content items 342 , 344 , 346 , 348 , and 350 , with the arrows showing the direction and linking of one to the other.
  • category item 332 is linked to category 334 and to category 336 .
  • Category 336 is linked to content 1 342 , which contains the category content for category 336 .
  • block diagram 330 defines the relationship of category (e.g., structured data) to content (e.g., unstructured data).
  • Category contents table 310 comprises a mapping scheme that maps a piece of content from content table 314 to its place in the category index corresponding to categories table 312 .
  • a document that describes how to ensure a telephone line is properly installed into a facsimile machine may appear in the following product hierarchy position Facsimile product X—installation and configuration—connecting telephone line.
  • FIG. 3 c is a table 380 illustrating a product hierarchy, in accordance with some embodiments of the present invention.
  • Table 380 illustrates an exemplary category hierarchy (e.g., product hierarchy) that shows how categories may be arranged in a hierarchy.
  • category types may include a product family, product series, product name, and the final content.
  • printers for product family there may be many different categories such as printers, copy machines, computers, and facsimile machines. If the printers category (e.g., DeskJet printers) is selected, then a selection may be made from the product series (e.g., 2000 series or 3000 series). The product name for a particular type (e.g., 2001 or 2002) of series printer is selected next, and finally, the particular content (e.g., document 1 or document 2) desired is obtained.
  • the printers category e.g., DeskJet printers
  • product series e.g., 2000 series or 3000 series
  • the product name for a particular type (e.g., 2001 or 2002) of series printer is selected next, and finally, the particular content (e.g., document 1 or document 2) desired is obtained.
  • attributes table 304 describes all attributes defined for a given application utilizing table structure 300 .
  • the attributes may be further defined in terms of areas of a given application that may be referenced in table structure 300 . For example, certain areas that may be referenced are “content” and “categories.”
  • the attributes can also be defined for the areas of the application that are designated. For example, attributes may be access control lists, operating system, or language.
  • the area of a given application utilizing table structure 300 that is allowed to use a certain attribute may also be defined.
  • the attribute language may apply to all areas including content and categories defined by their corresponding tables.
  • Attribute values table 302 is linked to attributes table 304 , category contents table 310 , categories table 312 , and content table 314 . Attributes table 304 may be used to identify what attribute belongs to what area of the application. Attribute values table 302 comprises values assigned to an attribute specified through one of the related tables via foreign keys.
  • a new type of data may be represented as an attribute using attributes table 304 or as a category relating to another category using categories table 312 . If more than one piece of information needs to be recorded about the new type of data being added, then a category should be created.
  • a product may have warranty information accessible through a network hypertext link. Associated with the warranty navigation link is a number of warranty documents. Because of the additional information needed for the warranty (i.e., the warranty documents), making an attribute identifying the product as having warranty information is not appropriate. Making warranty a category and relating it to the product would be the preferred choice.
  • an attribute would suffice. For example, a product ID is associated with a product. Because no additional information is necessary concerning the product ID, making it an attribute related to the product is the preferred choice.
  • table structure 300 illustrates a generic and flexible database model that is an extension of the principles illustrated in exemplary table structure 200 described in detail in reference to FIG. 2 a .
  • Table structure 300 provides, for example, categories to be changed and content to be revised simply by making the changes to the appropriate row in categories table 312 and content table 314 , respectively.
  • the principles of the present invention permit additions or modifications of attributes of a table simply by adding or modifying the data in an appropriate row and constructing the desired relationships consequently, database modifications require changes to the data rather than to the table definition and database schema.
  • This database model architecture is flexible and extensible and allows for enhancements, changes, and additions to the data stored in the database.
  • This data may include product information, product navigation, support documents, images, video or sound data, or any other items of interest.
  • the principles of the present invention may be applied to any type of data or structure that may be modeled by a data base model, and is not limited to products or other embodiments discussed herein.
  • FIG. 4 is a block diagram illustrating a database model 400 for an exemplary Internet publishing architecture (IPA) in accordance with some embodiments of the present invention.
  • Database model 400 incorporates the principles of the present invention to provide a content delivery system (CDS) that displays information in the form of, for example, an Internet web page.
  • CDS content delivery system
  • Database model 400 comprises an attribute values (CDS_ATTRIBUTE_VALUES) table 402 , a category contents (CDS_CATEGORY_CONTENTS) table 404 , a presentation methods (CDS_PRESENTATION_METHODS) table 406 , a content relationships (CDS_CONTENT_RELATIONSHIPS) table 408 , a parameter values (CDS_PARAMETER_VALUES) table 410 , a templates (CDS_TEMPLATES) table 412 , a category relationships (CDS_CATEGORY_RELATIONSHIPS) table 414 , a content relationship types (CDS_CONTENT_RLTNSHP_TYPES) table 416 , a parameter names (CDS_PARAMETER_NAMES) table 418 , a template types (CDS_TEMPLATE_TYPES) table 420 , a category relationship rules (CDS_CATEGORY_RLTNSHP_RULES) table 422 , a content values
  • the various tables of database model 400 are linked using the notation of a solid line meaning mandatory, a dashed line meaning optional, one line branching out meaning one-to-many, many lines joining to one meaning many-to-one, and an arc linking several lines meaning a logical exclusive OR relationship.
  • the links are further labeled based on their origin and destination within database model 400 .
  • the tables shown in database model 400 list exemplary data such as attributes and keys for each respective table.
  • Various icons indicate columns that correspond to the primary or foreign key along with mandatory or optional data.
  • Appendices B and D provide details and definitions for all of the data elements, but a brief description of the tables is provided below.
  • Category types table 444 describes the type of category such as a generic name or class (e.g., an object class) of a category.
  • category types are product number (e.g., product ID or SKU), product name, product series, product line, product family, and product category.
  • Categories table 430 and category types table 444 are used because not all products follow the same traditional hierarchy of product categorization. This provides flexibility in modeling hierarchies having a different number of hierarchical levels. In more general terms, HP products fit into a network or hierarchical model with categories table 430 , category relationships table 414 , category types table 444 , and category relationship rules table 422 forming this network model.
  • Categories table 430 contains a physical tangible product list, category of products, or subject area′ of a product for a company (e.g., Hewlett Packard (HP)).
  • a product family is HP DeskJet printers or HP DeskJet 600 series printers
  • a product name is HP DeskJet 694C printer
  • a subject area i.e., a category type
  • a product, category, and subject categorization is described by its relationship to category types table 444 .
  • Category relationships table 414 describes how two or more product/subject categories are related and the relationship rule of the related product/subject category, with product/subject categories defined by the product hierarchy or, generally, a product network. For example, there may be four product/subject categories described in the product network as shown below.
  • Category relationships table 414 would record the fact that ID 4 is related to ID 3, ID 3 is related to ID 2, and ID 2 is related to ID 1(see also description in reference to FIG. 3 c for another exemplary hierarchical relationship).
  • Category relationships rule table 422 describes the rules for how category types can be related.
  • a rule may be restricted to a previously defined category and define whether the relationship can occur only once or repeatedly for two nodes. For example, product series nodes are related to product name nodes and product name nodes are related to product number nodes. An example where the relationship to category would be useful would be a rule such as product number nodes are related to product name nodes. This relationship is phrased in the opposite direction than the prior example. Thus, there is a many-to-many relationship between product names and product numbers. However, the relationship between product numbers and product names is only applicable to certain products. Thus, to prevent the use of product number related to product name rule, the rule is restricted to a specified category.
  • Category pre-defined values table 436 describes re-defined categories, with one or more pre-defined categories permitted for a given category type. For example, for “Help” subject area, which is a specific instance in categories table 430 , category there may be pre-defined values of “show me how,” “troubleshooting,” and “install and configure.”
  • Content types table 438 describes the type of content stored by contents table 432 .
  • a text document, an image, and a manual would be type classified as .doc, GIF, and .PDF, respectively.
  • Contents table 432 comprises any content that describes or supports a product, category, or subject, with the actual content located in content values table 424 .
  • content table 432 defines a placeholder for the content but does not actually store the content.
  • contents table 432 may include documents, images, lists, spreadsheets, drawings, manuals, video, or audio.
  • Content properties such as name or description are represented in the relationship of content table 432 to attribute values table 402 .
  • Content is classified into the appropriate product, category, and/or subject categories by the relationship of contents table 432 to category contents table 404 .
  • Content relationships table 408 describes the relationship among contents.
  • a document may be comprised of multiple pieces of content (i.e., chunked), which may include images or common paragraphs shared by other documents.
  • Content relationship types table 416 defines how or why content is related to another piece of content.
  • content may be converted from existing content (e.g., text document converted to HTML). This type may be defined as converted.
  • Another example would be a logo that is associated with several pieces of content (e.g., HP logo used in various documents). This type may be defined as chunked.
  • Category contents table 404 maps a piece of content to its proper location or locations in the category (e.g., product or subject) index and defines relationships between categories and content. For example, a document that describes how to ensure that a telephone line is properly inserted into a facsimile machine may be located in various product hierarchy locations such as shown below (see also description in reference to FIG. 3 c . for an exemplary hierarchical relationship). Fax product or Fax product troubleshooting install and configure faxing connecting telephone line. sending no dial tone;
  • Parameter names table 418 defines the name of a parameter based on a specified parameter type and may also be defined for a specified language.
  • Application parameter types table 426 is used to group parameter types such as hypertext markup language (HTML) errors, HTML constants, and system constants.
  • Parameter values table 410 defines a value for the parameter that is named by parameter names table 418 . Examples of parameter names and values are shown below. Name Value CDS-0001 Web page not found CDS-0002 SQL error Time-out value 45 minutes
  • Application areas table 440 is used to define areas (e.g., content, categories, templates, or template methods) of an application utilizing database model 400 that may be referenced by database model 400 .
  • Attributes table 442 describes the attributes, within the limits set forth in application areas table 440 , that can be defined for an application utilizing database model 400 .
  • attributes may include access control lists, display, language, release date, and author.
  • Attribute areas table 434 defines the area of an application utilizing database model 400 that is allowed to use each attribute. For example, a language attribute would apply to areas including content, categories, and templates, while an operating system attribute would apply only to the content area.
  • Attribute pre-defined value table 428 holds all pre-defined enumerated values for a specified attribute, because an attribute or attribute area may have one or more values pre-defined in an enumerated list.
  • Attribute values table 402 contains values assigned to the attributes specified for the related tables via a foreign key.
  • a value is assigned to the attribute and specified as either a category, category type, content, content type, category content, parameter name, or template.
  • the value may come from a pre-defined list (i.e., attribute pre-defined value table 428 ) or be user-defined (one of the value attributes).
  • Various database rules may be required regarding attribute values (e.g., see Appendix B).
  • the content for database model 400 may be displayed using templates to construct the web pages.
  • the templates are generated and represent the intended layout of a desired page type.
  • the dynamic content of the page is identified and substituted by CDS specific tags which allow access to the database and provide control mechanisms.
  • the HTML generator finds these specific tags and replaces them with content from the database. Appendix G provides further details of the dynamic HTML template interpreter.
  • Template types table 420 defines a category for a presentation template. Examples of template types are content template, category template, standard error template, and navigation template. Templates table 412 defines the template (i.e., name of the template and the template source) that is used to define how content and product/subject categories are presented. For example, when a product category/index or a product content (e.g., documents) is presented on the World Wide Web (WWW), a template is used to define how this information is formatted for presentation and may also be used to define what information is presented.
  • WWW World Wide Web
  • Presentation methods table 406 defines the template(s) used to display a piece of content or category.
  • a piece of content or category may have many templates defined for it, but based on pre-defined criteria, only one of the templates will be used to present the content or category.
  • Attributes associated with the presentation method are used to resolve the ambiguity as to what template to use when presenting a content or a category that has two or more templates. For example, a support document for changing a toner cartridge may be presented a certain way for commercial users and in a different way for home users. Therefore, a presentation template must be associated to the content for each presentation method.
  • the presentation method used for a template (e.g., commercial or home user) can be determined by the relationship of the presentation methods table 406 to attribute values table 402 . Presentation methods may have any number of pre-defined attributes associated with them.
  • FIG. 5 is a block diagram of a computer system 500 for an exemplary network application utilizing the database model of FIG. 4.
  • Computer system 500 comprises a plurality of user terminals 502 that access a web server 506 through a network 504 , such as the Internet.
  • a firewall 508 provides security and isolation through which web server 506 communicates with a database server 510 .
  • Database server 510 is connected to a database 512 utilizing database model 400 .
  • Database server 510 is also connected to one or more administrator terminals 514 and various other computers 516 , 518 , 520 that may comprise servers or computer systems that provide various services or information for database server 510 .
  • a user may access various content or information by utilizing user terminal 502 , which may include a desktop computer, a laptop computer, a personal digital assistant, or a telephone such as a cellular telephone with a display.
  • user terminal 502 may employ a web browser to communicate through network 504 .
  • Web server 506 comprises an HP-UX 11 operating system, an Oracle application server 4.0, an Oracle application server's spyglass listener for use as the web listener, and Net 8 for communication with database 512 .
  • the Oracle application server is responsible for spawning off server applications to support the Internet publishing architecture application, such as an HTML template interpreter that communicates with database 512 using Net 8.
  • the template interpreter is a cartridge of the Oracle application server and is responsible for preparing and presenting content to users, typically by the use of templates, as described in greater detail below in reference to FIG. 6. Also, note that the names Oracle and HP, along with various related products listed herein, are registered Trademarks of Oracle Corporation of Redwood Shores, Calif., and Hewlett Packard of Palo Alto, Calif., respectively.
  • Database server 510 hosts an HP-UX 11 operating system, an Oracle 8.0.5 database management system, and Net 8.0 for communication with server 506 (e.g., Web Server and Oracle Application Server) through firewall 508 .
  • server 506 e.g., Web Server and Oracle Application Server
  • One or more administrator terminals 514 allow for the maintenance of the product and navigation information along with other components of computer system 500 .
  • Computer 516 provides new or updated content and computer 518 uses an application such as DeltaLoader to extract the content from computer 516 and load the information into database 512 through database server 510 .
  • Computer system 500 may also use one or more remote terminals such as computer 520 to provide required product information such as product name, series, family, and ID.
  • remote terminals such as computer 520 to provide required product information such as product name, series, family, and ID.
  • Data maintained in database 512 includes templates, structured data, and unstructured data.
  • a template will be required to display data (e.g., structured or unstructured) to a user.
  • FIG. 6 is an exemplary template 600 for displaying content by utilizing the database model of FIG. 4. Template 600 illustrates the principle of nesting templates within templates so that templates can be designed with modularity and re-use in mind.
  • Template 600 comprises a top banner template 602 , a navigation template 604 , a bottom banner template 606 , along with content 608 .
  • Top banner template 602 displays top banner content including the HP logo.
  • Navigation template 604 displays navigation content, while bottom banner template 606 displays bottom banner content.
  • Content 608 displays the content for template 600 , which in this case is an exemplary support document on print quality troubleshooting.
  • the exemplary Internet publishing architecture utilizing computer system 500 and the data and table structure of database model 400 , may serve all content and navigation pages dynamically through the use of templates to provide web pages with the requested content to a user through the network.
  • the requests may also be directed to static/dynamic HTML pages or to images or other multi-media items such as portable document format (PDF) files.
  • PDF portable document format
  • FIG. 7 is a flowchart 700 for an exemplary data model table structure, in accordance with some embodiments of the present invention.
  • Flowchart 700 provides the basic steps for creating a database model that provides a basic, generic structure of exemplary table structure 200 of FIG. 2 a .
  • Step 702 creates a data objects table that includes attributes that generally are unlikely to be changed and specific instances of these attributes.
  • Step 704 creates an attributes table that includes properties regarding attributes in the data objects table of step 702 .
  • Step 706 creates an attributes value table that includes the actual values of the properties for the specified attributes corresponding to certain specific instances of the attributes. Therefore, flowchart 700 provides a generic, flexible, and expandable database model applicable to many types of database applications.
  • FIG. 8 is a flowchart 800 for an exemplary data model table structure, in accordance with some embodiments of the present invention.
  • Flowchart 800 provides the basic steps for creating a database model that provides a basic, generic structure of exemplary table structure 300 of FIG. 3 a .
  • Step 802 creates a categories table that includes categories for the subject matter of the database.
  • Step 804 creates a contents table that contains any content necessary to describe or support a category in the categories table of step 802 .
  • Step 806 creates a category contents table that provides a mapping scheme that maps a portion of content from the contents table of step 804 to its place in the category index corresponding to the categories table of step 802 .
  • Step 808 creates an attributes table that includes all attributes defined for the database.
  • Step 810 creates an attributes values table that includes values assigned to an attribute specified through one of the related tables of flowchart 800 .
  • Step 812 creates a category relationships table 812 , which may be optional, that describes how categories relate to each other along with corresponding relationship rules. Therefore, flowchart 800 provides a generic, flexible, and expandable database model applicable to many types of database applications.
  • the database model system and method in accordance with an embodiment of the present invention provides many advantages over traditional database modeling schemes.
  • the database model system and method provides flexibility and the ability to change or modify aspects of the data model by the modification of data rather than through fundamental data model schema changes.
  • the database model may be incorporated into a computer system, for example, to deliver web pages to users on the computer network (e.g., WWW users on the Internet).
  • these web pages may be product pages, navigation pages, or pages with support documents, with requests made by users via a uniform resource locator (URL) using a hypertext transfer protocol (HTTP).
  • URL uniform resource locator
  • HTTP hypertext transfer protocol

Abstract

A database model system and method are provided that permit changes to the data model, such as the addition, deletion, or modification of attributes, through changes to the data rather than to the fundamental data model schema. A method of structuring a database comprises providing a category table, a content table containing content corresponding to categories in the category table, and a category contents table containing a mapping scheme that maps content contained in the content table to categories in the category table. An attributes table containing attributes for an application utilizing the database and an attributes values table containing values corresponding to attributes in the attributes table are also provided.

Description

    CROSS-REFERENCE TO RELATED APPLICATION
  • This application claims the benefit of the filing date of Provisional application Ser. No. ______ (Attorney Docket 10003891-1, P-9250 US), filed on August 31, 2000.[0001]
  • CROSS-REFERENCE TO THE ATTACHED APPENDICES
  • Appendices A-H, which are part of the present disclosure as paper appendices and that will be converted to microfiche appendices prior to the issuance of a patent, are attached herewith and incorporated herein by reference in their entirety. Appendix A contains technical architecture design definitions and data for implementing a database model system and method in accordance with an embodiment of the present invention as described more completely below. Appendices B and D define data elements utilized for implementing the database model system and method of Appendix A. Appendix C provides a table and index report and Appendix E provides a group definition report for implementing the database model system and method of Appendix A. Appendix F provides a tools integration guide containing technical and functional descriptions of various tools and practices employed to implement the database model system and method of Appendix A. Appendix G provides a design document for a dynamic HTML template interpreter for delivering content in accordance with the database model system and method of Appendix A. Appendix H provides listings of computer programs and related data including the software source code for implementing a database model system and method in accordance with the database model system and method of Appendix A. [0002]
  • A portion of the disclosure of this patent document contains material that is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office patent files or records, but otherwise reserves all copyright rights whatsoever. [0003]
  • BACKGROUND OF THE INVENTION
  • 1. Field of the Invention [0004]
  • The present invention relates generally to computer systems and, more particularly, to data modeling. [0005]
  • 2. Related Art [0006]
  • Data models describe the organization of a database, which is generally a set of related files that are created and managed by a database management system. The database is typically part of a computer system that stores a large quantity of data organized in a manner that facilitates efficient storage, search, and retrieval. For example, businesses tend to store and require access to large quantities of data relating to specific business matters such as pertaining to employees, customers, inventory, and finances. [0007]
  • A relational database is a common type of database model. The relational database organizes the data in tables comprised of rows and columns, with each data element indexed by its particular row and column. Each row represents an entity, which is a thing of significance about which the organization wishes to hold information concerning. Each column in the corresponding row defines a characteristic or attribute of that entity, with certain columns possibly being designated as “keys” that uniquely identify each row. Primary keys identify an indexed field that maintains the primary sequence of the file or table to access the row, while foreign keys identify a field in one table that is indexed in another table in order to relate or link the tables. [0008]
  • FIG. 1 illustrates a traditional data model table structure for an employee table [0009] 100. Employee table 100 is an exemplary table structure listing various attributes of an employee including identification (ID) such as a number, name, and salary. Employee table 100, for example, could be used to create a relational database employee table, with each row corresponding to a certain employee. In such a case, the first column would correspond to the identification number, the next column would correspond to the name, and the final column would correspond to the salary. Thus, the attributes (i.e., the columns) in an entity table are properties specific to an instance of that entity (i.e., the row).
  • A drawback of the traditional data model is that it may be difficult to add or change attributes. For example, companies differ from each other in terms such as products, services, scale, operating procedures, and organizational structures. Companies may also change internally due to changes such as restructuring, changing product lines, or ways of doing business. Consequently, all of the attributes may not be known, may not be well defined, or may change frequently over a certain period of time. In a complex, inter-related traditional data model, if an attribute must be changed or a new attribute added to a table, then this value must be added to each one of the related records in the database and the change reflected in the related, corresponding tables. This process is time-consuming and labor intensive and requires database maintenance to change the structure of the database. [0010]
  • As a result, there is a need for a database model that offers a flexible and generic database design. [0011]
  • SUMMARY OF THE INVENTION
  • The present invention provides a database model system and method which offer a flexible and generic database design. The present invention provides many advantages over traditional database modeling schemes and permits additions, deletions, or modifications of attributes of a table by adding, deleting, or modifying the data in an appropriate row and constructing the desired relationships. Consequently, database modifications require changes to the data rather than to the fundamental table definition and database schema. The database model may be incorporated into a computer system, for example, to deliver web pages to users on a computer network. [0012]
  • In accordance with some embodiments of the present invention., a method of structuring a database comprises providing a data object table having a minimal set of attributes, an attribute table having attributes corresponding to the data object table, and a value table having values corresponding to the attributes. [0013]
  • In accordance with other embodiments of the present invention, a method of structuring a database is provided comprising providing a category table, a content table containing content corresponding to categories in the category table, and a category contents table containing a mapping scheme that maps content contained in the content table to categories in the category table. An attribute table containing attributes for an application utilizing the database and an attribute values table containing values corresponding to attributes in the attribute table are also provided. [0014]
  • In accordance with yet other embodiments of the present invention, a computer system is provided comprising one or more server computers connected through a computer network and one or more computer programs executed by a server computer that manages data stored in a database having a structure in accordance with the embodiments described above. [0015]
  • A more complete understanding of the database model system and method will be afforded to those skilled in the art, as well as a realization of additional advantages thereof, by a consideration of the following detailed description of one or more embodiments. Reference will be made to the appended sheets of drawings that will first be described briefly.[0016]
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a block diagram illustrating a traditional data model table structure. [0017]
  • FIG. 2[0018] a is a block diagram illustrating an exemplary data model table structure, in accordance with some embodiments of the present invention.
  • FIG. 2[0019] b is a block diagram illustrating an exemplary data model table structure for FIG. 2a.
  • FIG. 3[0020] a is a block diagram illustrating an exemplary generic database model table structure, in accordance with some embodiments of the present invention.
  • FIG. 3[0021] b is a block diagram illustrating an exemplary relationship of category and content, in accordance with some embodiments of the present invention.
  • FIG. 3[0022] c is a table illustrating a category hierarchy, in accordance with some embodiments of the present invention.
  • FIGS. 4[0023] a-41 are a block diagram illustrating a database′ model for an exemplary Internet publishing architecture, in accordance with some embodiments of the present invention.
  • FIG. 5 is a system block diagram for an exemplary network application utilizing the database model of FIG. 4. [0024]
  • FIG. 6 is an exemplary template for displaying content by utilizing the database model of FIG. 4. [0025]
  • FIG. 7 is a flowchart for an exemplary data model table structure, in accordance with some embodiments of the present invention. [0026]
  • FIG. 8 is a flowchart for an exemplary data model table structure, in accordance with some embodiments of the present invention.[0027]
  • DETAILED DESCRIPTION OF THE INVENTION
  • FIG. 2[0028] a shows a block diagram illustrating an exemplary data model table structure 200, in accordance with some embodiments of the present invention. Table structure 200 comprises an employees table 202, an attributes table 204, and an employee attributes table 206.
  • Employees table [0029] 202 comprises attributes (i.e., columns) that are always required and are very unlikely to be changed. For example, employees table 202 includes employee identification (ID) and employee name as attributes that will be relatively permanent and remain significant. Employees table 202 may be viewed as an entity table or a data object table. Attributes table 204 comprises rows of properties about employees that may be required or desired. For example, attributes table 204 includes ID and name, with values for attribute “name” being such items as address and phone number. Employee attributes table 206 comprises the values of the specified attributes for a specified employee. Employee attributes table 206, for instance, may store the actual value for the address and phone number of each employee. The foreign keys in employee attributes table 206 determine the attribute for which each value is defined and the corresponding employee.
  • Various column identifiers or keys may also be employed. For example, the “#” symbol placed next to a column indicates that the column is the primary key for the table. In [0030] table structure 200, as an example, employees table 202 has one column, ID, which represents its primary key, while employee attributes table 206 has two columns, EMPLOYEE_ID and ATTRIBUTE_ID, which combine to form its primary key.
  • The primary key may be viewed as an attribute (i.e., a column) or combination of attributes (i.e., columns) that can be utilized to uniquely identify a body of information (i.e., a record). For example, the combination of EMPLOYEE_ID and ATTRIBUTE_ID may be used to uniquely identify every record of information in employee attributes table [0031] 206.
  • Furthermore, the “*” symbol placed next to a column indicates the column is mandatory for every record of information in the specified table. For example, employees table [0032] 202 has a “*” symbol associated with columns ID and NAME, because both columns are mandatory for every record in employees table 202. This implies that, for this exemplary table, every employee entered into employees table 202 must have a name and every record must have a primary key associated with it to uniquely identify that record of information. Other column identifiers may also be employed to indicate, for example, columns that are optional.
  • [0033] Table structure 200 is an example of a database architecture in accordance with an embodiment of the present invention. Table structure 200 differs from the traditional data model table structure, as exemplified in employee table 100 and described in reference to FIG. 1, by providing a generic data model for employee information. Table structure 200 in comparison to employee table 100 could be viewed as rotating the entities or tables of the traditional data model on their side and providing attributes and attribute values of an entity in a separate table. The attribute columns in a traditional data model become rows in an attribute table in accordance with some embodiments of the present invention consequently, the addition, deletion, or modification of attributes does not require a database schema change. Instead, the addition of an attribute such as salary in table structure 200 only requires adding another row to attributes table 204 with the salary value (associated to a specific employee through a foreign key) contained in employee attributes table 206. This change requires changes to the data rather than to the database structure and table definitions. Thus, it should be understood that the database model system and method of the present invention is generic and applicable to a wide range of database model applications and may employ metadata in the various tables.
  • FIG. 2[0034] b is a block diagram illustrating an exemplary data model table structure 250 for FIG. 2a. As shown, table structure 250 comprises exemplary data for table structure 200 of FIG. 2a. Table structure 250 comprises employees table 252, attributes table 254, and employee attributes 256. Employees table 252 includes attributes such as, for example, ID and name, with rows corresponding to specific instances of those attributes. For example, the rows may include IDs 10, 20, and 30, corresponding to Names Joe, Peter, and Sue, which are employees. Attributes table 254 includes values for attribute Name such as, for example, telephone, address, and age, with corresponding attribute ID values 100, 110, and 120.
  • Employee attributes table [0035] 256 includes the values of the specified attributes for a specified employee.
  • For example, column headings may include Employee ID (EMP_ID), attribute ID (ATTRIB_ID), and Value, with the rows corresponding to specific instances of these column headings. As an example, Employee ID has [0036] rows 10, 10, 20, and 30, attribute ID has rows 100, 120, 120, 110, and Value has rows containing values for a telephone number ((123) 123-1234), age (30), age (45), and address (123 Main St., City, State). As should be understood, for example, the first row identifies. Joe (Employee ID of 10, known through Employees table 252) and stores the value of his telephone number, which is identified as a telephone number through Attributes table 254. The same analysis may be performed for the other exemplary rows.
  • [0037] Table structure 250 illustrates the generic nature of the data model, in accordance with some embodiments of the present invention. The addition, deletion, or modification of attributes does not require a database schema change. For example, if data regarding the drivers license for employee Sue (Employee ID 30) needs to be incorporated into table structure 250, no additional columns are required. Instead, attributes table 254 would be modified to include another row (e.g., ID of 140 and Name of Drivers License) and Employee attributes table 256 would be modified to include another row (e.g., Employee ID of 30, Attribute ID of 140, and Value of A123, with A123 being the value of Sue's-drivers license number). Thus, many different changes may be made that only require changes to the data rather than to the database structure and table definitions.
  • FIG. 3[0038] a is a block diagram illustrating an exemplary generic database model table structure 300, in accordance with some embodiments of the present invention. Table structure 300 comprises an attribute values table 302, an attributes table 304, a category contents table 310, a categories table 312, a content table 314, and a category relationships table 316. As can be seen from table structure 300, the basic table components of this exemplary generic database model comprise content, categories, and attributes, which are linked together and provide attributes and content for a given entity in separate tables.
  • Categories table [0039] 312 comprises a table of categories for the subject matter of table structure 300. For example, categories may consist of a company's business structure or product line, which may be viewed as structured data. Category relationships table 316 describes how categories relate to each other along with corresponding relationship rules.
  • Content table [0040] 314 contains any content necessary to describe or support a category. For example, such content may include text documents, images, videos, or sounds and include unstructured data. FIG. 3b is a block diagram 330 illustrating an exemplary relationship of category and content, in accordance with some embodiments of the present invention. Block diagram 330 comprises a number of category items 332, 334, 336, 338, and 340 and a number of content items 342, 344, 346, 348, and 350, with the arrows showing the direction and linking of one to the other. For example, category item 332 is linked to category 334 and to category 336. Category 336 is linked to content 1 342, which contains the category content for category 336. As shown, block diagram 330 defines the relationship of category (e.g., structured data) to content (e.g., unstructured data).
  • Category contents table [0041] 310 comprises a mapping scheme that maps a piece of content from content table 314 to its place in the category index corresponding to categories table 312. For example, a document that describes how to ensure a telephone line is properly installed into a facsimile machine may appear in the following product hierarchy position Facsimile product X—installation and configuration—connecting telephone line.
  • It should be understood that a given hierarchy may have a many-to-many relationship. For example, FIG. 3[0042] c is a table 380 illustrating a product hierarchy, in accordance with some embodiments of the present invention. Table 380 illustrates an exemplary category hierarchy (e.g., product hierarchy) that shows how categories may be arranged in a hierarchy. For example, category types may include a product family, product series, product name, and the final content.
  • As an example, for product family there may be many different categories such as printers, copy machines, computers, and facsimile machines. If the printers category (e.g., DeskJet printers) is selected, then a selection may be made from the product series (e.g., 2000 series or 3000 series). The product name for a particular type (e.g., 2001 or 2002) of series printer is selected next, and finally, the particular content (e.g., [0043] document 1 or document 2) desired is obtained.
  • This illustrates the hierarchical nature of a many-to-many relationship and the need for mapping content to category. [0044]
  • Referring to FIG. 3[0045] a, attributes table 304 describes all attributes defined for a given application utilizing table structure 300. The attributes may be further defined in terms of areas of a given application that may be referenced in table structure 300. For example, certain areas that may be referenced are “content” and “categories.” The attributes can also be defined for the areas of the application that are designated. For example, attributes may be access control lists, operating system, or language. The area of a given application utilizing table structure 300 that is allowed to use a certain attribute may also be defined. For example, the attribute language may apply to all areas including content and categories defined by their corresponding tables. Some of these features are explained in further detail in reference to FIG. 4.
  • Attribute values table [0046] 302 is linked to attributes table 304, category contents table 310, categories table 312, and content table 314. Attributes table 304 may be used to identify what attribute belongs to what area of the application. Attribute values table 302 comprises values assigned to an attribute specified through one of the related tables via foreign keys.
  • In general, a new type of data may be represented as an attribute using attributes table [0047] 304 or as a category relating to another category using categories table 312. If more than one piece of information needs to be recorded about the new type of data being added, then a category should be created. For example, a product may have warranty information accessible through a network hypertext link. Associated with the warranty navigation link is a number of warranty documents. Because of the additional information needed for the warranty (i.e., the warranty documents), making an attribute identifying the product as having warranty information is not appropriate. Making warranty a category and relating it to the product would be the preferred choice. On the other hand, if no additional information is needed about the new data that is being added, then an attribute would suffice. For example, a product ID is associated with a product. Because no additional information is necessary concerning the product ID, making it an attribute related to the product is the preferred choice.
  • It should be understood that [0048] table structure 300 illustrates a generic and flexible database model that is an extension of the principles illustrated in exemplary table structure 200 described in detail in reference to FIG. 2a. Table structure 300 provides, for example, categories to be changed and content to be revised simply by making the changes to the appropriate row in categories table 312 and content table 314, respectively. The principles of the present invention permit additions or modifications of attributes of a table simply by adding or modifying the data in an appropriate row and constructing the desired relationships consequently, database modifications require changes to the data rather than to the table definition and database schema.
  • This database model architecture is flexible and extensible and allows for enhancements, changes, and additions to the data stored in the database. This data may include product information, product navigation, support documents, images, video or sound data, or any other items of interest. Furthermore, the principles of the present invention may be applied to any type of data or structure that may be modeled by a data base model, and is not limited to products or other embodiments discussed herein. [0049]
  • FIG. 4 is a block diagram illustrating a [0050] database model 400 for an exemplary Internet publishing architecture (IPA) in accordance with some embodiments of the present invention. Database model 400 incorporates the principles of the present invention to provide a content delivery system (CDS) that displays information in the form of, for example, an Internet web page. Database model 400 comprises an attribute values (CDS_ATTRIBUTE_VALUES) table 402, a category contents (CDS_CATEGORY_CONTENTS) table 404, a presentation methods (CDS_PRESENTATION_METHODS) table 406, a content relationships (CDS_CONTENT_RELATIONSHIPS) table 408, a parameter values (CDS_PARAMETER_VALUES) table 410, a templates (CDS_TEMPLATES) table 412, a category relationships (CDS_CATEGORY_RELATIONSHIPS) table 414, a content relationship types (CDS_CONTENT_RLTNSHP_TYPES) table 416, a parameter names (CDS_PARAMETER_NAMES) table 418, a template types (CDS_TEMPLATE_TYPES) table 420, a category relationship rules (CDS_CATEGORY_RLTNSHP_RULES) table 422, a content values (CDS_CONTENT_VALUES) table 424, an application parameter types (CDS_APPLCTN_PRMTR_TYPES) table 426, an attribute pre-defined values (CDS_ATTRIBUTE_PREDFN_VALS) table 428, a categories (CDS_CATEGORIES) table 430, a contents (CDS_CONTENTS) table 432, an attribute areas (CDS_ATTRIBUTE_AREAS) table 434, a category pre-defined values (CDS_CATEGORY_PREDFN_VALUES) table 436, a content types (CDS_CONTENT_TYPES) table 438, an application areas (CDS_APPLICATION_AREAS) table 440, an attributes (CDS_ATTRIBUTES) table 442, and a category types (CDS_CATEGORY_TYPES) table 444.
  • The various tables of [0051] database model 400 are linked using the notation of a solid line meaning mandatory, a dashed line meaning optional, one line branching out meaning one-to-many, many lines joining to one meaning many-to-one, and an arc linking several lines meaning a logical exclusive OR relationship. The links are further labeled based on their origin and destination within database model 400.
  • The tables shown in [0052] database model 400 list exemplary data such as attributes and keys for each respective table. Various icons indicate columns that correspond to the primary or foreign key along with mandatory or optional data. Appendices B and D provide details and definitions for all of the data elements, but a brief description of the tables is provided below.
  • Category types table [0053] 444 describes the type of category such as a generic name or class (e.g., an object class) of a category. For example, category types are product number (e.g., product ID or SKU), product name, product series, product line, product family, and product category. Categories table 430 and category types table 444 are used because not all products follow the same traditional hierarchy of product categorization. This provides flexibility in modeling hierarchies having a different number of hierarchical levels. In more general terms, HP products fit into a network or hierarchical model with categories table 430, category relationships table 414, category types table 444, and category relationship rules table 422 forming this network model.
  • Categories table [0054] 430 contains a physical tangible product list, category of products, or subject area′ of a product for a company (e.g., Hewlett Packard (HP)). For example, a product family is HP DeskJet printers or HP DeskJet 600 series printers, while a product name is HP DeskJet 694C printer, and a subject area (i.e., a category type) is print or facsimile (i.e., a category). A product, category, and subject categorization is described by its relationship to category types table 444.
  • Category relationships table [0055] 414 describes how two or more product/subject categories are related and the relationship rule of the related product/subject category, with product/subject categories defined by the product hierarchy or, generally, a product network. For example, there may be four product/subject categories described in the product network as shown below.
    ID Product/Category Name Category Type
    1 Personal Computing Product Family
    2 HP Vectra PCs Product Group
    3 HP Vectra XU 5 Product Name
    4 D3520A Product Number
  • Category relationships table [0056] 414 would record the fact that ID 4 is related to ID 3, ID 3 is related to ID 2, and ID 2 is related to ID 1(see also description in reference to FIG. 3c for another exemplary hierarchical relationship).
  • Category relationships rule table [0057] 422 describes the rules for how category types can be related. A rule may be restricted to a previously defined category and define whether the relationship can occur only once or repeatedly for two nodes. For example, product series nodes are related to product name nodes and product name nodes are related to product number nodes. An example where the relationship to category would be useful would be a rule such as product number nodes are related to product name nodes. This relationship is phrased in the opposite direction than the prior example. Thus, there is a many-to-many relationship between product names and product numbers. However, the relationship between product numbers and product names is only applicable to certain products. Thus, to prevent the use of product number related to product name rule, the rule is restricted to a specified category.
  • Category pre-defined values table [0058] 436 describes re-defined categories, with one or more pre-defined categories permitted for a given category type. For example, for “Help” subject area, which is a specific instance in categories table 430, category there may be pre-defined values of “show me how,” “troubleshooting,” and “install and configure.”
  • Content types table [0059] 438 describes the type of content stored by contents table 432. For example, a text document, an image, and a manual would be type classified as .doc, GIF, and .PDF, respectively. Contents table 432 comprises any content that describes or supports a product, category, or subject, with the actual content located in content values table 424. Thus, content table 432 defines a placeholder for the content but does not actually store the content.
  • In some implementations (e.g., Oracle 8.0), this technique improves the speed of searching and retrieving data from the database. There should be a one-to-one relationship between contents table [0060] 432 and content values table 424. Content, for example, may include documents, images, lists, spreadsheets, drawings, manuals, video, or audio. Content properties such as name or description are represented in the relationship of content table 432 to attribute values table 402. Content is classified into the appropriate product, category, and/or subject categories by the relationship of contents table 432 to category contents table 404.
  • Content relationships table [0061] 408 describes the relationship among contents. For example, a document may be comprised of multiple pieces of content (i.e., chunked), which may include images or common paragraphs shared by other documents. Content relationship types table 416 defines how or why content is related to another piece of content. For example, content may be converted from existing content (e.g., text document converted to HTML). This type may be defined as converted. Another example would be a logo that is associated with several pieces of content (e.g., HP logo used in various documents). This type may be defined as chunked.
  • Category contents table [0062] 404 maps a piece of content to its proper location or locations in the category (e.g., product or subject) index and defines relationships between categories and content. For example, a document that describes how to ensure that a telephone line is properly inserted into a facsimile machine may be located in various product hierarchy locations such as shown below (see also description in reference to FIG. 3c. for an exemplary hierarchical relationship).
     Fax product     or    Fax product
      troubleshooting       install and
    configure
       faxing             connecting
    telephone line.
        sending
         no dial tone;
  • Parameter names table [0063] 418 defines the name of a parameter based on a specified parameter type and may also be defined for a specified language. Application parameter types table 426 is used to group parameter types such as hypertext markup language (HTML) errors, HTML constants, and system constants. Parameter values table 410 defines a value for the parameter that is named by parameter names table 418. Examples of parameter names and values are shown below.
    Name Value
    CDS-0001 Web page not found
    CDS-0002 SQL error
    Time-out value 45 minutes
  • Application areas table [0064] 440 is used to define areas (e.g., content, categories, templates, or template methods) of an application utilizing database model 400 that may be referenced by database model 400. Attributes table 442 describes the attributes, within the limits set forth in application areas table 440, that can be defined for an application utilizing database model 400. For example, attributes may include access control lists, display, language, release date, and author. Attribute areas table 434 defines the area of an application utilizing database model 400 that is allowed to use each attribute. For example, a language attribute would apply to areas including content, categories, and templates, while an operating system attribute would apply only to the content area. Attribute pre-defined value table 428 holds all pre-defined enumerated values for a specified attribute, because an attribute or attribute area may have one or more values pre-defined in an enumerated list.
  • Attribute values table [0065] 402 contains values assigned to the attributes specified for the related tables via a foreign key. A value is assigned to the attribute and specified as either a category, category type, content, content type, category content, parameter name, or template. The value may come from a pre-defined list (i.e., attribute pre-defined value table 428) or be user-defined (one of the value attributes). Various database rules may be required regarding attribute values (e.g., see Appendix B).
  • The content for [0066] database model 400 may be displayed using templates to construct the web pages. In general, the templates are generated and represent the intended layout of a desired page type. After the layout has been drafted using any HTML authoring tool, the dynamic content of the page is identified and substituted by CDS specific tags which allow access to the database and provide control mechanisms. When a page is generated, the HTML generator finds these specific tags and replaces them with content from the database. Appendix G provides further details of the dynamic HTML template interpreter.
  • Template types table [0067] 420 defines a category for a presentation template. Examples of template types are content template, category template, standard error template, and navigation template. Templates table 412 defines the template (i.e., name of the template and the template source) that is used to define how content and product/subject categories are presented. For example, when a product category/index or a product content (e.g., documents) is presented on the World Wide Web (WWW), a template is used to define how this information is formatted for presentation and may also be used to define what information is presented.
  • Presentation methods table [0068] 406 defines the template(s) used to display a piece of content or category. A piece of content or category may have many templates defined for it, but based on pre-defined criteria, only one of the templates will be used to present the content or category. Attributes associated with the presentation method are used to resolve the ambiguity as to what template to use when presenting a content or a category that has two or more templates. For example, a support document for changing a toner cartridge may be presented a certain way for commercial users and in a different way for home users. Therefore, a presentation template must be associated to the content for each presentation method. The presentation method used for a template (e.g., commercial or home user) can be determined by the relationship of the presentation methods table 406 to attribute values table 402. Presentation methods may have any number of pre-defined attributes associated with them.
  • FIG. 5 is a block diagram of a [0069] computer system 500 for an exemplary network application utilizing the database model of FIG. 4. Computer system 500 comprises a plurality of user terminals 502 that access a web server 506 through a network 504, such as the Internet. A firewall 508 provides security and isolation through which web server 506 communicates with a database server 510. Database server 510 is connected to a database 512 utilizing database model 400. Database server 510 is also connected to one or more administrator terminals 514 and various other computers 516, 518, 520 that may comprise servers or computer systems that provide various services or information for database server 510.
  • A user may access various content or information by utilizing [0070] user terminal 502, which may include a desktop computer, a laptop computer, a personal digital assistant, or a telephone such as a cellular telephone with a display. For example, user terminal 502 may employ a web browser to communicate through network 504. Web server 506 comprises an HP-UX 11 operating system, an Oracle application server 4.0, an Oracle application server's spyglass listener for use as the web listener, and Net 8 for communication with database 512. The Oracle application server is responsible for spawning off server applications to support the Internet publishing architecture application, such as an HTML template interpreter that communicates with database 512 using Net 8. The template interpreter is a cartridge of the Oracle application server and is responsible for preparing and presenting content to users, typically by the use of templates, as described in greater detail below in reference to FIG. 6. Also, note that the names Oracle and HP, along with various related products listed herein, are registered Trademarks of Oracle Corporation of Redwood Shores, Calif., and Hewlett Packard of Palo Alto, Calif., respectively.
  • [0071] Database server 510 hosts an HP-UX 11 operating system, an Oracle 8.0.5 database management system, and Net 8.0 for communication with server 506 (e.g., Web Server and Oracle Application Server) through firewall 508. One or more administrator terminals 514 allow for the maintenance of the product and navigation information along with other components of computer system 500. Computer 516 provides new or updated content and computer 518 uses an application such as DeltaLoader to extract the content from computer 516 and load the information into database 512 through database server 510. Computer system 500 may also use one or more remote terminals such as computer 520 to provide required product information such as product name, series, family, and ID. For more detailed information for computer system 500, such as multi-language support, please refer to Appendix A.
  • Data maintained in [0072] database 512 includes templates, structured data, and unstructured data. In general, a template will be required to display data (e.g., structured or unstructured) to a user. FIG. 6 is an exemplary template 600 for displaying content by utilizing the database model of FIG. 4. Template 600 illustrates the principle of nesting templates within templates so that templates can be designed with modularity and re-use in mind.
  • [0073] Template 600 comprises a top banner template 602, a navigation template 604, a bottom banner template 606, along with content 608. Top banner template 602 displays top banner content including the HP logo. Navigation template 604 displays navigation content, while bottom banner template 606 displays bottom banner content. Content 608 displays the content for template 600, which in this case is an exemplary support document on print quality troubleshooting. For example, the exemplary Internet publishing architecture, utilizing computer system 500 and the data and table structure of database model 400, may serve all content and navigation pages dynamically through the use of templates to provide web pages with the requested content to a user through the network. The requests may also be directed to static/dynamic HTML pages or to images or other multi-media items such as portable document format (PDF) files. The process of generating a web page using a template is described in detail in Appendix G.
  • FIG. 7 is a [0074] flowchart 700 for an exemplary data model table structure, in accordance with some embodiments of the present invention. Flowchart 700 provides the basic steps for creating a database model that provides a basic, generic structure of exemplary table structure 200 of FIG. 2a. Step 702 creates a data objects table that includes attributes that generally are unlikely to be changed and specific instances of these attributes. Step 704 creates an attributes table that includes properties regarding attributes in the data objects table of step 702. Step 706 creates an attributes value table that includes the actual values of the properties for the specified attributes corresponding to certain specific instances of the attributes. Therefore, flowchart 700 provides a generic, flexible, and expandable database model applicable to many types of database applications.
  • FIG. 8 is a [0075] flowchart 800 for an exemplary data model table structure, in accordance with some embodiments of the present invention. Flowchart 800 provides the basic steps for creating a database model that provides a basic, generic structure of exemplary table structure 300 of FIG. 3a. Step 802 creates a categories table that includes categories for the subject matter of the database. Step 804 creates a contents table that contains any content necessary to describe or support a category in the categories table of step 802. Step 806 creates a category contents table that provides a mapping scheme that maps a portion of content from the contents table of step 804 to its place in the category index corresponding to the categories table of step 802. Step 808 creates an attributes table that includes all attributes defined for the database. Step 810 creates an attributes values table that includes values assigned to an attribute specified through one of the related tables of flowchart 800. Step 812 creates a category relationships table 812, which may be optional, that describes how categories relate to each other along with corresponding relationship rules. Therefore, flowchart 800 provides a generic, flexible, and expandable database model applicable to many types of database applications.
  • It should be understood from the description herein that the database model system and method in accordance with an embodiment of the present invention provides many advantages over traditional database modeling schemes. The database model system and method, for example, provides flexibility and the ability to change or modify aspects of the data model by the modification of data rather than through fundamental data model schema changes. The database model may be incorporated into a computer system, for example, to deliver web pages to users on the computer network (e.g., WWW users on the Internet). For example, these web pages may be product pages, navigation pages, or pages with support documents, with requests made by users via a uniform resource locator (URL) using a hypertext transfer protocol (HTTP). This is but one example of the use of the database model and does not limit the application scope as the database model is useful for any type of database modeling and has application identical to or beyond that of the traditional data model. [0076]
  • Embodiments described above illustrate but do not limit the invention. It should also be understood that numerous modifications and variations are possible in accordance with the principles of the present invention. For example, while categories of HP products were illustrated in an exemplary embodiment, the present invention is not limited to this type of embodiment and it should be understood that any type of data may be modeled. Accordingly, the scope of the invention is defined only by the following claims. [0077]

Claims (31)

We claim:
1. A method of structuring a computer database, said method comprising:
providing an category table;
providing a content table containing content corresponding to categories in said category table;
providing a category contents table containing a mapping scheme that maps content contained in said content table to categories in said category table;
providing an attributes table containing attributes for an application utilizing said database; and
providing an attributes values table containing values corresponding to said attributes in said attributes table.
2. The method of claim 1, further comprising providing a category relationships table containing category relationships and rules corresponding to categories in said category table.
3. The method of claim 1, further comprising:
providing an attribute area table that defines the area of an application utilizing said database which is permitted to use certain of said attributes; and
providing an application area table that defines the areas of an application utilizing said database which may be referenced.
4. The method of claim 1, further comprising:
providing an attribute pre-defined value table that contains all pre-defined enumerated values for certain of said attributes; and
providing a category pre-defined values table that contains pre-defined values for certain categories in said category table.
5. The method of claim 1, further comprising:
providing a category types table that describes the category type for certain categories in said category table; and
providing a content type table that describes the type of content stored in said content table; and
providing a category relationship rule table that describes the relationship rules for said category types.
6. The method of claim 1, further comprising providing a content value table that contains the actual content corresponding to said content in said content table.
7. The method of claim 1, further comprising:
providing a content relationships table that describes the relationship among said content in said content table; and
providing a content relationship type table that defines the rationale for the relationship among said content in said content table.
8. The method of claim 1, further comprising:
providing a parameter names table that defines names of parameters;
providing an application parameter type table that groups parameter types; and
providing a parameter value table that defines values for said parameters in said parameter names table.
9. The method of claim 1, further comprising:
providing a template table that provides templates that are used to present categories and said content;
providing a template types table that defines types of templates; and
providing a presentation method table that identifies which of said templates are used to display said categories and said content.
10. A computer system for storing and transferring data, said system comprising:
at least one server computer connected through a computer network; and
at least one computer program executed by said at least one server computer, wherein said at least one computer program manages data stored in a database having a structure comprising:
a category table;
a content table containing content corresponding to categories in said category table;
a category contents table containing a mapping scheme that maps Content contained in said content table to categories in said category table;
an attributes table containing attributes for an application utilizing said database; and
an attributes values table containing values corresponding to said attributes in said attributes table.
11. The system of claim 10, wherein said database structure further comprises a category relationships table containing category relationships and rules corresponding to categories in said category table.
12. The system of claim 10, wherein said database structure further comprises:
an attribute area table that defines the area of an application utilizing said database which is permitted to use certain of said attributes; and
an application area table that defines the areas of an application utilizing said database which may be referenced.
13. The system of claim 10, wherein said database structure further comprises:
an attribute pre-defined value table that contains all pre-defined enumerated values for certain of said attributes; and
a category pre-defined values table that contains pre-defined values for certain categories in said category table.
14. The system of claim 10, wherein said database structure further comprises:
a category types table that describes the category type for certain categories in said category table; and
a content type table that describes the type of content stored in said content table; and
a category relationship rule table that describes the relationship rules for said category types.
15. The system of claim 10, wherein said database structure further comprises providing a content value table that contains the actual content corresponding to said content in said content table.
16. The system of claim 10, wherein said database structure further comprises:
a content relationships table that describes the relationship among said content in said content table; and
a content relationship type table that defines the rationale for the relationship among said content in said content table.
17. The system of claim 10, wherein said database structure further comprises:
a parameter names table that defines names of parameters;
an application parameter type table that groups parameter types; and
a parameter value table that defines values for said parameters in said parameter names table.
18. The system of claim 10, wherein said database structure further comprises:
a template table that provides templates that are used to present categories and said content;
a template types table that defines types of templates; and
a presentation method table that identifies which of said templates are used to display said categories and said content.
19. The system of claim 10, further comprising a web server computer to provide Internet access to said at least one server computer.
20. A method of structuring a computer database, said method comprising:
providing an entity table having a minimal set of attributes;
providing an entity attributes table having attributes corresponding to said entity table; and
providing an entity attributes values table having values corresponding to said attributes.
21. The method of claim 20, further comprising:
providing a content table containing content corresponding to said entity table; and
providing an entity contents table that maps said content to a corresponding entity.
22. The method of claim 20, further comprising providing an entity relationships table that contains relationships and rules corresponding to entities in said entity table.
23. A computer system for storing and transferring data, said system comprising:
at least one server computer connected through a computer network; and
at least one computer program executed by said at least one server computer, wherein said at least one computer program manages data stored in a database having a structure comprising:
an entity table having a minimal set of attributes;
an entity attributes table having attributes corresponding to said entity table; and
an entity attributes values table having values corresponding to said attributes.
24. The system of claim 23, wherein said database further comprises:
a content table containing content corresponding to said entity table; and
an entity contents table that maps said content to a corresponding entity.
25. The system of claim 23, wherein said database further comprises an entity relationships table that contains relationships and rules corresponding, to entities in said entity table.
26. A method of structuring a database, said method comprising:
creating a data objects table containing attributes;
creating an attributes table containing properties of said attributes in said data objects table; and
creating a value table containing values for said properties for specific instances of said attributes.
27. The method of claim 26, further comprising creating a relationships table containing object relationships corresponding to said attributes in said data objects table.
28. The method of claim 26, further comprising providing at least one foreign key in said value table to identify which value corresponds to a specific instance of said attributes for said properties.
29. A computer system for storing and transferring data, said system comprising:
at least one server computer connected through a computer network; and
at least one computer program executed by said at least one server computer, wherein said at least one computer program manages data stored in a database having a structure comprising:
creating a data objects table containing attributes;
creating an attributes table containing properties of said attributes in said data objects table; and
creating a value table containing values for said properties for specific instances of said attributes.
30. The system of claim 29, wherein said database structure further comprises a relationships table containing object relationships corresponding to said attributes in said data objects table.
31. The method of claim 29, wherein said database structure further comprises at least one foreign key in said value table to identify which value corresponds to a specific instance of said attributes for said properties.
US10/749,067 2000-08-31 2003-12-29 Database model system and method Abandoned US20040143588A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US10/749,067 US20040143588A1 (en) 2000-08-31 2003-12-29 Database model system and method

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
US22960800P 2000-08-31 2000-08-31
US09/655,779 US6687704B1 (en) 2000-08-31 2000-09-06 Database model system and method
US10/193,334 US6694490B2 (en) 2002-07-10 2002-07-10 DIMM and method for producing a DIMM
US10/749,067 US20040143588A1 (en) 2000-08-31 2003-12-29 Database model system and method

Related Parent Applications (2)

Application Number Title Priority Date Filing Date
US09/655,779 Continuation US6687704B1 (en) 2000-08-31 2000-09-06 Database model system and method
US10/193,334 Continuation US6694490B2 (en) 2000-08-31 2002-07-10 DIMM and method for producing a DIMM

Publications (1)

Publication Number Publication Date
US20040143588A1 true US20040143588A1 (en) 2004-07-22

Family

ID=30114491

Family Applications (3)

Application Number Title Priority Date Filing Date
US10/193,334 Expired - Fee Related US6694490B2 (en) 2000-08-31 2002-07-10 DIMM and method for producing a DIMM
US10/698,686 Expired - Fee Related US6990640B2 (en) 2002-07-10 2003-10-31 DIMM and method for producing a DIMM
US10/749,067 Abandoned US20040143588A1 (en) 2000-08-31 2003-12-29 Database model system and method

Family Applications Before (2)

Application Number Title Priority Date Filing Date
US10/193,334 Expired - Fee Related US6694490B2 (en) 2000-08-31 2002-07-10 DIMM and method for producing a DIMM
US10/698,686 Expired - Fee Related US6990640B2 (en) 2002-07-10 2003-10-31 DIMM and method for producing a DIMM

Country Status (2)

Country Link
US (3) US6694490B2 (en)
JP (1) JP2004062884A (en)

Cited By (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050278281A1 (en) * 2004-05-28 2005-12-15 Samson Frederick E Multi-dimensional data editor
US20060010129A1 (en) * 2004-07-09 2006-01-12 Fuji Xerox Co., Ltd. Recording medium in which document management program is stored, document management method, and document management apparatus
US20060064411A1 (en) * 2004-09-22 2006-03-23 William Gross Search engine using user intent
US20060288268A1 (en) * 2005-05-27 2006-12-21 Rage Frameworks, Inc. Method for extracting, interpreting and standardizing tabular data from unstructured documents
US20070295797A1 (en) * 2006-06-08 2007-12-27 Joshua Lee Herman System and Method for Resolving Identities that are Indefinitely Resolvable
US20080189320A1 (en) * 2007-02-07 2008-08-07 Ching-Kang Lee Website Generator Capable of Creating Dynamic Website in Off-Line Status and Related Method
US20080243526A1 (en) * 2007-03-30 2008-10-02 Google Inc. Custodian based content identification
US20080243780A1 (en) * 2007-03-30 2008-10-02 Google Inc. Open profile content identification
US20080243607A1 (en) * 2007-03-30 2008-10-02 Google Inc. Related entity content identification
US20100128302A1 (en) * 2008-11-26 2010-05-27 Xerox Corporation Exception page programming for banner sheets
US20140236880A1 (en) * 2013-02-19 2014-08-21 Business Objects Software Ltd. System and method for automatically suggesting rules for data stored in a table
US20180293259A1 (en) * 2016-08-23 2018-10-11 Ping An Technology (Shenzhen) Co., Ltd. Information storage method, system, device, and storage medium
US20180316726A1 (en) * 2017-04-28 2018-11-01 Honeywell International Inc. Replication of identity-derived primary keys without range restrictions
US10311051B1 (en) * 2014-01-29 2019-06-04 Bentley Systems, Incorporated Storing modeling alternatives with unitized data
US11409520B2 (en) * 2019-07-15 2022-08-09 Sap Se Custom term unification for analytical usage

Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5412804A (en) * 1992-04-30 1995-05-02 Oracle Corporation Extending the semantics of the outer join operator for un-nesting queries to a data base
US5615367A (en) * 1993-05-25 1997-03-25 Borland International, Inc. System and methods including automatic linking of tables for improved relational database modeling with interface
US5734887A (en) * 1995-09-29 1998-03-31 International Business Machines Corporation Method and apparatus for logical data access to a physical relational database
US5832498A (en) * 1994-09-13 1998-11-03 Bull, S.A. Device for generating object-oriented interfaces for relational data bases and a process implemented by this device
US5974407A (en) * 1997-09-29 1999-10-26 Sacks; Jerome E. Method and apparatus for implementing a hierarchical database management system (HDBMS) using a relational database management system (RDBMS) as the implementing apparatus
US6112209A (en) * 1998-06-17 2000-08-29 Gusack; Mark David Associative database model for electronic-based informational assemblies
US6192371B1 (en) * 1999-04-28 2001-02-20 Lucent Technologies, Inc Object morphing in an object oriented computing environment using relational database query procedure
US6252956B1 (en) * 1995-02-17 2001-06-26 Nec Corporation Switching system data inheritance method and system
US6263341B1 (en) * 1992-07-29 2001-07-17 Texas Instruments Incorporated Information repository system and method including data objects and a relationship object
US6324541B1 (en) * 1998-06-11 2001-11-27 Boardwalk Ltd. System, method, and computer program product for providing relational patterns between entities
US6366917B1 (en) * 1998-04-01 2002-04-02 Webputty, Inc. Method of modifying a populated database structure by modifying metadata describing the database structure
US6480857B1 (en) * 2001-06-07 2002-11-12 David Chandler Method of organizing hierarchical data in a relational database
US6493717B1 (en) * 1998-06-16 2002-12-10 Datafree, Inc. System and method for managing database information
US6493699B2 (en) * 1998-03-27 2002-12-10 International Business Machines Corporation Defining and characterizing an analysis space for precomputed views
US20030105932A1 (en) * 2001-11-30 2003-06-05 David Howard S. Emulation of memory clock enable pin and use of chip select for memory power control
US6591275B1 (en) * 2000-06-02 2003-07-08 Sun Microsystems, Inc. Object-relational mapping for tables without primary keys
US6687704B1 (en) * 2000-08-31 2004-02-03 Hewlett-Packard Development Company, L.P. Database model system and method
US7035842B2 (en) * 2002-01-17 2006-04-25 International Business Machines Corporation Method, system, and program for defining asset queries in a digital library

Family Cites Families (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4805093A (en) * 1986-10-14 1989-02-14 Ward Calvin B Content addressable memory
EP0615190A1 (en) * 1993-03-11 1994-09-14 Data General Corporation Expandable memory for a digital computer
US5619471A (en) * 1995-06-06 1997-04-08 Apple Computer, Inc. Memory controller for both interleaved and non-interleaved memory
US5802395A (en) * 1996-07-08 1998-09-01 International Business Machines Corporation High density memory modules with improved data bus performance
US6118719A (en) * 1998-05-20 2000-09-12 International Business Machines Corporation Self-initiated self-refresh mode for memory modules
US6334175B1 (en) * 1998-07-22 2001-12-25 Ati Technologies, Inc. Switchable memory system and memory allocation method
US6046952A (en) * 1998-12-04 2000-04-04 Advanced Micro Devices, Inc. Method and apparatus for optimizing memory performance with opportunistic refreshing
US6295582B1 (en) * 1999-01-15 2001-09-25 Hewlett Packard Company System and method for managing data in an asynchronous I/O cache memory to maintain a predetermined amount of storage space that is readily available
US6208273B1 (en) * 1999-01-29 2001-03-27 Interactive Silicon, Inc. System and method for performing scalable embedded parallel data compression
US6295591B1 (en) * 1999-03-30 2001-09-25 International Business Machines Corporation Method of upgrading and/or servicing memory without interrupting the operation of the system
US6487623B1 (en) * 1999-04-30 2002-11-26 Compaq Information Technologies Group, L.P. Replacement, upgrade and/or addition of hot-pluggable components in a computer system
US6289421B1 (en) * 1999-05-21 2001-09-11 Lucent Technologies, Inc. Intelligent memory devices for transferring data between electronic devices
US6279072B1 (en) 1999-07-22 2001-08-21 Micron Technology, Inc. Reconfigurable memory with selectable error correction storage
US7089391B2 (en) * 2000-04-14 2006-08-08 Quickshift, Inc. Managing a codec engine for memory compression/decompression operations using a data movement engine
US6523102B1 (en) * 2000-04-14 2003-02-18 Interactive Silicon, Inc. Parallel compression/decompression system and method for implementation of in-memory compressed cache improving storage density and access speed for industry standard memory subsystems and in-line memory modules
US7032158B2 (en) * 2001-04-23 2006-04-18 Quickshift, Inc. System and method for recognizing and configuring devices embedded on memory modules
US7076686B2 (en) * 2002-02-20 2006-07-11 Hewlett-Packard Development Company, L.P. Hot swapping memory method and system
US7149857B2 (en) * 2002-05-14 2006-12-12 Micron Technology, Inc. Out of order DRAM sequencer

Patent Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5412804A (en) * 1992-04-30 1995-05-02 Oracle Corporation Extending the semantics of the outer join operator for un-nesting queries to a data base
US6263341B1 (en) * 1992-07-29 2001-07-17 Texas Instruments Incorporated Information repository system and method including data objects and a relationship object
US5615367A (en) * 1993-05-25 1997-03-25 Borland International, Inc. System and methods including automatic linking of tables for improved relational database modeling with interface
US5832498A (en) * 1994-09-13 1998-11-03 Bull, S.A. Device for generating object-oriented interfaces for relational data bases and a process implemented by this device
US6252956B1 (en) * 1995-02-17 2001-06-26 Nec Corporation Switching system data inheritance method and system
US5734887A (en) * 1995-09-29 1998-03-31 International Business Machines Corporation Method and apparatus for logical data access to a physical relational database
US5974407A (en) * 1997-09-29 1999-10-26 Sacks; Jerome E. Method and apparatus for implementing a hierarchical database management system (HDBMS) using a relational database management system (RDBMS) as the implementing apparatus
US6493699B2 (en) * 1998-03-27 2002-12-10 International Business Machines Corporation Defining and characterizing an analysis space for precomputed views
US6366917B1 (en) * 1998-04-01 2002-04-02 Webputty, Inc. Method of modifying a populated database structure by modifying metadata describing the database structure
US6324541B1 (en) * 1998-06-11 2001-11-27 Boardwalk Ltd. System, method, and computer program product for providing relational patterns between entities
US6493717B1 (en) * 1998-06-16 2002-12-10 Datafree, Inc. System and method for managing database information
US6112209A (en) * 1998-06-17 2000-08-29 Gusack; Mark David Associative database model for electronic-based informational assemblies
US6192371B1 (en) * 1999-04-28 2001-02-20 Lucent Technologies, Inc Object morphing in an object oriented computing environment using relational database query procedure
US6591275B1 (en) * 2000-06-02 2003-07-08 Sun Microsystems, Inc. Object-relational mapping for tables without primary keys
US6687704B1 (en) * 2000-08-31 2004-02-03 Hewlett-Packard Development Company, L.P. Database model system and method
US6480857B1 (en) * 2001-06-07 2002-11-12 David Chandler Method of organizing hierarchical data in a relational database
US20030105932A1 (en) * 2001-11-30 2003-06-05 David Howard S. Emulation of memory clock enable pin and use of chip select for memory power control
US7035842B2 (en) * 2002-01-17 2006-04-25 International Business Machines Corporation Method, system, and program for defining asset queries in a digital library

Cited By (26)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050278281A1 (en) * 2004-05-28 2005-12-15 Samson Frederick E Multi-dimensional data editor
US7523120B2 (en) * 2004-07-09 2009-04-21 Fuji Xerox Co., Ltd. Recording medium in which document management program is stored, document management method, and document management apparatus
US20060010129A1 (en) * 2004-07-09 2006-01-12 Fuji Xerox Co., Ltd. Recording medium in which document management program is stored, document management method, and document management apparatus
US20060064411A1 (en) * 2004-09-22 2006-03-23 William Gross Search engine using user intent
US20060288268A1 (en) * 2005-05-27 2006-12-21 Rage Frameworks, Inc. Method for extracting, interpreting and standardizing tabular data from unstructured documents
US7590647B2 (en) * 2005-05-27 2009-09-15 Rage Frameworks, Inc Method for extracting, interpreting and standardizing tabular data from unstructured documents
US20070295797A1 (en) * 2006-06-08 2007-12-27 Joshua Lee Herman System and Method for Resolving Identities that are Indefinitely Resolvable
US7866542B2 (en) 2006-06-08 2011-01-11 International Business Machines Corporation System and method for resolving identities that are indefinitely resolvable
US20080189320A1 (en) * 2007-02-07 2008-08-07 Ching-Kang Lee Website Generator Capable of Creating Dynamic Website in Off-Line Status and Related Method
US20080243780A1 (en) * 2007-03-30 2008-10-02 Google Inc. Open profile content identification
US20080243607A1 (en) * 2007-03-30 2008-10-02 Google Inc. Related entity content identification
WO2008121989A1 (en) * 2007-03-30 2008-10-09 Google Inc. Related entity content identification
US20080243526A1 (en) * 2007-03-30 2008-10-02 Google Inc. Custodian based content identification
US8341169B2 (en) 2007-03-30 2012-12-25 Google Inc. Open profile content identification
US7730017B2 (en) 2007-03-30 2010-06-01 Google Inc. Open profile content identification
US20100174726A1 (en) * 2007-03-30 2010-07-08 Google Inc., A Delaware Corporation Open Profile Content Identification
US8321462B2 (en) 2007-03-30 2012-11-27 Google Inc. Custodian based content identification
US20100128302A1 (en) * 2008-11-26 2010-05-27 Xerox Corporation Exception page programming for banner sheets
US9019549B2 (en) * 2008-11-26 2015-04-28 Xerox Corporation Exception page programming for banner sheets
US20140236880A1 (en) * 2013-02-19 2014-08-21 Business Objects Software Ltd. System and method for automatically suggesting rules for data stored in a table
US10332010B2 (en) * 2013-02-19 2019-06-25 Business Objects Software Ltd. System and method for automatically suggesting rules for data stored in a table
US10311051B1 (en) * 2014-01-29 2019-06-04 Bentley Systems, Incorporated Storing modeling alternatives with unitized data
US20180293259A1 (en) * 2016-08-23 2018-10-11 Ping An Technology (Shenzhen) Co., Ltd. Information storage method, system, device, and storage medium
US20180316726A1 (en) * 2017-04-28 2018-11-01 Honeywell International Inc. Replication of identity-derived primary keys without range restrictions
CN110506410A (en) * 2017-04-28 2019-11-26 霍尼韦尔国际公司 There is no the duplication of major key derived from the identity of scope limitation
US11409520B2 (en) * 2019-07-15 2022-08-09 Sap Se Custom term unification for analytical usage

Also Published As

Publication number Publication date
US6990640B2 (en) 2006-01-24
JP2004062884A (en) 2004-02-26
US20040090848A1 (en) 2004-05-13
US20040010760A1 (en) 2004-01-15
US6694490B2 (en) 2004-02-17

Similar Documents

Publication Publication Date Title
US6687704B1 (en) Database model system and method
US7363581B2 (en) Presentation generator
US7308458B2 (en) System for normalizing and archiving schemas
US20070168325A1 (en) System and method for workflow processing using a portable knowledge format
US7634492B2 (en) Aggregate data view
US6961734B2 (en) Method, system, and program for defining asset classes in a digital library
JP5710102B2 (en) Adaptive content platform and application integration with the platform
CN100580660C (en) Methods and systems for managing styles in electronic documents
US20100318511A1 (en) Techniques for connectors in a system for collaborative work
US20060265396A1 (en) Personalizable information networks
US8561022B2 (en) Method and apparatus for viewing electronic commerce-related documents
US20060265377A1 (en) Personalizable information networks
US20060190275A1 (en) Intellectual property management system
US20040143588A1 (en) Database model system and method
US20070088704A1 (en) System and method for creation, distribution, and utilization of portable knowledge format
US20060265394A1 (en) Personalizable information networks
WO2009114615A1 (en) Techniques for integrating parameterized information request into a system for collaborative work
US6915303B2 (en) Code generator system for digital libraries
JP2008140273A (en) Document providing system and information providing program
US8683310B2 (en) Information architecture for the interactive environment
US20060265395A1 (en) Personalizable information networks
US20090094290A1 (en) Document management server, mobile terminal and document management system
US20030135492A1 (en) Method, system, and program for defining asset queries in a digital library
US20040167905A1 (en) Content management portal and method for managing digital assets
JP2012203614A (en) Data integrated management system and client terminal

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION