CA2172517C - Method and apparatus for data replication - Google Patents

Method and apparatus for data replication Download PDF

Info

Publication number
CA2172517C
CA2172517C CA002172517A CA2172517A CA2172517C CA 2172517 C CA2172517 C CA 2172517C CA 002172517 A CA002172517 A CA 002172517A CA 2172517 A CA2172517 A CA 2172517A CA 2172517 C CA2172517 C CA 2172517C
Authority
CA
Canada
Prior art keywords
modification
data
computer
information
data value
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.)
Expired - Lifetime
Application number
CA002172517A
Other languages
French (fr)
Other versions
CA2172517A1 (en
Inventor
Sandeep Jain
Dean Daniels
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.)
Oracle International Corp
Original Assignee
Oracle Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Oracle Corp filed Critical Oracle Corp
Publication of CA2172517A1 publication Critical patent/CA2172517A1/en
Application granted granted Critical
Publication of CA2172517C publication Critical patent/CA2172517C/en
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/27Replication, distribution or synchronisation of data between databases or within a distributed database system; Distributed database system architectures therefor
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/07Responding to the occurrence of a fault, e.g. fault tolerance
    • G06F11/14Error detection or correction of the data by redundancy in operation
    • G06F11/1402Saving, restoring, recovering or retrying
    • G06F11/1471Saving, restoring, recovering or retrying involving logging of persistent data for recovery
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/07Responding to the occurrence of a fault, e.g. fault tolerance
    • G06F11/16Error detection or correction of the data by redundancy in hardware
    • G06F11/20Error detection or correction of the data by redundancy in hardware using active fault-masking, e.g. by switching out faulty elements or by switching in spare elements
    • G06F11/2097Error detection or correction of the data by redundancy in hardware using active fault-masking, e.g. by switching out faulty elements or by switching in spare elements maintaining the standby controller/processing unit updated
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/953Organization of data
    • Y10S707/954Relational
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99938Concurrency, e.g. lock management in shared database
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99951File or database maintenance
    • Y10S707/99952Coherency, e.g. same view to multiple users
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99951File or database maintenance
    • Y10S707/99952Coherency, e.g. same view to multiple users
    • Y10S707/99953Recoverability

Abstract

The present invention provides the ability to replicate modifications to a data item made at a local site to multiple remote sites in a peer-to-peer environment. Information regarding these replicated modifications (e.g., insert, delete or update) and associated exceptional occurances are contained in a set of replication tables which include transaction table, transaction nodes tables, calls table, call nodes tables and an exceptions table as shown in fig. 3. The present invention provides both value-oriented row-level and logic-oriented procedure-level replications. The row-level replication uses the new and old values of a data item at an originating site to modify the remote site and the procedure-level replication modifies the remote sites based on the logical operation used to modify data at an originating site. The present invention further provides a trigger, a procedure that is executed every time a modification is made to a data item, which queues the entries in the replication tables.

Description

METHOD AND APPARATUS FOR DATA REPLICATION
BACKGROUND OF THE INVENTION
I. FIELD OF THE INVENTION
This invention relates to the field of data replication.
2. BACKGROUND ART
Because of the ability of computerized systems at one location to communicate with other locations, computer applications are increasingly accessing data located on multiple, local and remote systems. In a read-only mode (i.e., no data modifications), multiple copies of the same data item can be located at multiple sites without raising any data integrity issues. However, as multiple users resident at multiple system locations begin to modify one or more of the copies of the same data items, data integrity becomes a critical issue.
Ideally, any user should be able to modify any copy of a data item with an ability to automatically propagate the modification to each copy of the same data item at any location. Prior art systems fall short of providing this type of peer-to-peer environment.
For example, some systems provide one "master" copy with multiple "slave" copies. Any modifications are performed on the "master," with the "slave" locations receiving a copy of the modified data after the modification is completed on the "master." Thus, a user at a "slave" location must access the "master" copy to modify a data item. This technique does not provide the ,~~ ~~ 1 ability to update any copy, and propagate the changes performed on that copy to all other copies.
For example, Cordi et al.. U.S. Patent No. 4,077,059, discloses a multi-processing system with a hierarchical memory having journaling and copyback. The hierarchical memory system has two memory units on each level. One main unit contains all of the data for the level, and the other unit, the copyback unit, contains the changes that have been made to that data either by addition or modification. The main unit interfaces with the next higher level in the hierarchy and its processing unit. The copyback unit transfers the data changes to the lower level when the lower level's main unit is not interfacing with its next higher level or processing unit. The copyback unit is smaller than the main unit to reduce the necessary storage units on each level.
Since the copyback unit is smaller than the main unit, there is a possibility that the number of changes to the main unit's data may exceed the capacity of the copyback's store. A monitoring routine is used to assure that the number of changes did not exceed storage capacity of the copyback unit. Appropriate measures are taken to reduce the number of changes in the copyback store when the copyback store reaches capacity.
Schmidt et al., U.S. Patent No. 4,558,413, discloses a management system for managing versions of software updated and stored in designated storage devices in a distributed software environment of a local area network. The system collects and recompiles versions of a software object (i.e., source and object modules) located on these storage devices in the LAN. The compiled program is used in the distributed software environment. The system includes the associated software object's: version, unique name, update chronology, dependencies on (and interconnections with) other software _.. ~..... . .... ~ ._. . __u_..~__.___. r..__ ~..,~ ~.~..... _..
objects, and residence. The management system is automatically notified when changes are being made to a software object.
Haas et al., U.S. Patent No. 4,631,673, discloses a method for refreshing multicolumn tables in a relational database. Haas provides a method for refreshing the snapshot (i.e., a read-only copy of a base table portion). Each record of a base table must have: (1) a tuple (i.e., unique) identifier , TID, (2) the previous records TID, PREVTID, and (3) "time stamp," UID, of the records last alteration. The snapshot contains the TID of the corresponding base table record. At refresh, the snapshot site sends the highest UID seen by the snapshot. The base table site identifies alterations based on TID, PREVTID, and UID values. Haas describes a master-slave environment whereby changes to a master are propagated to the replicas.
Kendall, U.S. Patent No. 4,635,189, describes a real-time distributed database management system that stores in a processor's memory copies of the variables needed to run the programs in that processor. When a variable is created, a processor is designated as the processor that determines the value of that variable. Each variable copy is updated by the current value of the original value on a periodic basis or upon the occurrence of a defined condition.
Kendall describes a method of data manipulation such that a first processor can address an original variable in a second processor, and direct the most current value of that variable be stored in a third processor upon the occurrence of a condition in a fourth processor. An acknowledgment message can then be sent to a fifth processor.
Bode, U.S. Patent No. 4,646,229, describes a database system that includes future versions of the database for use in time-oriented applications such as an application for scheduling the use of the same facilities to present and future users. All of the information required to represent the data base contents at desired future points in time is maintained in the data base. All transactions (e.g., logical units of work) are time stamped to assure access to the proper version of the database.
Gallant. U.S. Patent No. 4,648,036, refers to a method for controlling query and update processing in a database system. Specifically, Gallant describes a method for ensuring that a query rece~«es information representative of the database either before or after an update, but not information representative of a state after the update begins but before it completes. Transactional modifications are made to a future database structure. At the completion of the modifications, a switch is made from the present database structure to the future database structure. A query process accesses the present database structure.
Gladne, e~. U.S. Patent No. 4,714,992, refers to a method for managing obsolescence of replicas of data objects in a distributed processing system.
Database objects at a source location are replicated at a replica location. As objects stored at the source location are altered, corresponding objects at the replica location become obsolete. A replica location generates a request for a list of obsolete objects from the source location. Gladn~ describes a means for identifying the obsolete objects, communicating the identify of the obsolete objects, and removing the obsolete objects from the replica location. Glad describes a master-slave environment whereby changes to a master are propagated to the replicas.
.._._.w_,._.~..__..~_._..,_.,__,w. ... T '~._,_.. . _..

WO 95/08809 ' ~ 1 l 2 5 ~ ~ PCT/US94/10093 Ecklund et al., U.S. Patent No. 4,853,843, describes a multi-version database where each update operation a~eates a new version of the database, and the older versions remain available. Multiple alternative version paths are retained. Ecklund describes a method for deriving a minimal set of alternative version paths. When updates are applied to a partition they are performed synchronously on multiple sites in the partitions. Change list derived from the database histories and virtual partition change histories are used to determine the existence of conflicts. Ecklund describes a system for merging multiple versions of a data object into a distributed database such that each updating partition can access its own version.
Carev et al., U.S. Patent No. 4,875,159, describes a system for synchronizing two versions of files in a multiprocessor system. Both versions contain a sync-complete control field and a sync-in-progress field. The sync-I5 complete field indicates that the associated version is synchronized when it is set. The sync-in-progress field indicates that the associated version is in the process of being synchronized when it is set. If the sync-complete field is cleared in one or both of the versions, the sync-in-progress field is set in one of the versions. Then, a temporary file is a~eated, and a copy of the one version is transferred to the temporary filed. The sync-in-progress field of the one version is examined after the transfer is complete. If the sync-in-progress field is set, the sync-complete field is set in the temporary version. The temporary version is renamed to the other of the versions and the original of this version is removed.

5a Boykin et al., European Application EPO 0,428,264 A2, published on May 22, 1991 discloses a method for generating an access plan, in a database system, containing low-level code for performing preselected constraint checks. Database access commands are compiled into WO 95/08809 ~~ PCT/LTS94/10093 access plans that are executed at runtime instead of the access commands to improve system performance.
Roussopoulos, N. and Kang, H., "Principles and Techniques in the Design of ADMS+ " IEEE, December 1986, pp. 19-25 describes a technique for downloading database objects from a mainframe to a workstation as the workstation accesses data on the mainframe. Access to the localized database subset are performed at the workstation. Database objects accessed by multiple workstations are globalized. Updates at the mainframe are logged and incrementally applied before a query of the involved data is performed.
Modifications to the downloaded objects are performed by maintaining a backlog consisting of entries each of which consists of an operation (i.e., insert or delete), tuple-id, and DI-log (i.e., either a pointer to a file containing deletes, or a pointer to a newly inserted tuple).

SUMMARY OF THE INVENTION
The present invention provides the ability to replicate modifications (e.g., insert, delete, or update) made at a local site to multiple remote sites in a peer-to-peer environment. Information regarding these modifications are contained in a set of replication tables. Thus, modifications can be duplicated, asynchronously, at other sites immediately after the original transaction's modifying commitment, or deferred until the remote site is available.
The replication tables of the present invention include a transactions table, transaction nodes table, calls table, call nodes table, and an exceptions table. The transactions tablE contains information about a transaction. The transaction nodes table contains an entry for each remote site at which a transaction is to be applied. The calls table contains an entry for each procedure (i.e., transactional or non-transactional series of logical steps) to be replicated at remote sites. The call nodes table identifies nodes at which a procedure is executed. The exceptions table contains information regarding an exception raised when processing a replicated procedure at a data site (e.g., conflict or informational message).
The present invention provides a value-oriented row level and column level replication. Row-level replication modifies a remote site based on the old and new values contained in a row at an originating site. Column-level replication modifies a remote site based on the column values at an originating site. Further, row-level and column-level replication provides the ability to identify conflicting modifications at the remote site. A trigger (i.e., a procedure) is executed each time a modification is made to a data item. A
trigger queues entries in the replication tables. The table entries retain information such that the original modifications) associated with a data item can be propagated to remote copies of the same data items. The new values can be compared to the values contained in the remote copies to identify any modifications that could be lost, if the current modification is applied.
The present invention further provides a logic-oriented procedure-level replication. Procedure-level replication modifies a remote site based on the logical operations used to modify data at the originating site. Procedure-level replication provides the ability to identify conflicting updates as well. Thus, the same logical operations performed on one copy of a data item can be propagated to all other copies of the same data item.
Information concerning conflicts identified by the present invention can be retained in the replication tables.
The information contained in the replication tables can be used immediately, or subsequently, to address any conflicts detected by the present invention. Procedure-level replication provides the ability to address conflicts, and other exceptions, within the procedure replicated to, and executed at, the remote data locations. The present invention further provides the ability to rollback any modifications made when a conflict is identified.
Accordingly, in one of its aspects, the present invention relates to a computer implemented method of peer-to-peer data 8a 2172517 replication comprising the steps of: performing data modifications to a first computer system and a second computer system; generating propagation information associated with said data modifications on said first and said second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system; and performing a bi-directional replication of said data modifications using said propagation information, said bi-directional replication occurring between said first computer system and said second computer system, said replication initiated by either said first or said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer system.
In a further aspect, the present invention relates to a method of replicating data modifications in one or more computer systems comprising the steps of: storing, in a first computer system, a first copy of a data item; storing, in a second computer system, a second copy of a data item;
performing a first modification to said first copy of said data item; storing information about said modification such that said modification can be applied to said second copy of said data item; using said information about said first modification to perform a second modification to said second copy of said data item; and identifying any exceptional occurrence while performing said first modification or said second modification.

In a still further aspect the present invention relates to a method wherein the step of retaining information in said transactions relation further comprises the steps of:
providing a logical unit identifier in said transactions relation such that said logical unit identifier uniquely identifies each occurrence of said logical unit in said transactions relation; providing an ordering value for each occurrence in said transactions relation such that said ordering value identifies the order in which modifications associated with each occurrence were applied to said data item; providing a time value for each occurrence in said transactions relation such that said time value identifies the time at which modifications associated with each occurrence were applied to said data item; and providing a user identifier for each occurrence in said transactions relation, said user identifier identifies the user invoking the modifications applied to said data item.
In a further aspect, the present invention relates to an apparatus for peer-to-peer data replication comprising: a means for performing data modifications to a first computer system and a second computer system; a means for generating propagation information associated with said data modifications on said first and said second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system;
and a means for performing a bi-directional replications of said data modifications using said propagation information, said bi-directional replication occurring between said first computer system and second computer system, said replications initiated by either said first or said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer system.
The present invention, in another aspect, also provides an apparatus for peer-to-peer data replication comprising:
means for performing a first modification to a first data value in a first computer and second modification to second data value in a second computer, said first and second data values being consistent prior to said first and second modifications; means for generating modification information in said first and second computers indicative of said first and second modifications; means for communicating said modification information between said first and second computers; and means for modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said modification information to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
In a further aspect, the present invention relates to an article of manufacture including one or more computer-8d readable media that embody a program of instructions for performing peer-to-peer data replication, wherein said program of instructions, when executed by a first computer and a second computer, causes said first computer and second computer to: perform a first modification to a first data value stored in said first computer and a second modification to a second data value stored in said second computer, said first and second data values being consistent prior to said first and second modifications; generate first modification information indicative of said first modification and second modificatlOTl Information indicative of said second modification; communicate said first modification information from said first computer to said second computer and said second modification information from said second computer to said first computer; and modify, during a first time interval, said first data value based on said second modification information and said second data value based on said first modification information to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
In a still further aspect, the present invention relates to a method for maintaining duplication between a first data value and a second data value stored in respective first and second computers, the first and second computers remaining operational throughout a time interval over which said method is performed, said method comprising 8e the computer-implemented steps of: modifying the first data value to distinguish the first data value from the second data value; communicating to the second computer information indicative of said step of modifying the first data value;
receiving in the second computer the information indicative of said step of modifying the first data value; modifying the second data value to duplicate the first data value in response to said step of receiving in the second computer;
modifying the second data value to distinguish the second data value from the first data value; communicating to the first computer information indicative of said step of modifying the second data value to distinguish the second data value from the first value; receiving in the first computer the information indicative of said step of modifying the second data value; and modifying the first data value to duplicate the second data value in response to said step of receiving in the first computer.
In a further aspect, the present invention relates to a computer-implemented method for peer-to-peer data replication comprising the steps of: performing a first modification to a first data value in a first computer and a second modification to a second data value in a second computer, said first and second data values being consistent prior to said first and second modifications; generating first modification information in said first computer that is indicative of said first modification and second modification information in said second computer that is 8f indicative of said second modification; communicating said first modification information from said first computer to said second computer in response to performing the first modification; communicating said second modification information from said second computer to said first computer in response to performing said second modification; and modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said second modification information and said first modification information, respectively, to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
In another aspect, the present invention relates to an apparatus for peer-to-peer data replication comprising:
means for performing a first modification to a first data value in a first computer and a second modification to a second data value in a second computer, said first and second data values being consistent prior to said first and second modifications; means for generating first modification information in said first computer that is indicative of said first modification and second modification information in said second computer that is indicative of said second modification; means for communicating said first modification information from said first computer to said second computer in response to performing the first modification; means for communicating 8g said second modification informati«n from said second computer to said first computer in response tc:~ performing the second modification; and means for modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said second modification information and said first modification information, respectively, to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.

BRIEF DESCRII''ITON OF THE DRAWINGS
Figure I illustrates one or more computerized systems at one or more locations each containing copies of data items.
Figure 2A illustrates the structure of the data items stored at one location.
Figures 2B and 2C illustrate an order transaction and sample data updated by the order transaction.
Figure 2D illustrates a replication of the transactions processed at multiple data locations.
Figure 3 illustrates replication tables.
Figure 4 illustrates a process flow of a trigger.
Figure 5A-5C illustrates a process flow for modification operations on local and remote copies of data items.
Figures 6 and 7 illustrate a technique for entering replication information in the replication tables.
Figures 8A-8B illustrate replication tables including row-level replication information.
Figures 9A-9b illustrate procedures using procedure-level replication.

N to ~~ -Figure IO illustrates replication tables including procedure-level replication information.
Figures 11A-IIB illustrate the execution of transactional and non-transactional deferred remote procedure calls.
Figure 12 illustrates a Exceptions process flow.
Figure 13 illustrates a ReconstructParms process flow.
~ _ . .__. _... _ __.~..__. _ - WO 95/08809 21 l 2 51 l DETAILED DESCRIPTION OF THE INVENTION
A method and apparatus for data replication is described. In the following description, numerous specific details are set forth in order to provide a more thorough description of the present invention. It will be apparent, however, to one skilled in the art, that the present invention may be practiced without these specific details. In other instances, well-known features have not been described in detail so as not to obscure the invention.
In a networked environment consisting of one or more locations (e.g., database servers or computer sites), duplicate copies of the same data may be resident at more than one location (e.g., one or more database servers or computer systems). Figure 1 provides an example of a networked environment containing copies data resident at multiple sites. Data site A 100 may be any type of computerized system (e.g., networked database server, mainframe system, or personal computer system). Similarly, data site B 110 can be any type of computerized system. Data site A 100 contains databaseA
I20. Data site A 100 and data site B 110 are interconnected via communication link 125.
Initially, databaseB 130, located at data site B 110, contains a duplicate copy of databaseA 120. Thus, a copy of the same data item is available at both sites. That is, a user that accesses databaseA can read a data item (e.g., number of brooms in inventory) at data site A 100 while another user may access the number of brooms on hand by reading information resident at data site B I10.
As long as user A and B access the quantity on hand data item in read-only mode, the value of this data item at both locations will remain constant and, therefore, consistent.

Figure 2A further illustrates databaseA 120. Database A 120 contains two relations, or tables. The inventory table 202A contains two fields: Item 204A
and QuantityOnHand (qoh) 204B. The item and qoh fields comprise the information for each inventory item contained in inventory table 202A. The orders table 202B contains order information associated with a customer's order (e.g., originating location, customer placing the order, item ordered, quantity of item ordered, and whether the order can be filled by stock on hand).
Each table contains entries, or rows. For example, inventory table 202A
contains three entries 206A-206C.
Referring to Figure 2B, DatabaseB 130, like DatabaseA, contains an inventory and orders tables. Further, DatabaseA and DatabaseB contain identical entries and values for each entry. Figure 2B further provides a set of I5 steps that can be used to modify the data contained in either DatabaseA or DatabaseB.
This set of steps, a typical order transaction (i.e., order placement) consists of steps for checking the qoh to determine the amount of the ordered item in stock, updating the qoh in the inventory table (i.e., where qoh >
quantity ordered), .and inserting an entry in the orders table to reflect the order.
This process is reflected in steps one and two of the basic order transaction provided in Figure 2B.
The final step in the basic order transaction, the commit step is an implicit step in transaction processing. It provides the ability to make any changes that have been made to the tables permanent. Prior to executing a commit (i.e., makes the table changes permanent), the changes made to the inventory and orders tables can be rolled back.
Figure 2B illustrates the initial state of the tables in the two databases.
However, users A and B can update the tables using the basic order transaction.
That is, when user A receives an order from a customer (e.g., customer 10 orders fifty widgets) and invokes the order transaction at location A (i.e., databaseA), the order transaction will update the inventory and orders tables in DatabaseA. DatabaseB will remain unchanged. Thus, after user A's order processing transaction, DatabaseB will no longer be identical to DatabaseA.
Figure 2C illustrates the resulting databases after both user A and B use the order transaction to process an order received at their respective sites.
For example, user A receives an order for fifty widgets from customer 10. User A
invokes the order transaction. The order transaction updates the inventory table (i.e., the qoh field associated with the widget inventory item) and the orders table (i.e., adds an entry to reflect the order) in database A.
Similarly, user B invokes the order transaction to process the order received from customer 11 at site B (i.e., for forty widgets). The transaction invoked by B
updates the inventory table and orders table in database B.
Both orders consisted of an order for widgets. Customer 10's order was for fifty widgets, and Customer 11's order was for forty widgets. Therefore, a total of ninety widgets were sold. However, da~abase A does not reflect customer 11's order, and database B does not reflect customer 10's order.
Thus, each database only reflects the orders processed by one of the users (i.e., A
or B), and will therefore not reflect all of the orders that have been processed at all of the sites.

WO 95/08809 "~, PCT/US94/10093 Thus, there is a need to propagate local modification to all remote copies of the same data item. The present invention provides this ability to replicate the data modifications made at one location to other locations. Thus, the databases illustrated in Figure 2C are be replicated to other sites such that order transaction modifications at one site are be applied to other sites, and the data items are again consistent.
Figure 2D illustrates the state of the two databases before and after the replication capabilities of the present invention are used. Before replication, the two databases reflect only the order transactions processed locally (i.e., database A reflects user A's order transaction, and database B reflects user B's order transaction), and not the order transactions processed on a remote database (e.g., database B is a remote database to user A).
After the DbB=>DbA and DbA=>DbB replications, user A's data modifications are reflected at user A's local database (i.e., database A) and at database B (i.e., remote site). Similarly, user B's data modifications are reflected at both the local and remote sites. The widget's qoh value in both of the databases reflects the overall decrease in the qoh associated with both of the orders. Further, the orders tables in both databases reflect both of the orders received.
The present invention provides the ability to replicate data at the row level and at the procedure level. Row level replication (i.e., value-oriented replication) is accomplished by associating a trigger with a table (e.g., inventory table). A trigger is a procedure that is executed when a modification (e.g., update, insert or delete) occurs to a row in a table. A trigger identifies a ....._. . T . _ _ _.

WO 95/08809 PCTlUS94/10093 ~z~~ ~

deferred remote procedure call (DRPC) that has as its arguments the old values, new values, and the operation (e.g., insert, delete, or update).
Procedure-level replication propagates the operation rather than the row values (i.e., logic-oriented). After a procedure is executed at the originating site, the procedure defers a call to itself at another site. The DRPC
will apply the logical update of the original procedure at a remote site.
Procedure-level replication requires less network traffic than row-level replication since one DRPC can be used for multiple tables.
Modification, Identification and Retention To propagate the modifications made to data items in one database to the same data items in another database, it is necessary to retain the modifications until they can be made to the other sites. Prior art methods use a transactional recovery log (i.e., redo log) to retain and identify the database modifications for propagation. However, the redo log was originally intended for the application of transactions in a single database system, and contains "undo" information (i.e., information that can be used to roll back changes made to data after an event, such as a system failure, occurs).
For example, a redo log can be used on a single copy of the data to undo changes made to a database by one or more transactions when a system or application error is encountered. When such an error is encountered, the transactional updates made prior to the error (and related in some way to the error), must be undone to maintain the data integrity in existence prior to the updates. However, the redo log was not designed for capturing modification information for propagation to a second database system. Thus, when the log :. _16_ is used for its intended purpose as well as a resource for data replication, a storage management problem arises, because a redo log that it used to retain propagation information can never be moved off-line (i.e., made inaccessible to the database system).
Unlike the prior art systems, the present invention provides a propagation identification capability that can be managed in the same way as any other table, or relation, managed by a database administrator. The present invention provides the ability to encode the propagation information in tables in the database system. The information stored in these tables can be retrieved as any other data within the database system, and can be accessed at any time.
The tables include the information necessary to replicate a data modification to other data sites. For example, the tables contain information relative to a DRPC , its replication destination, the transaction the DRPC is a part of, the order in which a DRPC is executed within a deferring transaction, the order in which transactions are executed relative to other transactions, and the arguments used by each DRPC. The present invention uses the following tables: Transactions, Transaction Nodes, Calls, Call-nodes, and Exceptions.
Figure 3 illustrates a composition of these tables. Because of the versatility of the present invention (e.g., replication information is stored in relations), additional information can be added to these relations.
- Transactions Table -The Transaction Table contains information about transactions that are performed on the data and that use deferred remote procedure calls (i.e., DRPCs) in some manner. The transactions table consists of the following z.~ rz~
~~ _1~_ fields: transaction identifier, delivery order number (DON), start time, deferring user identifier, and destination-list. The Transaction identifier ("Transaction Id") is a unique identifier that is assigned to each transaction.
The Transaction Id further uniquely identifies the origin database for deferred transactions. Transaction Id is the primary key for the Transaction table (i.e., the value that uniquely identifies an entry in this relation). The destination-list controls whether destinations for a transaction are described by the call-nodes table or external routing tables.
The DON is an abstraction of a system change number. A DON reflects the commit sequence of a transaction relative to all of the other transactions listed in the transaction table. The DON respects the partial order of the commit of the transactions in the deferring database. Thus, if transaction one Tl touches the same data as transaction two T2 and TZ commits before Tl, the DON of transaction two (D2) is less than Tl's DON (Dl).
The time field reflects the time that the transaction was started, and the deferring user field identifies the user who initiated the deferred transaction's procedure call. This information can be used to monitor and control access (i.e., for security reasons). For example, prior to making any modifications to data at a remote si~;~, a check can be made to determine whether the deferring user has the access privileges that would enable the modification at the remote site.
The replication capability provided by the present provides the ability to modify all or some portion of the data modified by a transaction by site specification. That is, a deferred transaction can consist of a subset of the calls deferred by the original transaction for any given destination site. For example, an order transaction at site A can update an orders and inventory tables, and the replicated transaction at site B can update the orders table only.
A call nodes table can be used to define a transaction's calls that are applied at a given site. In addition, any routing mechanism can be used. For example, a mapping of calls to destinations can be defined according to the name of the procedures beings deferred. The destination list field of the transactions tables indicates the mapping mechanism (e.g., call nodes table or other routing mechanism) used.
- Transaction Nodes Table -The Transaction Nodes Table (i.e., destinations table) identifies the nodes or remote sites at which the transactions contained in the transactions table are to be executed. The transaction node table contains one entry for each node (i.e., remote site) at which a transaction is to be executed.
The transaction identifier ("Transaction Id") has the same definition as the same field in the transactions table. The Destination Node ("dest node") identifies the nodes (i.e., remote databases) at which the transaction is to be executed to replicate the changes made by the transaction on the local data site.
Thus, the same transaction id can be used to access an entry in the transaction table, and any corresponding entry or entries in the transaction node table.
Further, an entry in the transaction nodes table identifies one of the remote sites to which the transaction's modification are to be propagated. A
transaction id and dest node combination can uniquely identifies an entry in the transaction nodes table.
._ z~~ ~

-- Calls Table -As illustrated in the order processing example provided earlier, transactions (i.e., a logical unit of work) can be composed of steps, or procedures (e.g., place order and inventory check). In software encoding these steps, each can be considered a separate procedure to provide additional structure to an application. Further, procedures can be defined without being a part of a transaction. Information regarding either type of procedure is retained in the calls table. The calls table contains a unique identifier, Call Identifier ("call id"), that can order a call within a transaction, or orders non-transactional DRPCs relative to all others.
Like the transactions and transaction nodes tables, the calls table contains a transaction id. For transactional DRPCs, the transaction-id has the I5 same definition as the transaction id field in the transactions and transaction nodes tables. For non-transactional DRPCs, the transaction id field is not used.
The Deferred Procedure Identifier ("proc id") identifies the procedure, or call, (i.e., series of program steps) that is to be executed at the remote site.
For example, the proc id may be a character string containing the procedure's name. It could also be a system-provided, unique identifier that includes the location (e.g., storage address) of the procedure. The parameter count identifies the number of parameters (values passed into the procedure for use during the execution of the procedure) for a procedure.

WO 95/08809 ~. PCT/US94/10093 The parameters field (parms) is a long raw byte string containing the parameters for the entry in the calls table. The format of the field is as follows:
<tcl><lent><valuel><tc2><len2><value2> . . . <tcn><lenn><valuen><0>
Where:
<tci> is the parameter type code for the ith parameter (i.e., whether the parameter is of type number, character, date, rowid, or null);
<leni> is the two byte binary integer value of the length of valuei (length of zero indicates a null parameter value);
<valuei> is the parameter value;
<0> is a single byte value indicating the end of the string.
- Call-Nodes Table -The call-nodes table contains a row for every destination of each deferred call when the destination is not defined by an external routing table.
The call-nodes facilitates the ability to replicate a transaction comprised of multiple procedure calls by specifying the execution of some or all of the calls at a given site. When a call's destinations are not defined by an external routing structure, call nodes are specified by the deferring user, either with the deferred call, as transaction default destinations, or as system determined destinations. When a deferred transaction is being sent to a destination, the call-nodes table is queried to select those calls that are to be executed as part of the deferred transaction at the destination.
.. ....._.~_ _ __ The Transaction Identifier and the call identifier are the same as those in the calls table. The destination node field identifies the node at which the execution of a procedure is deferred.
-- Parameters Table -In an alternate embodiment, a table can be used to retain the parameters for a call instead of storing the parameters in the calls table. In this embodiment, the parameters table contains an entry for each parameter used IO by an entry in the calls table. That i~, for each call containing parameters, there is one or more entries in the parameters table. Each entry in the parameters table contains a parameter for an entry in the calls table.
The parameters table contains a Call Identifier ("call id"). Like the calls I5 table, the call-id identifies a procedure call. A procedure call with more than one parameter contains an ordered list of parameters. The Parameter Number ("param_no") can, therefore, identify an entry's location within a procedure call's ordered list of parameters. A call id and param_no pair can uniquely identify an entry in the parameters table. The type field contains a code that 20 indicates the type of parameter. That is, the type field indicates whether the parameter table entry is a number, character, date, rowid.
Only one of the remaining fields (i.e., Number, Character, Data, Rowid) is used for each entry in the table. That is, if the parameter is a number, the 25 value of the parameter is stored in the number field. Similarly, if the parameter is of type character, the value of the parameter is stored in the character field. A date parameter value is stored in the date field. Rowid N'w'! .~
information (i.e., identifier specifying a row within a table) is stored in the rowid field.
- Exceptions Table -The exceptions table is used to store information related to any exceptional or occurrence during executions of a deferred transaction. This information can be subsequently reviewed, and the exceptional occurrence can be addressed. For example, multiple conflicting updates may occur to different IO copies of replicated data. Thus, one transaction, Tl, can update one copy of record A, C1, and a second transaction, T2, can update a second copy of record A, C2. If T1 is propagated to C2, Tl can overwrite T2's update, and vice versa.
The present invention detects this type of exception, and others, and retains information for each exception.

The exceptions table contains a Transaction Identifier ("transaction id") field that has the same definition as the transaction id field in the transactions, transaction nodes, and calls tables. The call identifier has the same definition as the call id field in the calls table. The Destination Node 20 ("dest node") identifies the node at which the exception occurred. In the previous paragraph's example, the node field would contain the identification of the node that stores C2. The error code field (error code) contains a code to identify the error, or exception, encountered (e.g., overwrite potential for T2's update of C2). Further, the error string field contains an additional description 25 of the error. A transaction id, and dest node combination can uniquely identify an entry in this table.
r ..

Populating Replication Tables The modification replication provided by the present invention is asynchronous. That is, the replication procedures that modify the remote data copies (e.g., <table_name> insert) do not execute as part of the modification operation that is performed at the local, originating site. Rather, a modification to the remote data copies can be deferred until the remote copies are available.
The process of deferring the modif?ca~ion cperation at the remote site is accomplished, in the present invention, by storing the information for each deferred modification operation in the replication tables, and subsequently performing the modification operation identified in the replication tables at the remote sites.

Referring to DatabaseA (DbA) in Figure 2C, for example, the modifications to the Inventory and Orders tables can be replicated to DatabaseB
(DbB) in Figure 2C by replicating DbA's modification to DbB's Inventory and Orders tables. Thus, the update performed oa DbA's inventory table and the entry inserted in DbA's orders table can be replicated at the DbB site by replicating the Basic Order Transaction's modifications performed on the data in DbA.
The basic order transaction is replicated at DbB by queuing the transaction in the replication tables, and subsequently applying the modifications contained in the transaction on the data in DbB according to the information contained in the replication tables. Figure 6 illustrates a processing flow for queuing the transaction, transaction nodes, and call WO 95/08809 ~.,. PCT/L1S94/10093 fL , t destination tables for a transaction, a transaction's destination nodes, and any transactional or non-transactional call. Figure 6 can be invoked multiple times to queue any number of calls. For example, the invoking routine can contain a looping mechanism that can invoke queue transactional DRPC for each transactional or non-transactional call.
At decision block 601 (i.e., "first call?", if this is not the first call to queue this transaction, processing continues at block 616. If it is the first call, processing continues at block 602. At processing block 602, a current transaction identifier is assigned to the transaction to be stored in the tables (e.g., DbA's basic order transaction). The current transaction identifier is assigned a value that will uniquely identify the table entry. At processing block 604, an entry is inserted in the transactions table. The transaction identifier field is assigned the value of the current transaction identifier.
The originating transaction (e.g., DbA's order transaction) is assigned a DON when the commit step in the order transaction is successfully performed.
The DON provides an ability to order transactions based on the order in which they have modified the data. Thus, where the order of the modifications is crucial, the DON can be used to retain the modification order and thereby maintain data integrity. The DON field is assigned the value of the original transaction's DON. The time field of the new transactions table entry is set to the current time. The deferring user identifier is assigned the value of the user that originated the original transaction.
A destination (i.e., remote data copy identifier) is identified at processing block 606. At processing block 608, an entry in the transaction nodes table is created to indicate that the transaction currently being entered into the __..._.. _ _ .._..__ _._.

replication table is to be performed at the identified destination. Thus, the transaction identifier is assigned the same value as the same field in the transactions table, and the destination node is set to the identified destination.
An entry should be made for each destination identified. Thus, at decision block 610 (i.e., "other remote destinations?"), if additional destinations exist, processing continues at processing block 606 to identify the next destination. Further, a transactions node table entry is created for each such destination. When it is determined, at decision block 610 (i.e., "other remote destinations?"), that all of the remote destinations have been entered into the transactions node table, processing continues at decision block 616 (i.e.
"all calls in transaction processed?") As illustrated in the basic order transaction provided in Figure 2B, a transaction can be comprised of multiple steps. In the basic order transaction, the steps where: check inventory and process order. These steps can be designed and encoded in software as separate procedures. In this case, the basic order transaction can contain an inventory_check procedure that exercises the steps contained in an inventory check. Similarly, the basic order transaction can contain the place order and commit procedures. Each of these calls that comprise the transaction can then be entered into the calls table of the present invention.
At processing block 616, a unique call identifier is generated and assigned to current call id. At processing block 6I8, Queue call args is invoked to enter the call information into the replication tables. After the appropriate call information has been added to the replication tables, processing returns at block 620.

WO 95/08809 ~ PCT/US94/10093 Figure 7 illustrates a processing flow to queue call information. At processing block 700, an entry is created in the calls table for the procedure call currently being processed. The entry's call identifier field is set to the current call id. The same value assigned to the transaction identifier fields in the transactions and transaction nodes tables is used for the transaction identifier field in the calls table. The procedure identifier field is assigned a value that can uniquely identify the procedure being deferred. This value can be anything that identifies the procedure such as a procedure name or the storage location of the procedure.
During its execution, a procedure can use values (parameters) that are externally-generated (i.e., defined outside the procedure) and passed into the procedure, or internally-generated. In the preferred embodiment, the parameters are queued in the parms field of the calls table.
At processing block 702, parm count is initialized to zero. At decision block 704 (i.e., "all parameters in call processed?"), if all of a procedure's parameters have been added to the parameters table, or the procedure does not have any associated parameters, processing returns at processing block 714. At block 714, the value of parm_count is used to update the parameter count field of the call's entry in the calls table.
At decision block 716 (i.e., "call's destination nodes not defined by external routing mechanism and destination nodes defined by user with DRPC?"), if the call's destination nodes (i.e., execution nodes) are defined by an external routing mechanism, processing returns at block 724. If the call's execution nodes are defined by the user with the DRPC and not by an external WO 95/08809 ~ PCT/US94/10093 routing mechanism, processing continues at decision block 7I8. ~ At decision block 718 (i.e., "all execution nodes processed?"), if all of the execution nodes have been entered in the call nodes table, processing returns at block 724.
If all of the execution nodes have not been processed, processing continues at block 720 to get the next execution node specified by the user.
At processing block 722, an entry is created in the call nodes table for the current execution node. Processing continues at decision block 718 to process any remaining execution nodes.
If, at decision block 704 (i.e., "all parameters in call processed?"), parameters remain to be processed, processing continues at processing block 710. At processing block 710, the parameter's type (i.e., data type), length, and value are appended to any existing value in the parms field of the current calls table entry. At block 712, parm_count is incremented by one. Processing continues at decision block 704 to process any remaining parameters.
In an alternate embodiment, a call's parameters can be stored in a separate table, a parameters table (see Figure 3). In the alternate embodiment, block 710 creates a separate entry in a parameters table for each parameter.
Thus, a parameters table contains an entry for each parameter that is associated with a procedure. Each entry contains the call identifier, a parameter number (i.e., the number of the parameter in relation to the other parameters in the call), and the data type of the parameter. The value of the parameter is stored in one of the value fields (i.e., number, character, date, or rowid) based on the data type. For example, if the inventory_check procedure in the basic order transaction contained three parameters, three entries would be added to the parameters table.

-2s-Triggers Triggers provide one alternative to initiate the population of the replication tables . A trigger is a procedure that is executed when any modification (e.g., update, insert or delete) is performed on an entry in a table at the local site. Figure 4 provides an example of the process flow of a trigger in the present invention.
Decision block 402 (i.e., "is this trigger firing as a result of a replicated modification?") illustrates an issue addressed by a trigger in the present invention. Because a trigger is initiated when any modification operation is performed on a table, an operation that is performed on a remote data entry (i.e., a modification operation) will result in the initiation of a second trigger.

Unless a trigger contains some mechanism for differentiating between a modification done as a result of an original modification operation and a modification that is a replicated modification (i.e., the result of an earlier-fired trigger), the replicated modification will itself generate a trigger, and the original modification operation could be replicated multiple times at a data site unnecessarily. This would endanger the integrity of the data at the local and remote sites.
Thus, decision block 402 (i.e., "is this trigger a result of an earlier-fired trigger?") determines whether the table modification that generated the trigger is a consequence of an original or replication modification. If it is an original modification, the trigger is not the result of an earlier-fired trigger.
However if the modification is the result of an original modification that has been .,.... T...... ... _. _ ,.... ..._...._....~~.~......._ replicated to a remote table, a second trigger should not be queued in the replication tables.
Therefore, if, at decision block 402 (i.e., "is this trigger a result of an earlier-fired trigger?"), a trigger is the result of replicated modification, a processing ends at block 406, and the modification procedure is not queued.
If, at decision block 402, the trigger was generated as a result of an original modification, processing continues at processing block 404. At processing block 404, a modification entry is inserted in the replication tables. Processing then ends at block 406.
The mechanism for identifying duplicative replications can be implemented in various ways in the present invention. In the preferred embodiment, a duplicative replication can also be detected by setting a global I5 variable. (i.e., a variable that can be accessed by any trigger or replication procedure) before a replicated modification is performed. When the replicated modification is performed, the trigger can (at decision block 402 in Figure 4) check the global variable to determine whether the modification is the result of a replication procedure or an original modification. This alternative of setting the global variable in the replication procedure is further illustrated in connection with row-level replication discussed below.
In an alternate embodiment, a duplicative replication can be detected by associating data modifications to a user. Thus, it is possible to identify an original modification by its user, and to identify a replicated modification by another user (i.e., modification procedures can be executed by a distinguished user). Thus, decision block 402 in Figure 4 can check for the user name that invoked the modification. If the user is a distinguished user, the trigger was generated as a result of an earlier-fired trigger. If the user is not a distinguished user, the trigger was generated as a result of an original modification.
These alternatives provide examples of techniques for detecting duplicative modifications. Any means can be used to detect duplicative modifications without departing from the scope of the present invention.
Row-Level Replication Procedures Row-level replication is a feature of the present invention that uses triggers to replicate row-level value-oriented modifications. That is, row-level replication provides an ability to replicate changes made to the values in a row.
Row-level replication associates a trigger with a table (e.g., DbA's inventory in Figure 2A) such that any changes made to one or more values in a local table I5 entry (e.g., qoh field in DbA's inventory table of Figure 2A) will trigger a like change to remote copies of the changed values (e.g., qoh field in DbB's inventory table of Figure 2A).
A trigger causes the information associated with a procedure used to replicate the value changes in the local copy to a remote copy to be stored in the replication tables. The procedure, a deferred remote procedure call (DRPC), can be subsequently executed at remote sites to replicate the data modifications) performed on local data. The name of the DRPC corresponds to the table being modified and the operation being performed on the local data (e.g., <table_name> update). The DRPC has as its arguments (i.e., parameters), generally, the old values of the local data and the new values of the local data. The old values, or a subset thereof, uniquely identify the row r ... ... __~.____.

that is the target of the modification. The use of these arguments is specific to the operation that is performed at the local site.
For example, if an update operation is performed on the local data, the old values would be used to detect conflicts. That is, a difference between the old values of the local data and the current values at the remote site may indicate that a separate operation has been performed on the remote data that may get erased with the current update. The new values can be used to update the remote data.
An insert operation (i.e., insert a row of values or a field value) there are no old values, and, therefore, no old values are included in the call.
Further, there is no need to use old values to perform a check for conflicts (i.e., exceptions) at the row-level when inserting a new row or field value. The new I5 values, or a subset thereof, uniquely identify a new remote table entry.
If the operation is a delete (i.e., delete a row or field), there are no new values. However, like an update operation, the old values can be used to detect potential conflicts. Further, the old values, or a subset thereof, can be used to uniquely identify the remote table entry to be deleted.
A DRPC name can incorporate the name of the table to be modified and the operation to be performed. Referring to Figure ZA, for example, the triggers for the inventory table can have the names: inventory insert, inventory_update, and inventory_delete). This naming convention assists in identifying the table and operation involved in the replication process.
However, any naming convention can be used with the present invention.

WO 95/08809 ~ PCTIL1S94/10093 - Row-level insert --Figures 5A-5C provide an example of the process flow for the <table_ _ _name> insert, <table_name>_delete, and <table_name> update DRPCs. These DRPCs execute at sites remote from the original modification.
Therefore, when they refer to "remote tables," they are referring to tables local to the DRPC's execution and remote from the original modification. Figure 4A _ _provides an example of the processing flow of a <table_name> insert DRPC. As discussed previously, a global variable can be used as one alternative for identifying replicated modifications. Such a global variable is set at processing block 502. At processing block 504, a row is inserted in <table_ _name> using the values) provided in the new values parameter(s).
To further illustrate the need to test for duplicative modifications, the replicated insert operation performed by the process of Figure 5A would generate a trigger (i.e., any table modification initiates a trigger). Thus, the trigger process of Figure 4 is invoked when the insert operation of processing block 504 (Figure 5A) is performed. Because the g~~bal variable was set to indicate a duplicative modification (at processing block 502 of Figure 5A), the trigger can determine (at processing block 402 of Figure 4) that the modification is a replicated modification, and a DRPC will not be queued for the replicated modification (i.e., at processing block 404 in Figure 4).
Continuing with the process flow of Figure 5A, after the insert operation is performed on the remote table, the global replication variable is reset at processing block 506. Processing ends at block 508.

- Row-level update -Figure 5B provides an example of the processing flow of an update DRPC (e.g., <table_name>update). A global replication variable is set at processing block 522. At processing block 524, the remote table entry is identified using the old values, or a subset of the old values. At decision block 526 (i.e., "row found at remote site?"), if the remote table entry cannot be found, processing continues at processing block 532 to log an exception in the replication tables. Further, the global replication variable is reset at processing block 548, and processing ends at block 550. If the remote table entry is found, processing continues at decision block 530.
Before an update is made to a remote site, a check can be made to determine whether a modification has been made to the remote data that is independent of the current update operation that might be erased if the current update is performed on the remote data. This might occur, for example, when a modification (other than the current, replicated operation) could have originated at the remote site, the replication of which has not reached the site that invoked the current replicated update. If the current replicated update overwrites the remote table entry's values with the new-value parameters, the remote table entry's current values will be lost, and the remote table's original modification will, therefore, be lost.
Alternatively, in some applications, concurrent modifications to disjoint sets of non-primary field values can be permitted. For example, a modification to a customer's balance need not conflict with a change to a customer's address. If updates can be applied to non-primary fields on a field-by-field basis, concurrent updates are not lost. At decision block 530 (i.e., "type of lost update prevention?") determines whether the lost update is a row level update or a column level update. If it is a row level update, processing continues at decision block 536. If it is a column level update processing continues at decision block 534.
At decision block 534 (i.e., "is each field value equal to its corresponding old_value parameter where the corresponding old value parameter is not equal to the corresponding new value parameter?), if the old values are equal to their corresponding old value parameter where the old value parameter is not equal to the new value parameter, processing continues at processing block 544 to update the fields that have been changed, and processing continues at block 548. If not, processing continues at decision block 538 (i.e., "should lost updates be prevented?"), if lost updates should be prevented, processing continues at block 540 to invoke Exceptions, and processing continues at block I5 548.
At decision block 536 (i.e., "is each field value equal in the row equal to its corresponding old value parameter?), if the old values are equal to their corresponding old value parameter, processing continues at processing block 546 to update each field in the row with its corresponding new value parameter, and processing continues at block 548. If not, processing continues at decision block 542 (i.e., "should lost updates be prevented?"), if lost updates should be prevented, processing continues at block 540 to invoke Exceptions, and processing continues at block 548.
At processing block the global replication variable is reset. Processing ends at block 550.
r ~ __ .._ WO 95/08809 ' PCT/US94/10093 - Row-level delete -Figure 5C provides an example of the processing flow of a delete DRPC
(e.g., <table_name>delete). A global replication variable is set at processing block 562. At processing block 564, the remote table entry is identified using the old values, or a subset of the old values. At decision block 566 (i.e., "row found at remote site?"), if the remote table entry cannot be found, processing continues at processing block 572 to log an exception in the replication tables.
Further, the global replication variable is reset at processing block 576, and processing ends at block 578. If the remote table entry is found, processing continues at decision block 528.
As in the update DRPC process, a check is made to determine if a check should be made for lost updates (i.e., modifications). Thus, decision block (i.e., "should lost updates be prevented?") determines whether to test for potential lost updates (i.e., lost updates). If not, processing continues at processing block 574, and the remote table entry is deleted from the remote table. After the delete operation is performed on the remote table entry, the global replication variable is reset at processing block 576, and processing ends at block 578.
If, at decision block 568 (i.e., "should lost updates be prevented?"), existing modifications should be preserved, processing continues at decision block 570. At decision block 530 (i.e., "is each field value in the row equal to its corresponding old value parameter?"), if any of the remote table entry's field values do not equal its corresponding old value parameter, processing continues at processing block 572. At processing block 572, wn exception is logged in the replication tables. Processing continues at block 576 where the global replication variable is reset, and processing ends at block 578.
If, at decision block 570 (i.e., "is each field value in the row equal to its corresponding old value parameter?"), all of the field values in the remote table entry are equal to their corresponding old value parameters , processing continues at processing block 574. At processing block 574, the remote table entry is deleted from the remote table. After the delete operation is performed on the remote table, the global replication variable is reset at processing block 576, and processing ends at block 578.
Row-level Replication Example The replication illustrated in Figure 2C (i.e., DbB=>DbA and DbA=>DbB) can be accomplished using triggers and row-level replication. The order for fifty widgets at the database A location resulted in the invocation of a basic order transaction to update the inventory table and place an order in the orders table. Either of these modifications will cause a trigger associated with either table to execute.
For example, when the qoh field of DbA's inventory table is updated by subtracting the quantity ordered, a trigger associated with the inventory table (and illustrated in Figure 4) invokes the procedures of Figures 6 and 7 to populate the replication tables with a DRPC. In this case, an Inventory update DRPC _ _similar to the <table_name> update DRPC illustrated in Figure 5B can be used to replicate the changes in DbA's inventory table to DbB.
r _..... .. .. ..

WO 95/08809 PCTlUS94/10093 .~ ~'~2 ~l ~

Referring to Figure 6, if this is the first call, a transactional identifier is generated for the DRPC (i.e., ,<table name> update) at processing block 602.
At processing block 604, an entry is inserted into the transactions table as illustrated in Figure 8A. A transaction identifier (e.g., 1), DON, time, and deferring user identifier are assigned to the inventory_update transaction.
At blocks 606 through 610, the transaction nodes table is populated. In this case, the only remote copy of the data is located at DbB. Therefore, one entry is inserted in the transaction nodes table where the transaction identifier is the same as the same field in the transactions table, and the destination node is set to DbB.
An entry is created in the calls table for each call in the transaction.
Referring to Figure 7, an entry is inserted into the calls table to reflect the inventory_update DRPC. The call identifier is a unique identifier for the inventory_update DRPC. The transaction identifier has the same value as the same field in the transactions and transaction nodes tables. The deferred procedure identifier can be any value that identifies the DRPC. In this case, the name of the DRPC is used.
If an external routing mechanism is not being used, the call nodes table can be populated with the entries that identify the user specified destination nodes at which execution of the DRPC is deferred (i.e., execution nodes).
Referring to 8A, the destination list field indicates that the destination nodes are not specified by an external routing mechanism. In this case, the destination nodes for the transaction's' one DRPC (i.e., inventory update) can be determined by the entry in the transaction nodes table. However, the call WO 95108809 ~~ PCT/CTS94/10093 a nodes table can be used to identify DbB as the destination node for execution of the inventory_update DRPC.
Any parameters associated with a call are stored in the call's entry in the calls table. Referring to Figure 5B, the update procedure uses the widget's old inventory values and new inventory values. The widget entry in the inventory table is uniquely identified by the old value "widget." Because each entry in the table contains two fields, there will be two old values and two new values. Therefore, there are four arguments associated with the inventory_update procedure. The arguments (including an example of their attributes) are as follows:
Old values New values Type Length Value Type Length Value 2 06 Widget 2 06 Widget The parms field in the calls table entry associated with this call contains a string of parameter information. A terminating value (e.g., "0") is placed at the end of the string. The resulting string is:
"206Widget103400206Widget1033500".
If inventory update is considered to be a non-transactional DRPC, the process of inserting entries in the transactions and transaction nodes tables could be bypassed. To associate the non-transactional DRPC with the destinations at which the DRPC is to be executed, the call nodes table can be used. An entry can be placed in the call nodes table for each location at which the call is to be executed.
T ..

Figure 8B illustrates the state of the replication tables after their population with a non-transactional DRPC. The transactions and transaction nodes tables are not used. The calls and call nodes tables are the same as in Figure 8A with the exception of the transaction identifier field. Since there is no associated transaction, there is no entry in the transaction and transaction nodes tables, and no transaction identifier value.
Column-Level Replication Column-level replication is a variation of lost update prevention for row-level replication. Column-level replication applies only to update operations. In column-level replication, concurrent updates can be made to disjoint sets of non-primary key columns. Lost updates are prevented only when the updates are to columns whose values have been changed (i.e., those columns changed at the originating site as indicated by a difference between the old value and new value parameters).
Column-level replication uses the same <table name> update procedure as row-level replication. Figure 5B illustrates the differences in the logic for detecting lost updates and applying updates for row-level and column-level replication schemes. A row-level replication scheme determines that a remote site's current values match old values for all columns in a table entry (at decision block 536) prior to applying an update at a remote site. Column-level replication checks ( at decision block 534) only those columns that were changed by the original update (as indicated by a difference between the values of the corresponding old and new parameters).
If the old value parameters of the changed columns are equal to their corresponding values at the remote site, the loss of an intermediate update is unlikely, and the update operation can be completed. If the old value parameters of the changed columns are not the same as their corresponding values and lost updates are to be prevented (at decision block 538), an exception is raised (processing block 540), and the update operation is not performed.
If lost updates are not to be prevented (at decision block 538), the update operation can be performed.
A row-level update operation involves all of the columns in a table entry (at processing block 546). However, a column-level update operation involves only those columns changed by the original update (as indicated by a difference between the values of the corresponding old and new parameters).
Thus, in a column-level update operation, only those columns changed by the original update are updated with their corresponding value in the new value parameters (processing block 544).
Procedure-Level Replication Procedure-level replication provides another alternative for replicating data modifications. As previously discussed, row-level replication is value oriented. That is, the values that are the result of some operation are replicated to remote copies. In contrast, procedure-level replication provides the ability to replicate the logical operation at remote sites. That is, the procedure that modified the local copy can be replicated at the remote sites.
Thus, after the execution of a procedure at the originating site, the procedure creates a DRPC such that the procedure defers itself to another site to apply the logical update on a remote copy.
_.. _._....r.._...._... _ . .._._ .. . .. ..

Procedure-level replication provides additional flexibility in that an application (e.g., order processing example in Figures 2A-2C) can determine how a replication is to be propagated, and how replication conflicts (e.g., multiple conflicting updates to the same data item) are to be addressed. That is, a DRPC can designate its propagation and the process to be invoked when replication conflicts are identified.
Figures 9A-9B provide an example of an application that uses procedure-level replication to replicate its logical operations to other sites. The application assumes the relations (i.e., tables) described in Figures 2A-2D.
Further, any changes made to the tables at the DbA site must be replicated at the DbB site, and vice versa.
In the basic order transaction illustrated in Figures 2B-2C, once a customer's order is received, the inventory table is updated to reflect a decrease in inventory by the quantity ordered, and an entry is inserted in the orders table to retain information about the order. If the order is received and processed at DbA, the same order processing is replicated at DbB as illustrated in Figure 2D.
Figure 9A illustrates the original order processing that is performed when an order is received at one of the sites (e.g., DbA). To summarize the order processing at DbA, at processing block 902, the item ordered is found in the inventory table, and the inventory amount i~ stored in qoh. If the entry is not found, an exception is raised at block 906. If the inventory amount (i.e., qoh) is greater than the quantity ordered, the inventory amount is decreased by the quantity ordered, and the order is considered to be filled at blocks 908, 912, and 9I4. If the inventory amount is not greater than the quantity ordered, the _42_ order is considered to be backordered. In either case, the order is entered into the orders table at processing block 916.
Once the order is processed at DbA, the order processing is replicated at remote sites by entering the replicated procedure in the replication tables, and subsequently executed the replicated procedure at the remote sites. At processing block 918, the information associated with the replicated procedure is stored in the replication tables by invoking Queue transactional DRPC. As described earlier, Queue transactional DRPC stores the replicated information in the tables. Processing block 918 further illustrates some of the information that is stored in the replication tables.
Figure 10 illustrates the state of the replication tables after Queue transactional DRPC has processed the replicated procedure's information. The transactions table is populated with a transaction identifier to uniquely identify the order processing transaction, as well as the transaction's DON, commit time, and deferring user. The transaction nodes table has one entry for the remote copy of the inventory and orders tables located in DbB.
The calls table contains an entry to identify the place order remote procedure for this order processing transaction (i.e., 4), and the parameter count is set to five. The parameters field in the calls table contains the parameter information (i.e., item ordered, originating site, customer, quantity ordered, and the order's status in the DbA database). The call nodes table contains an entry to identify the node at which the place order remote DRPC
is to be executed.
~ _ ..v_ . . ..._,.~___. ..

Figure 9B provides an example of the remote processing of the place order process at DbB. Except for the change in the data copy being modified, the processing blocks 902 through 916 are the same as the same blocks in Figure 9A. As stated previously, procedure-level replication provides the ability to allow an application to handle exceptions that occur as a result of the replication of the procedure at other sites. In the present example, a check is made to determine whether there is a discrepzncy in the ordered item's inventory count in DbA and DbB. One way of determining this is by determining whether the order could be filled based on the QuantityOnHand information in both databases. Thus, at decision block 920 in Figure 9B (i.e., "status = filled?"), the order's status at DbB is checked against the order's status at DbA. If they are not equal, an exception can be raised for later review.
Instead of raising an exception for later review, other methods of addressing this discrepancy can be included in the procedure. In the present example, the procedure could have been designed to either modify the order at DbA, or at DbB. In any case, the present invention provides the ability to allow an application to process exceptions using procedure-level replication.
Whether or not a discrepancy is detected at decision block 920, processing ends at 924.
Deferred Remote Procedure Call Initiation As previously indicated, once a DRPC has been placed in the replication tables, the present invention provides the ability to subsequently execute the DRPC at a remote site. Figure 11A illustrates a process for initiating deferred, transactional DRPCs contained in the replication tables.

r ~r _ øø
The selection of transactional DRPCs can be performed using a number of different criteria. For example, they can be selected based on the transaction identifier, transaction destination, or a combination of the two. Whatever the selection criteria, the transactions to be processed are selected at processing block 1102. Select transactions are ordered for execution according to the DON
field in the transaction table entries. At decision block 1104 (i.e., "all selected transactions processed?"), if all of the selected transactions have been executed, processing ends at 1132.
If there are remaining transactions, the next transaction is obtained, and its identifier is stored in current trans_id at processing block 1106. The modification operations performed in a transaction can be undone before they are committed. At processing block 1108, a point (i.e., savepoint) is established to identify the state of the data prior to the modifications of the current transactions.
At decision block 1110 (i.e., "all calls processed?"), if all of the calls in the current transaction have been processed, processing continues at processing block 1112. At block 1112, the entry in the transaction nodes table that corresponds to the transaction processed and the remote copy modified are deleted from the transaction nodes table. At decision block 1114 (i.e., "anymore remote copies to apply DRPC to?"), if there is some need to retain the current transaction's entry in the replication tables, processing continues at processing block 1118. If there is no need to retain the entry in the replication tables, the entry is deleted from the replications table at processing block 1116. At processing block 1118, the current transaction's modifications are committed making its modifications permanent. Processing continues, at decision block r _.._ ..._.__ _._ . . ~.___. .

1104 (i.e., all selected transactions processed?"), to perform the remaining transactions.
If at decision block 1110 (i.e., "all calls processed?"), if all of the DRPCs have not been executed in the current transaction, processing continues at processing block 1120. At processing block 1120, a call nodes table entry for the destination node currently being processed. Processing block 1121 identifies a calls table entry for the call identified in processing block 1120.
At processing block 1122, the DRPC call string is reconstructed. A DRPC
call string is one technique for identifying the DRPC to be executed. Other means for identifying the DRPC can be used. For example, a DRPC can be identified by an internal representation of the call string. In this case, the DRPC can be executed by an optimized low level system interface using the internal representation. Thus, the call can be invoked without reconstructing an DRPC call in its entirety.
If the DRPC is identified and executed using a conventional DRPC call string, the reconstructed call string for the place order remote procedure call in the calls table in Figure 10 is: place order remote (Widget, DbA, 10, 50, filled). If the remote site is included in the call, the call is: place order remote ~DbB (Widget, DbA,10, 50, filled).
Referring to Figure 11A, at processing block 1122, a DRPC call string is reconstructed using the procedure identifier and parms fields from the calls table. The parameters for a call are reconstruct using the parms field in the calls table. Figure 13 illustrates a process flow for parsing the parms field.
At WO 95/08809 ~. .~'""~ PCT/ITS94/10093 ..
processing block 1302, a byte is extracted from the parms field. This byte represents the type of the current parameter in the parms field.
At decision block 1304 (i.e., "Type = 0?"), if the byte extracted from the parms field is equal to a termination value, processing ends at block 1306. If the byte is not a terminating value, processing continues at processing block 1308 to set "Len" to the next to bytes of the parms field. At processing block 1310, "Value" is set to the next "Len" bytes from the parms field. At processing block 1312, the contents of "Value" and "Len" are passed to a call constructor facility to incorporate this parameter information in the reconstructed call.
Processing continues at block 1302 to process any remaining parameters in the parms field.
Referring to Figure 11A, at processing block 1124, the procedure is executed at the remote site. At decision block 1126 (i.e., "successful execution?"), if the procedure was successfully executed, processing continues at processing block 1127 to delete the selected call nodes table entry.
Processing continues at decision block 1110 to check for additional calls to process.
If the procedure's execution was unsuccessful, the modifications made since the savepoint previously created are undone at processing block 1128. At processing block 1130, the Exceptions is invoked to create an entry in the Exceptions table to retain information concerning the unsuccessful completion of the procedure. The exception table can be stored at any location (e.g., originating, destination, or both sites). In the preferred embodiment, the exceptions table is stored at the destination site. Processing continues at decision block 1104 with any remaining transactions.
.. _..~.. ....._~..... __.._..._ .

- Exception Process Flow --An exception can be stored in a relation that is located on either the originating or destination sites, or both. Figure 12 illustrates a process flow for storing an exception. At block 1202, entries are created in the error and transaction tables in the destination replication tables based on the values in the originating site's tables. At processing block 1204, entries are created in the calls and call nodes table in the destination replication tables based on the values in the originating site's tables. At block 1206, processing ends.
Figure IIA illustrated a method for executing transactional DRPC
entries contained in the replication tables. Other methods can be used to process the replication table entries using replication capabilities of the present invention. For example, the present invention provides the ability to execute non-transactional DRPC entries contained in the replication tables. Figure IIB
illustrates a method for executing non-transaction DRPC entries.
At processing block 1152, the non-transactional DRPCs to be executed are selected. At decision block 1154 (i.e., "all selected calls processed?"), if all of the DRPCs selected have been processed, processing ends at block 1174. If there are calls remaining, processing continues at processing block 1156 to select the next call and identify it by its call identifier. As in Figure IlA, the processing of a non-transactional DRPC in Figure 11B includes establishing a savepoint (at block 1158), constructing an DRPC call (at block 1160), and executing the DRPC
at a remote site (at block 1162). If the execution is not successful, the changes since the savepoint are undone (at block 1172) and an exception is raised (at block 1174). If the execution is successful and no exceptions are raised during the execution, the record for this destination is deleted from the call nodes _Q$_ table (at block 1168), and processing continues at decision block 1169. At decision block 1169 (i.e., "additional destinations for call?"), if there are additional destinations for the current call, processing continues at decision block 1154 to processing any remaining calls. If there are no additional destinations for call, the modifications are committed at block 1170.
Conflicts The present invention provides the ability to identify conflicting IO modifications. For example, updates that have occurred to a remote copy of the data may be lost, if the replicated modification overwrites the current values in the remote copy. Thus, it is important to detect any conflicts.
Further, if a conflict is detected, the present invention provides the ability to communicate an exception, to rollback any changes to a data copy after an I5 exception is detected, and to incorporate exception handling in an application program. Exceptions and conflict information can be stored at the originating site, the destination site, or both.
- Conflict Detection -As stated previously, a row-level replicated deferred remote procedure call has both the old and new values as part of its parameters. Thus, a potential conflict can be detected by comparing the old values of the row at the original updating site with the current value of the row at the targeted site for the replicated modification. If the values are different, a conflict exists between the local and remote data copies.
..... T _ ..._ ~..__._.. _ ..._ As previously illustrated the present invention provides the ability for an application, such as the order processing example described herein, to include error detection. As illustrated in the order processing example, the place order remote process includes examination of the local and remote copies of the order status. Thus, the present invention provides the ability for an application to identify conflicts within one of its procedures.
- Treatment of Conflicts -When a conflict is detected, information regarding the conflict can be identified and stored in the exceptions table (see Figure 3). The fields of the exception table provide an error code and a descriptive error string. In addition, the exceptions tables provides keys into other replications tables.
This provides the ability to access the information stored in the replication tables associated with a DRPC in which the exception is raised.
For example, as a key into the transactions table, the exceptions table can contain a transaction identifier that corresponds to the current transaction being processed. To access the related entry in the calls table, the exceptions table further contains the call identifier of the current calls table entry being processed and the destination node (i.e., remote copy location). The calls table can be accessed using a procedure's call id.
In addition to retaining information regarding a conflict, the present invention provides the ability to undo a deferred transaction such that all updates deferred by the original transaction are undone. The execution of deferred calls is contingent upon successful commit of a deferring transaction.

If the deferring transaction is rolled back, the deferred calls' queue encoded in the replication is rolled back.
The present invention further provides the ability to incorporate error handling in an application. Thus, an error can be handled as soon as an error is detected, or deferred for later processing. The exceptions table provides the ability to address any errors after an application's normal processing. The subsequent error processing can be done with various degrees of operator intervention and automation. The present invention provides the flexibility IO to allow an application to address the type of error handling.
Multiple conflict routines can be supplied to be used to resolve a conflict when it arises. They can be called in order until one of them returns a successful return value. If none of the resolution routines are successful, the exception is retained as an exception.
Thus, a method and apparatus for data replication has been provided.
_.._. . _...._.~. .. .~. . _ . . _ _...

Claims (149)

1. A method of replicating data modifications in one or more computer systems comprising the steps of:
storing, in a first computer system, a first copy of a data item;
storing, in a second computer system, a second copy of a data item;
performing a first modification to said first copy of said data item;
storing information about said modification such that said modification can be applied to said second copy of said data item;
using said information about said first modification to perform a second modification to said second copy of said data item; and identifying any exceptional occurrence while performing said first modification or said second modification.
2. The method of claim 1 further wherein said exceptional occurrence is a conflict identified when performing said second modification.
3. A method of replicating data modifications in one or more computer systems comprising the steps of:
(a) storing, in a first computer system, a first copy of a data item;
(b) storing, in a second computer system, a second copy of a data item;
(c) performing a first modification to said first copy of said data item;
(d) storing information about said modification such that said modification can be applied to said second copy of said data item comprising the substeps of:
(i) retaining information regarding logical unit of work in a transactions relation;
(ii) retaining information regarding destinations at which said logical unit of work is to be performed in a transaction nodes relation;
(iii) retaining information regarding procedures for replicating said logical unit of work;
(iv) retaining information regarding one or more destinations at which said procedures are to be performed;
and (v) retaining information regarding exceptional conditions raised during said first modifications in an exceptions relation; and (e) using said information about said first modification to perform a second modification to said second copy of said data item.
4. The method of claim 3 wherein said step of retaining information in said transactions relation further comprises the steps of:
providing a logical unit identifier in said transactions relation such that said logical unit identifier uniquely identifies each occurrence of said logical unit in said transactions relation;
providing an ordering value for each occurrence in said transactions relation such that said ordering value identifies the order in which modifications associated with each occurrence were applied to said first copy of said data item;
providing a time value for each occurrence in said transactions relation such that said time value identifies the time at which modifications associated with each occurrence were applied to said first copy of said data item; and providing a user identifier for each occurrence in said transactions relation, said user identifier identifies the user invoking the modifications applied to said first copy of said data item.
5. The method of claim 3 wherein said step of retaining information in said transaction nodes relation further comprises the steps of:
providing a logical unit identifier in said transaction nodes relation, said logical unit identifier identifies each occurrence of said logical unit in said transaction nodes relation; and providing a destination identifier in said transaction nodes relation, said destination identifier uniquely identifies each location of said first copy of said data item to be modified.
6. The method of claim 3 wherein a transaction identifier and destination identifier pair uniquely identifies each occurrence in said transaction nodes relation.
7. The method of claim 3 wherein said step of retaining information regarding procedures further comprises the steps of:
storing said information regarding procedures in a calls relation;
providing a calls relation entry identifier in said calls relation that uniquely identifies an entry in said calls relation;
providing a logical unit identifier in said calls relation that uniquely identifies each occurrence of said logical unit in said calls relation;
providing a procedure identifier associated with each occurrence in said calls relation that identifies a logical series of steps for modifying said first copy of said data item; and providing a parameter count value for each occurrence in said calls relation such that said parameter count value identifies informational items used to complete a logical series of steps.
8. The method of claim 7 further including the step of:
providing parameter information that identifies a plurality of arguments for each occurrence.
9. The method of claim 8 wherein said parameter information is stored in said calls relation.
10. The method of claim 8 wherein said parameter information is stored in a parameters table.
11. The method of claim 10 wherein said parameters table further includes said call relation entry identifier and said logical unit identifier.
12. The method of claim 3 wherein said step of retaining information in said transactions relation further comprises the steps of:
providing a calls relation entry identifier in a parameters relation, said calls relation entry identifier associates each entry in said parameters relation with a logical series of steps; and providing a parameter ordering value, said parameter ordering value identifies the order in which each entry associated with one of said logical series of steps are listed in a string identifying said one of said logical series of steps.
13. The method of claim 3 wherein said step of retaining information in said exceptions relation further comprises the steps of:

providing a logical unit identifier in said exceptions relation, said logical unit identifier identifies each occurrence of said logical unit in said exceptions relation;
providing a destination identifier in said exceptions relation, said destination identifier uniquely identifies each location of said first copy of said data item to be modified;
providing a code value to identify an exceptional occurrence while performing said first modification or said second modification; and providing a descriptive value to identify said exceptional occurrence while performing said first modification or said second modification.
14. The method of claim 3 wherein said step of retaining information regarding said one or more procedure destinations further including the step of:
storing a mapping identifier in said transaction nodes relations to identify a mechanism for mapping said procedures to said one or more procedure destinations.
15. The method of claim 14 wherein said mapping mechanism is a call nodes relation, said call nodes relation uniquely identifies an occurrence of a procedure in said calls relation and a destination at which said occurrence of a procedure is to be performed.
16. A method of replicating a value-oriented change to copies of data in one or more computer systems comprising the steps of:
providing a first computer system containing a first copy of said data;
providing a second computer system containing a second copy of said data;
associating a procedure with said first copy of said data such that said procedure is invoked when a modification is made to said first copy of said data, and said procedure causes information associated with said modification to be stored in relations;
wherein when said modification is an update, said application of said modification to said second copy of said data consists of:
comparing an old value of said first data with a new value of said first copy of said data to identify changed data in said first copy of said data;
replacing a current value of said changed data in said second copy of said data with a new value of said first copy of said data.
17. The method of claim 16 wherein when said modification is a delete, said application of said modification to said second copy of said data consists of deleting said second copy of said data.
18. The method of claim 16 wherein when said modification is an insert, said application of said modification to said second copy of said data consists of creating said second copy of said data, said second copy of said data having the same value as said first copy of said data.
19. The method of claim 16 further including the steps of:
identifying any exceptional occurrence while performing said modification; and retaining information regarding said any exceptional occurrence in said relations.
20. The method of claim 19 wherein the step of identifying said any exceptional occurrence further comprises the steps of:
comparing an old value of said first copy of said data with a new value of said first copy of said data to identify changed data;
comparing an old value of said changed data with a current value of said changed data in said second copy of said data; and identifying an exception when said old value is not equal to said current value.
21. The method of claim 19 wherein the step of identifying said any exceptional occurrence further comprises the steps of:

comparing an old value of said first data with a current value of said second data; and identifying an exception when said old value is not equal to said current value.
22. A method of replicating a logic-oriented modification to copies of data in one or more computer systems comprising the steps of:
providing a first computer system containing a first copy of said data;
providing a second computer system containing a second copy of said data;
modifying said first copy of said data with a procedure containing a series of steps for modifying said data;
retaining information about said procedure in relations; and identifying any exceptional occurrence while performing said procedure.
23. The method of claim 22 further including the steps of:
accessing said information about said procedure; and executing said procedure to modify said second copy of said data.
24. The method of claim 22 wherein said step of identifying said any exceptional occurrence is incorporated in said procedure such that said procedure sets the circumstances that raise said exceptional occurrences.
25. The method of claim 22 further including the step of addressing said any exceptional occurrence.
26. The method of claim 25 wherein said procedure comprises said step of addressing said any exceptional occurrence, such that said procedure accommodates said any exceptional occurrence.
27. The method of claim 25 wherein said step of addressing said any exceptional occurrence is done by said procedure during execution of said procedure, and said information associated with said any exceptional occurrence is retained in said relations to be addressed after said execution of said procedure.
28. A method of replicating a value-oriented change to copies of data in one or more computer systems comprising the steps of:
providing a first computer system containing a first copy of said data;
providing a second computer system containing a second copy of said data; and associating a plurality of procedures with said first copy of said data and said second copy of said data;
invoking one of said plurality of procedures when a modification is made to an associated copy of said data;

determining whether said modification is of said first copy of said data by:
(i) setting a replication flag set to true when said modification is made to said first copy of said data;
(ii) storing information associated with said modification when said replication flag is false; and (iii) disregarding said information associated with said modification when said replication flag is true;
and storing information associated with said modification when said modification is of said first copy of said data.
29. A method of replicating a value-oriented change to copies of data in one or more computer systems comprising the steps of:
providing a first computer system containing a first copy of said data;
providing a second computer system containing a second copy of said data; and associating a plurality of procedures with said first copy of said data and said second copy of said data;
invoking one of said plurality of procedures when a modification is made to an associated copy of said data;
determining whether said modification is of said first copy of said data by:
(i) associating a first user identifier with said modification when said modification is of said first copy of said data;

(ii) associating a second user identifier with said modification when said modification is of said second copy of said data;
(iii) storing information associated with said modification when a user identifier associated with said modification is said first user identifier; and (iv) disregarding said information associated with said modification when said user identifier associated with said modification is said second user identifier; and storing information associated with said modification when said modification is of said first copy of said data.
30. A computer-implemented method of peer-to-peer data replication comprising the steps of:
performing data modifications to a first computer system and a second computer system;
generating propagation information associated with said data modifications on said first and said second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system; and performing a bi-directional replication of said data modifications using said propagation information, said bi-directional replication occurring between said first computer system and said second computer system, said replication initiated by either said first or said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer system.
31. The method as claimed in claim 30 further comprising the step of identifying exceptional occurrences while performing said data modifications.
32. The method as claimed in claim 31 further comprising the step of storing said propagation information and said exceptional occurrences in a plurality of database tables.
33. The method as claimed in claim 32 wherein said step of generating said propagation information further includes the steps of:
obtaining information regarding logical unit of work;
obtaining information regarding destinations at which said logical unit of work is to be performed;
obtaining information regarding procedures for replicating said logical unit of work;
obtaining information regarding destinations at which said procedures are to be performed; and obtaining information regarding exceptional conditions raised during said modifications.
34. The method as claimed in claim 33 wherein said step of performing data modifications is performed by a procedure.

64~
35. The method as claimed in claim 34 wherein said procedure comprises said step of identifying said exceptional occurrences.
36. The method as claimed in claim 35 wherein said procedure accommodates said exceptional occurrences.
37. The method as claimed in claim 36 wherein said procedure accommodates said exceptional occurrences by specifying multiple conflict routines that can be called in order until one of them returns a successful value.
38. An apparatus for peer-to-peer data replication comprising:
a means for performing data modifications to a first computer system and a second computer system;
a means for generating propagation information associated with said data modifications on said first and said second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system; and a means for performing a bi-directional replication of said data modifications using said propagation information, said bi-directional replication occurring between said first computer system and said second computer system, said replications initiated by either said first or said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer system.
39. The apparatus as claimed in claim 38 further comprising a means for identifying exceptional occurrences while performing said data modifications.
40. The apparatus as claimed in claim 39 further comprising:
a means for obtaining information regarding a logical unit of work;
a means for obtaining information regarding destinations at which said logical unit of work is to be performed;
a means for obtaining information regarding procedures for replicating said logical unit of work;
a means for obtaining information regarding destinations at which said procedures are to be performed;
and a means for obtaining information regarding exceptional conditions raised during said modifications.
41. The apparatus as claimed in claim 40 wherein said means for performing said data modification is a procedure.
42. The apparatus as claimed in claim 41 wherein said procedure includes a means for identifying and handling said exceptional occurrences.
43. An article of manufacture including one or more computer-readable media that embody a program of instructions for performing peer-to-peer data replication, wherein said program of instructions, when executed by respective processing means of a first computer system and a second computer system, causes said processing means to:
perform data modifications to said first computer system and said second computer system;
generate propagation information associated with said data modifications on said first and said second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system; and perform a bi-directional replication of said data modifications using said propagation information, said bi-directional replication occurring between said first computer system and said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer systems.
44. The article as claimed in claim 43 wherein said program of instructions causes said processing means to identify exceptional occurrences while performing said data modifications.
45. The article as claimed in claim 44 wherein said propagation information and said exceptional occurrences are stored in a plurality of database tables.
46. An article of manufacture including one or more computer-readable media that embody a program of instructions for performing peer-to-peer data replication, wherein said program of instructions, when executed by respective processing means of a first computer system and a second computer system, causes said processing means to:
perform data modifications to said first system and said second computer system;
generate propagation information associated with said data modifications on said first and second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system;
perform a bi-directional replication of said data modifications using said propagation information, said bi-directional replication occurring between said first computer system and said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer systems; and identify exceptional occurrences while performing said data modifications by executing a procedure that accommodates said exceptional occurrences by specifying multiple conflict resolution routines to be called in order until one of said multiple conflict resolution routines returns a successful value.
47. The method of claim 37 further comprising the step of storing said propagation information and said exceptional occurrences in one or more database tables.
48. The method of claim 37 wherein said step of generating said propagation information further includes the steps of:
obtaining information regarding a logical unit of work;
obtaining information regarding a procedure for replicating said logical unit of work; and obtaining information regarding a destination at which said procedure is to be performed.
49. The method of claim 48 wherein said step of obtaining information regarding a logical unit of work comprises the step of obtaining information regarding modification of a data value.
50. The method of claim 49 wherein said step of obtaining information regarding modification of a data value comprises the step of obtaining information regarding modification of a data value in a database.
51. The method of claim 48 further comprising the step of obtaining information regarding exceptional conditions raised during said data modifications.
52. The method of claim 48 wherein said step of obtaining information regarding a destination at which said procedure is to be performed comprises the step of obtaining information identifying one of a plurality of networked computers at which said procedure is to be performed.
53. The method of claim 37 wherein said step of identifying exceptional circumstances comprises the step of determining whether said data modifications to said first and second computer systems conflict.
54. The article of manufacture claimed in claim 46 wherein said program of instructions causes said processing means to store said propagation information and said exceptional occurrences in one or more database tables.
55. The article of manufacture claimed in claim 96 wherein said program of instructions causes said processing means to determine whether said data modifications to said first and second computer systems conflict.
56. A computer-implemented method for peer-to-peer data replication comprising the steps of:
performing a first modification to a first data value in a first computer and a second modification to a second data value in a second computer, said first and second data values being consistent prior to said first and second modifications;
generating modification information in said first and second computers indicative of said first and second modifications;
communicating said modification information between said first and second computers; and modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said modification information to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
57. The method of claim 56 wherein said step of modifying said first data value and said second data value based on said modification information comprises the step of identifying exceptional occurrences.
58. The method of claim 57 further comprising the step of storing said modification information and information indicative of at least one of said exceptional occurrences in one or more database tables.
59. The method of claim 57 wherein said step of modifying said first data value and said second value eased on said modification information comprises the step of executing a procedure to modify said first data value.
60. The method of claim 59 wherein execution of said procedure comprises said step of identifying exceptional occurrences.
61. The method of claim 57 wherein said step of identifying exceptional occurrences comprises the step of determining whether said data modifications to said first and second computer systems conflict.
62. The method of claim 56 wherein said step of generating said modification information further includes the steps of:
obtaining information regarding a logical unit of work;
obtaining information regarding a procedure for replicating said logical unit of work; and obtaining information regarding a destination at which said procedure is to be performed.
63. The method of claim 62 wherein said step of obtaining information regarding a logical unit of work comprises the step of obtaining information regarding modification of a data value.
64. The method of claim 63 wherein said step of obtaining information regarding modification of a data value comprises the step of obtaining information regarding modification of a data value in a database.
65. The method of claim 62 further comprising the step of obtaining information regarding exceptional conditions raised during said data modifications.
66. The method of claim 62 wherein said step of obtaining information regarding a destination at which said procedure is to be performed comprises the step of obtaining information identifying one of a plurality of networked computers at which said procedure is to be performed.
67. The method of claim 56 wherein said step of performing a first modification to a first data value comprises the step of setting an indicator in said first computer to indicate that said first modification has been performed in said first computer.
68. The method of claim 56 wherein said step of performing a first modification and said step of modifying said second data value based on said modification information precede said step of performing a second modification and said step of modifying said first data value based on said modification information.
69. An apparatus for peer-to-peer data replication comprising:
means for performing a first modification to a first data value in a first computer and a second modification to second data value in a second computer, said first and second data values being consistent prior to said first and second modifications;
means for generating modification information in said first and second computers indicative of said first and second modifications;
means for communicating said modification information between said first and second computers; and means for modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said modification information to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
70. The apparatus of claim 69 wherein said means for modifying said first data value and said second value based on said modification information comprises means for identifying exceptional occurrences.
71. The apparatus of claim 69 wherein said means for generating modification information comprises:
means for obtaining information regarding a logical unit of work;
means for obtaining information regarding a procedure for replicating said logical unit of work; and means for obtaining information regarding a destination at which said procedure is to be performed.
72. The apparatus of claim 71 wherein said means for obtaining information regarding a logical unit of work comprises means for obtaining information regarding modification of a data value.
73. The apparatus of claim 71 further comprising means for obtaining information regarding exceptional conditions raised during said data modifications.
74. The apparatus of claim 69 wherein said means for performing said data modification is a processor executing a procedure.
75. The apparatus of claim 74 wherein said procedure includes instructions which, when executed by said processor, cause said processor to identify and accommodate said exceptional occurrences.
76. An article of manufacture including one or more computer-readable media that embody a program of instructions for performing peer-to-peer data replication, wherein said program of instructions, when executed by a first computer and a second computer, causes said first computer and second computer to:
perform a first modification to a first data value stored in said first computer and a second modification to a second data value stored in said second computer, said first and second data values being consistent prior to said first and second modifications;

generate first modification information indicative of said first modification and second modification information indicative of said second modification;
communicate said first modification information from said first computer to said second computer and said second modification information from said second computer to said first computer; and modify, during a first time interval, said first data value based on said second modification information and said second data value based on said first modification information to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
77. The article of claim 76 wherein said program of instructions also causes said first computer to identify exceptional occurrences.
78. The article of claim 77 wherein said program of instructions causes said first computer to store said modification information and information indicative of at least one of said exceptional occurrences in one or more database tables.
79. The article of claim 76 wherein said program of instructions, when executed by said first computer, further causes said first computer to set an indicator in said first computer to indicate that said first modification has been performed in said first computer.
80. A method for maintaining duplication between a first data value and a second data value stored in respective first and second computers, the first and second computers remaining operational throughout a time interval over which said method is performed, said method comprising the computer-implemented steps of:
modifying the first data value to distinguish the first data value from the second data value;
communicating to the second computer information indicative of said step of modifying the first data value;
receiving in the second computer the information indicative of said step of modifying the first data value;
modifying the second data value to duplicate the first data value in response to said step of receiving in the second computer;
modifying the second data value to distinguish the second data value from the first data value;
communicating to the first computer information indicative of said step of modifying the second data value to distinguish the second data value from the first value;
receiving in the first computer the information indicative of said step of modifying the second data value;
and modifying the first data value to duplicate the second data value in response to said step of receiving in the first computer.
81. A computer-implemented method for peer-to-peer data replication comprising the steps of:
storing first and second copies of a first data value in respective first and second computers, each copy of the first and second copies of the first data value being modifiable prior to modification of the other copy of the first and second copies of the first data value;
performing a modification to any one of the first and second copies of the first data value to produce a second data value in a respective one of the first and second computers;
communicating modification information indicative of said modification from the respective one of the first and second computers to the other computer of the first and second computers; and modifying the remaining copy of the first and second copies of the first data value to produce a copy of the second data value in the other computer based on the modification information.
82. The method of claim 81 wherein said step of modifying the remaining copy of the first and second copies based on the modification information comprises the step of identifying one or more exceptional occurrences.
83. The method of claim 82 further comprising the step of storing in one or more database tables the modification information and information indicative of the one or more exceptional occurrences.
84. The method of claim 81 wherein said step of modifying the remaining copy of the first and second copies based on the modification information comprises the step of executing a procedure to modify the remaining copy of the first and second copies of the first data value.
85. The method of claim 81 further comprising the step of storing modification information in one or more tables in a database, said modification information being indicative of said step of performing a modification to any one of the first and second copies of the first data value.
86. The method of claim 85 wherein said step of storing modification information in one or more tables in a database comprises the step of queuing a plurality of database transactions in the one or more tables, the plurality of database transactions indicating operations necessary to replicate said step of performing a modification to any one of the first and second copies of the first data value.
87. The method of claim 85 wherein said step of storing modification information in one or more tables in a database comprises the step of storing an identification value in a transaction identification field of a transaction table, the identification value uniquely identifying the modification to any one of the first and second copies of the first data value.
88. The method of claim 85 wherein said step of storing modification information in one or more tables in a database comprises the step of storing information indicating a procedure executed to modify any one of the first and second copies of the first data value.
89. The method of claim 85 wherein said step of storing modification information in one or more tables in a database comprises the step of storing information indicating the second data value.
90. The method of claim 58 wherein said step of storing modification information in one or more tables in a database comprises the step of queuing a plurality of database transactions in the one or more tables, the plurality of database transactions indicating operations necessary to replicate said step of performing a first modification to a first data value in a first computer.
91. The method of claim 58 wherein said step of storing modification information in one or more tables in a database comprises the step of storing an identification value in a transaction identification field of a transaction table, the identification value uniquely identifying the first modification to the first data value in the first computer.
92. The method of claim 58 wherein said step of storing modification information in one or more tables in a database comprises the step of storing information indicating a procedure executed to modify the first data value in the first computer.
93. The method of claim 58 wherein said step of storing modification information in one or more tables in a database comprises the step of storing information indicating a data value to replace the first data value.
94. A computer-implemented method for peer-to-peer data replication comprising the steps of:
performing a first modification to a first data value in a first computer and a second modification to a second data value in a second computer, said first and second data values being consistent prior to said first and second modifications;
generating first modification information in said first computer that is indicative of said first modification and second modification information in said second computer that is indicative of said second modification;
communicating said first modification information from said first computer to said second computer in response to performing the first modification;
communicating said second modification information from said second computer to said first computer in response to performing said second modification; and modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said second modification information and said first modification information, respectively, to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
95. The method of claim 94 wherein said step of performing a first modification to a first data value comprises the step of setting an indicator in said first computer to indicate that said first modification has been performed in said first computer.
96. The method of claim 94 wherein said step of performing a first modification and said step of modifying said second data value based on said first modification information precede said step of performing a second modification and said step of modifying said first data value based on said second modification information.
97. The method of claim 94 wherein said step of modifying said first data value and said second data value based on said second and first modification information comprises the step of identifying exceptional occurrences.
98. The method of claim 97 further comprising the step of storing said first modification information and information indicative of at least one of said exceptional occurrences in one or more database tables.
99. The method of claim 98 wherein said step of storing said first modification information in one or more tables in a database comprises the step of queuing a plurality of database transactions in the one or more database tables, the plurality of database transactions indicating operations necessary to replicate said step of performing a first modification to a first data value in a first computer.
100. The method of claim 98 wherein said step of storing said first modification information in one or more tables in a database comprises the step of storing an identification value in a transaction identification field of a transaction table, the identification value uniquely identifying the first modification to the first data value in the first computer.
101. The method of claim 98 wherein said step of storing said first modification information in one or more tables in a database comprises the step of storing information indicating a procedure executed to modify the first data value in the first computer.
102. The method of claim 98 wherein said step of storing said first modification information in one or more tables in a database comprises the step of storing information indicating a data value to replace the first data value.
103. The method of claim 97 wherein said step of modifying said first data value and said second data value based on said second modification information and said first modification information, respectively, comprises the step of executing a procedure to modify said first data value.
104. The method of claim 103 wherein said step of identifying exceptional occurrences is incorporated into execution of said procedure.
105. The method of claim 97 wherein said step of identifying exceptional occurrences comprises the step of determining whether said first and second data modifications conflict.
106. The method of claim 94 wherein said step of generating said first modification information further includes the steps of:
obtaining information regarding a logical unit of work;
obtaining information regarding a procedure for replicating said logical unit of work; and obtaining information regarding a destination at which said procedure is to be performed.
107. The method of claim 106 wherein said step of obtaining information regarding a logical unit of work comprises the step of obtaining information regarding modification of a data value.
108. The method of claim 107 wherein said step of obtaining information regarding modification of a data value comprises the step of obtaining information regarding modification of a data value in a database.
109. The method of claim 106 further comprising the step of obtaining information regarding exceptional conditions raised during said first and second data modifications.
110. The method of claim 106 wherein said step of obtaining information regarding a destination at which said procedure is to be performed comprises the step of obtaining information identifying one of a plurality of networked computers at which said procedure is to be performed.
111. An apparatus for peer-to-peer data replication comprising:
means for performing a first modification to a first data value in a first computer and a second modification to a second data value in a second computer, said first and second data values being consistent prior to said first and second modifications;
means for generating first modification information in said first computer that is indicative of said first modification and second modification information in said second computer that is indicative of said second modification;
means for communicating said first modification information from said first computer to said second computer in response to performing the first modification;
means for communicating said second modification information from said second computer to said first computer in response to performing the second modification; and means for modifying during a first time interval said first data value in said first computer and said second data value in said second computer based on said second modification information and said first modification information, respectively, to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
112. The apparatus of claim 111 wherein said means for performing said first data modification is a processor executing a procedure.
113. The apparatus of claim 112 wherein said procedure includes instructions which, when executed by said processor, cause said processor to identify and accommodate said exceptional occurrences.
114. The apparatus of claim 111 wherein said means for modifying said first data value and said second data value based on said second modification information and said first modification information, respectively, comprises means for identifying exceptional occurrences.
115. The apparatus of claim 111 wherein said means for generating first modification information comprises:
means for obtaining information regarding a logical unit of work;
means for obtaining information regarding a procedure for replicating said logical unit of work; and means for obtaining information regarding a destination at which said procedure is to be performed.
116. The apparatus of claim 115 wherein said means for obtaining information regarding a logical unit of work comprises means for obtaining information regarding modification of a data value.
117. The apparatus of claim 115 further comprising means for obtaining information regarding exceptional conditions raised during said first and second data modifications.
118. An article of manufacture including one or more computer-readable media that embody a program of instructions for performing peer-to-peer replication, wherein said program of instructions, when executed by a first computer and a second computer, causes said first computer and said second computer to:

perform a first modification to a first data value stored in said first computer and a second modification to a second data value stored in said second computer, said first and second data values being consistent prior to said first and second modifications;
generate first modification information indicative of said first modification and second modification information indicative of said second modification;
communicate said first modification information to said second computer in response to performing the first modification and said second modification information to said first computer in response to performing the second modification; and modify, during a first time interval, said first data value and said second data value based on said second modification information and said first modification information, respectively, to restore consistency between said first and second data values, said first and second computers being operational throughout said first time interval.
119. The article of claim 118 wherein said program of instructions also causes said first computer to identify exceptional occurrences.
120. The article of claim 119 wherein said program of instructions causes said first computer to store said first modification information and information indicative of at least one of said exceptional occurrences in one or more database tables.
121. The article of claim 118 wherein said program of instructions, when executed by said first computer, causes said first computer to set an indicator in said first computer to indicate that said first modification has been performed in said first computer.
122. A method for maintaining duplication between a first data value and a second data value stored in respective first and second computers, the first and second computers remaining operational throughout a time interval over which said method is performed, said method comprising the computer-implemented steps of:
modifying the first data value so that the first data value is different from the second data value;
communicating to the second computer information indicative of said step of modifying the first data value in response to said step of modifying the first data value;
receiving in the second computer the information indicative of said step of modifying the first data value;
modifying the second data value to duplicate the first data value in response to said step of receiving in the second computer;
modifying the second data value so that the second data value is different from the first data value;
communicating to the first computer information indicative of said step of modifying the second data value so that the second data value is different from the first data value, said step of communicating to the first computer being in response to said step of modifying the second data value so that the second data value is different;
receiving in the first computer the information indicative of said step of modifying the second data value;
and modifying the first data value to duplicate the second data value in response to said step of receiving in the first computer.
123. A computer-implemented method for peer-to-peer data replication comprising the steps of:
storing first and second copies of a first data value in respective first and second computers, each copy of the first and second copies of the first data value being modifiable prior to modification of the other copy of the first and second copies of the first data value;
performing a modification to any one of the first and second copies of the first data value to produce a second data value in a respective one of the first and second computers;
communicating modification information indicative of said modification from the respective one of the first and second computers to the other computer of the first and second computers in response to said modification; and modifying the remaining copy of the first and second copies of the first data value to produce a copy of the second data value in the other computer based on the modification information.
124. The method of claim 123 further comprising the step of storing modification information in one or more tables in a database, said modification information being indicative of said step of performing a modification to any one of the first and second copies of the first data value.
125. The method of claim 124 wherein said step of storing modification information in one or more tables in a database comprises the step of queuing a plurality of database transactions in the one or more tables in a database, the plurality of database transactions indicating operations necessary to replicate said step of performing a modification to any one of the first and second copies of the first data value.
126. The method of claim 124 wherein said step of storing modification information in one or more tables in a database comprises the step of storing an identification value in a transaction identification field of a transaction table, the identification value uniquely identifying the modification to any one of the first and second copies of the first data value.
127. The method of claim 124 wherein said step of storing modification information in one or more tables in a database comprises the step of storing information indicating a procedure executed to modify any one of the first and second copies of the first data value.
128. The method of claim 124 wherein said step of storing modification information in one or more tables in a database comprises the step of storing information indicating the second data value.
129. The method of claim 123 wherein said step of modifying the remaining copy of the first and second copies based on the modification information comprises the step of identifying one or more exceptional occurrences.
130. The method of claim 129 further comprising the step of storing in one or more tables the modification information and information indicative of the one or more exceptional occurrences.
131. The method of claim 123 wherein said step of modifying the remaining copy of the first and second copies based on the modification information comprises the step of executing a procedure to modify the remaining copy of the first and second copies of the first data value.
132. A computer system for peer-to-peer data replication, said computer system comprising:

means for storing first and second copies of a first data value in respective first and second computers of said computer system, each copy of the first and second copies of the first data value being modifiable prior to modification of the other copy of the first and second copies of the first data value;
means for performing a modification to any one of the first and second copies of the first data value to produce a second data value in a respective one of the first and second computers;
means for communicating modification information indicative of said modification from the respective one of the first and second computers to the other computer of the first and second computers in response to said modification;
and means for modifying the remaining copy of the first and second copies of the first data value to produce a copy of the second data value in the other computer based on the modification information.
133. An article of manufacture comprising a computer-usable mass storage medium having computer readable program code embodied therein which, when executed by a first computer and a second computer, causes the first and second computers to perform computer-implemented peer-to-peer data replication by performing the steps of:
storing first and second copies of a first data value in the first and second computers, respectively, each copy of the first and second copies of the first data value being modifiable prior to modification of the other copy of the first and second copies of the first data value;
performing a modification to any one of the first and second copies of the first data value to produce a second data value in a respective one of the first and second computers;
communicating modification information indicative of said modification from the respective one of the first and second computers to the other computer of the first and second computers in response to said modification; and modifying the remaining copy of the first and second copies of the first data value to produce a copy of the second data value in the other computer based on the modification information.
134. A computer-implemented method for peer-to-peer data replication comprising the steps of:
storing a plurality of copies of a first data value in respective computers of a plurality of networked computers, each copy of the plurality of copies of the first data value being modifiable prior to modification of the others of the plurality of copies of the first data value;
performing a modification to any one of the plurality of copies of the first data value to produce a second data value in a respective one of the plurality of networked computers;
storing in a transaction table modification information indicating one or more database transactions executed to perform said modification, the transaction table including a transaction identifier field storing information uniquely identifying each of the one or more database transactions executed;
storing in a nodes table information indicating at least one other computer of the plurality of networked computers at which the one or more database transactions are to be executed;
communicating the modification information stored in the transaction table to each of the computers indicated by the information stored in the nodes table in response to said modification; and modifying remaining copies of the plurality of copies of the first data value to produce copies of the second data value based on the modification information.
135. A method for peer-to-peer data replication comprising the steps of:
storing first and second copies of a first data value in respective first and second computers, each copy of the first and second copies of the first data value being modifiable prior to modification of the other copy of the first and second copies of the first data value;
performing a modification to any one of the first and second copies of the first data value to produce a second data value in a respective one of the first and second computers;

communicating information that identifies a procedure for performing said modification from the respective one of the first and second computers to the other computer of the first and second computers; and executing the procedure in the other computer to modify the remaining copy of the first and second copies of the first data value to produce a copy of the second data value.
136. The method of claim 135 wherein the step of communicating information that identifies a procedure includes the step of executing a remote procedure call in the respective one of the first and second computers to invoke the procedure in the other computer.
137. The method of claim 135 further comprising the step of communicating to the other computer parameters that are used as arguments to the procedure when the procedure is executed.
138. The method of claim 135 further comprising the step of comparing at least one of the parameters to the remaining copy of the first and second copies of the first data value to confirm that the first and second copies of the first data value were consistent prior to said step of performing a modification.
139. An article of manufacture comprising a computer-usable mass storage medium having computer readable program code embodied therein which, when executed by a first computer and a second computer, causes the first and second computers to perform peer-to-peer data replication by performing the steps of:
storing first and second copies of a first data value in the first and second computers, respectively, each copy of the first and second copies of the first data value being modifiable prior to modification of the other copy of the first and second copies of the first data value;
performing a modification to any one of the first and second copies of the first data value to produce a second data value in a respective one of the first and second computers;
communicating information that identifies a procedure for performing said modification from the respective one of the first and second computers to the other computer of the first and second computers; and executing the procedure in the other computer to modify the remaining copy of the first and second copies of the first data value to produce a copy of the second data value.
140. The article of claim 139 wherein the step of communicating information that identifies a procedure includes the step of executing a remote procedure call in the respective one of the first and second computers to invoke the procedure in the other computer.
141. A computer-implemented method of peer-to-peer data replication comprising the steps of:
performing data modifications to a first computer system and a second computer system:
generating propagation information associated with said data modifications on said first and said second computer systems, said propagation information being retrievable and modifiable, said propagation information including information indicative of an operation to be performed on another computer system;
performing a bi-directional replication of said data modifications using said propagation information said bi-directional replication occurring between said first computer system and said second computer system, said replication initiated by either said first or said second computer system, said bi-directional replication resulting in consistent data between said first and said second computer system;
identifying exceptional occurrences while performing said data modifications; and wherein said step of performing data modifications is performed by a procedure and the procedure comprises the step of identifying said exceptional occurrences is incorporated into said procedure; and said procedure accommodates said exceptional occurrences by specifying multiple conflict resolution routines that can be called in order until one of said multiple conflict resolution routines returns a successful value.
142. The method of claim 141 wherein said step of generating said propagation information further includes the steps of:
obtaining information regarding a logical unit of work;
obtaining information regarding a procedure for replicating said logical unit of work; and obtaining information regarding a destination at which said procedure is to be performed.
143. The method of claim 142 further comprising the step of obtaining information regarding exceptional conditions raised during said data modifications.
144. The method of claim 142 wherein said step of obtaining information regarding a destination at which said procedure is to be performed comprises the step of obtaining information identifying one of a plurality of networked computers at which said procedure is to be performed.
145. The method of claim 142 wherein said step of identifying exceptional circumstances comprises the step of determining whether said data modifications to said first and second computer systems conflict.
146. The method of claim 141 further comprising the step of storing said propagation information and said exceptional occurrences in one or more database tables.
147. The method of claim 142 wherein said step of obtaining information regarding a logical unit of work comprises the step of obtaining information regarding modification of a data value.
148. The method of claim 147 wherein said step of obtaining information regarding modification of a data value comprises the step of obtaining information regarding modification of a data value in a database.
149. The method of claim 141 wherein said step of identifying exceptional occurrences includes the step of determining whether said data modifications to said first and second computer systems conflict.
CA002172517A 1993-09-24 1994-09-09 Method and apparatus for data replication Expired - Lifetime CA2172517C (en)

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US126,586 1980-03-03
US12658693A 1993-09-24 1993-09-24
PCT/US1994/010093 WO1995008809A2 (en) 1993-09-24 1994-09-09 Method and apparatus for data replication

Publications (2)

Publication Number Publication Date
CA2172517A1 CA2172517A1 (en) 1995-03-30
CA2172517C true CA2172517C (en) 2000-02-15

Family

ID=22425644

Family Applications (1)

Application Number Title Priority Date Filing Date
CA002172517A Expired - Lifetime CA2172517C (en) 1993-09-24 1994-09-09 Method and apparatus for data replication

Country Status (6)

Country Link
US (2) US5806075A (en)
AU (1) AU7684094A (en)
CA (1) CA2172517C (en)
DE (2) DE4497149T1 (en)
GB (1) GB2297181B (en)
WO (1) WO1995008809A2 (en)

Families Citing this family (363)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
AU6500596A (en) 1995-07-20 1997-02-18 Novell, Inc. Transaction log management in a disconnectable computer and network
AU6678096A (en) * 1995-07-20 1997-02-18 Novell, Inc. Transaction synchronization in a disconnectable computer and network
AU6500496A (en) * 1995-07-20 1997-02-18 Novell, Inc. Transaction clash management in a disconnectable computer and network
US5815649A (en) * 1995-10-20 1998-09-29 Stratus Computer, Inc. Distributed fault tolerant digital data storage subsystem for fault tolerant computer system
US5806074A (en) * 1996-03-19 1998-09-08 Oracle Corporation Configurable conflict resolution in a computer implemented distributed database
WO1997043724A1 (en) * 1996-05-10 1997-11-20 Aim Corporation Message searching system and terminal
US6148289A (en) * 1996-05-10 2000-11-14 Localeyes Corporation System and method for geographically organizing and classifying businesses on the world-wide web
US7349892B1 (en) 1996-05-10 2008-03-25 Aol Llc System and method for automatically organizing and classifying businesses on the World-Wide Web
US5878434A (en) * 1996-07-18 1999-03-02 Novell, Inc Transaction clash management in a disconnectable computer and network
US5995980A (en) * 1996-07-23 1999-11-30 Olson; Jack E. System and method for database update replication
ATE536588T1 (en) 1996-07-25 2011-12-15 Xcelera Inc WEB SERVER SYSTEM WITH PRIMARY AND SECONDARY SERVERS
US5832500A (en) * 1996-08-09 1998-11-03 Digital Equipment Corporation Method for searching an index
US5864863A (en) * 1996-08-09 1999-01-26 Digital Equipment Corporation Method for parsing, indexing and searching world-wide-web pages
US6073139A (en) * 1996-08-15 2000-06-06 Gioquest, A Division Of Schlumberger Technology Corp. Integrated data communication and data access system including the application data interface
US5943675A (en) * 1996-09-25 1999-08-24 Allen-Bradley Company, Llc Change log historian system for memory shared by multiple workstations
US6202085B1 (en) * 1996-12-06 2001-03-13 Microsoft Corportion System and method for incremental change synchronization between multiple copies of data
AU6336798A (en) 1997-02-27 1998-09-29 Siebel Systems, Inc. Method of synchronizing independently distributed software and database schema
US5899990A (en) * 1997-03-31 1999-05-04 Sun Microsystems, Inc. Java-to-Database Connectivity Server
US6021413A (en) * 1997-04-01 2000-02-01 The University Of Illinois Board Of Trustees Application-directed variable-granularity caching and consistency management
US5970488A (en) * 1997-05-05 1999-10-19 Northrop Grumman Corporation Real-time distributed database system and method
US5963959A (en) * 1997-05-30 1999-10-05 Oracle Corporation Fast refresh of snapshots
US5995981A (en) * 1997-06-16 1999-11-30 Telefonaktiebolaget Lm Ericsson Initialization of replicated data objects
US7082475B2 (en) * 1997-06-19 2006-07-25 International Business Machines Corporation Web server with automated workflow
US6701376B1 (en) * 1997-06-19 2004-03-02 International Business Machines Corporation Web server enabling browser access to HTML and Non-HTML documents
US5937409A (en) * 1997-07-25 1999-08-10 Oracle Corporation Integrating relational databases in an object oriented environment
US6012059A (en) * 1997-08-21 2000-01-04 Dataxel Corporation Method and apparatus for replicated transaction consistency
JP3391673B2 (en) * 1997-10-08 2003-03-31 富士通株式会社 Service management device, database collation method for service management device, and computer-readable recording medium recording database collation program
US5924096A (en) * 1997-10-15 1999-07-13 Novell, Inc. Distributed database using indexed into tags to tracks events according to type, update cache, create virtual update log on demand
US6178529B1 (en) 1997-11-03 2001-01-23 Microsoft Corporation Method and system for resource monitoring of disparate resources in a server cluster
US5946680A (en) * 1997-11-28 1999-08-31 International Business Machines Corporation Method of determining the unique ID of an object in a peer to peer configuration of object indexes
WO1999033007A1 (en) * 1997-12-22 1999-07-01 Rightworks Corporation System and method for collaborative data sharing
JPH11272538A (en) * 1998-03-26 1999-10-08 Mitsubishi Electric Corp Document management system
US6341339B1 (en) * 1998-03-26 2002-01-22 Compaq Computer Corporation Apparatus and method for maintaining data coherence within a cluster of symmetric multiprocessors
US20020107837A1 (en) * 1998-03-31 2002-08-08 Brian Osborne Method and apparatus for logically reconstructing incomplete records in a database using a transaction log
US6366917B1 (en) * 1998-04-01 2002-04-02 Webputty, Inc. Method of modifying a populated database structure by modifying metadata describing the database structure
US6449734B1 (en) 1998-04-17 2002-09-10 Microsoft Corporation Method and system for discarding locally committed transactions to ensure consistency in a server cluster
US6360331B2 (en) 1998-04-17 2002-03-19 Microsoft Corporation Method and system for transparently failing over application configuration information in a server cluster
US6243825B1 (en) 1998-04-17 2001-06-05 Microsoft Corporation Method and system for transparently failing over a computer name in a server cluster
US6163855A (en) * 1998-04-17 2000-12-19 Microsoft Corporation Method and system for replicated and consistent modifications in a server cluster
US6209129B1 (en) * 1998-05-01 2001-03-27 United Video Properties, Inc. Passive television program guide system with local information
US6304882B1 (en) * 1998-05-05 2001-10-16 Informix Software, Inc. Data replication system and method
US6484109B1 (en) * 1998-05-20 2002-11-19 Dli Engineering Coporation Diagnostic vibration data collector and analyzer
US6529904B1 (en) 1998-05-28 2003-03-04 Oracle Corp. Deployment of snapshots with parameterized data description language strings
US6792540B1 (en) 1998-05-28 2004-09-14 Oracle International Corporation Data replication security
US6847971B1 (en) * 1998-05-28 2005-01-25 Oracle International Corporation Lightweight data replication
US6532479B2 (en) * 1998-05-28 2003-03-11 Oracle Corp. Data replication for front office automation
US7162689B2 (en) 1998-05-28 2007-01-09 Oracle International Corporation Schema evolution in replication
US6604236B1 (en) 1998-06-30 2003-08-05 Iora, Ltd. System and method for generating file updates for files stored on read-only media
US6317754B1 (en) * 1998-07-03 2001-11-13 Mitsubishi Electric Research Laboratories, Inc System for user control of version /Synchronization in mobile computing
US6226650B1 (en) * 1998-09-17 2001-05-01 Synchrologic, Inc. Database synchronization and organization system and method
US6366902B1 (en) 1998-09-24 2002-04-02 International Business Machines Corp. Using an epoch number to optimize access with rowid columns and direct row access
US6343286B1 (en) 1998-09-24 2002-01-29 International Business Machines Corporation Efficient technique to defer large object access with intermediate results
US6470359B1 (en) 1998-09-24 2002-10-22 International Business Machines Corporation Fast technique for recovering an index on an auxiliary table
US6363389B1 (en) 1998-09-24 2002-03-26 International Business Machines Corporation Technique for creating a unique quasi-random row identifier
US6606617B1 (en) 1998-09-24 2003-08-12 International Business Machines Corporation Optimized technique for prefetching LOB table space pages
US6144970A (en) * 1998-09-24 2000-11-07 International Business Machines Corporation Technique for inplace reorganization of a LOB table space
US6694340B1 (en) 1998-09-24 2004-02-17 International Business Machines Corporation Technique for determining the age of the oldest reading transaction with a database object
US6343293B1 (en) 1998-09-24 2002-01-29 International Business Machines Corporation Storing the uncompressed data length in a LOB map to speed substring access within a LOB value
US8010627B1 (en) * 1998-09-25 2011-08-30 Sprint Communications Company L.P. Virtual content publishing system
US6289511B1 (en) * 1998-09-29 2001-09-11 Telephonaktiebolaget Lm Ericsson Method and system for distributing software in a telecommunications network
US6460051B1 (en) * 1998-10-28 2002-10-01 Starfish Software, Inc. System and methods for synchronizing datasets in a communication environment having high-latency or other adverse characteristics
US6449622B1 (en) * 1999-03-08 2002-09-10 Starfish Software, Inc. System and methods for synchronizing datasets when dataset changes may be received out of order
US6343299B1 (en) 1998-11-16 2002-01-29 International Business Machines Corporation Method and apparatus for random update synchronization among multiple computing devices
US6886012B1 (en) 1998-11-18 2005-04-26 International Business Machines Corporation Providing traditional update semantics when updates change the location of data records
US6397125B1 (en) * 1998-12-18 2002-05-28 International Business Machines Corporation Method of and apparatus for performing design synchronization in a computer system
US6557056B1 (en) * 1998-12-30 2003-04-29 Nortel Networks Limited Method and apparatus for exchanging data between transactional and non-transactional input/output systems in a multi-processing, shared memory environment
US6535892B1 (en) 1999-03-08 2003-03-18 Starfish Software, Inc. System and methods for exchanging messages between a client and a server for synchronizing datasets
US7756830B1 (en) * 1999-03-31 2010-07-13 International Business Machines Corporation Error detection protocol
US6298308B1 (en) 1999-05-20 2001-10-02 Reid Asset Management Company Diagnostic network with automated proactive local experts
US6473829B1 (en) * 1999-05-28 2002-10-29 International Business Machines Corporation Data storage device providing communication between processing units
US6122630A (en) * 1999-06-08 2000-09-19 Iti, Inc. Bidirectional database replication scheme for controlling ping-ponging
US6411967B1 (en) * 1999-06-18 2002-06-25 Reliable Network Solutions Distributed processing system with replicated management information base
US6529921B1 (en) 1999-06-29 2003-03-04 Microsoft Corporation Dynamic synchronization of tables
US6597700B2 (en) * 1999-06-30 2003-07-22 Nortel Networks Limited System, device, and method for address management in a distributed communication environment
US6446113B1 (en) * 1999-07-19 2002-09-03 Groove Networks, Inc. Method and apparatus for activity-based collaboration by a computer system equipped with a dynamics manager
US6859821B1 (en) * 1999-07-19 2005-02-22 Groove Networks, Inc. Method and apparatus for prioritizing data change requests and maintaining data consistency in a distributed computer system equipped for activity-based collaboration
US6393434B1 (en) * 1999-09-14 2002-05-21 International Business Machines Corporation Method and system for synchronizing data using fine-grained synchronization plans
US6694335B1 (en) 1999-10-04 2004-02-17 Microsoft Corporation Method, computer readable medium, and system for monitoring the state of a collection of resources
US6944642B1 (en) 1999-10-04 2005-09-13 Microsoft Corporation Systems and methods for detecting and resolving resource conflicts
US6578054B1 (en) 1999-10-04 2003-06-10 Microsoft Corporation Method and system for supporting off-line mode of operation and synchronization using resource state information
US6463501B1 (en) 1999-10-21 2002-10-08 International Business Machines Corporation Method, system and program for maintaining data consistency among updates across groups of storage areas using update times
EP1102191A3 (en) * 1999-11-17 2002-06-12 Nokia Corporation Method and apparatus for reconciling data between devices
US6493727B1 (en) * 2000-02-07 2002-12-10 Hewlett-Packard Company System and method for synchronizing database in a primary device and a secondary device that are derived from a common database
US6775708B1 (en) * 2000-02-08 2004-08-10 Microsoft Corporation Identification of transactional boundaries
US7028251B2 (en) * 2000-03-02 2006-04-11 Iora, Ltd. System and method for reducing the size of data difference representations
US6820213B1 (en) 2000-04-13 2004-11-16 Stratus Technologies Bermuda, Ltd. Fault-tolerant computer system with voter delay buffer
US6691257B1 (en) 2000-04-13 2004-02-10 Stratus Technologies Bermuda Ltd. Fault-tolerant maintenance bus protocol and method for using the same
US6687851B1 (en) 2000-04-13 2004-02-03 Stratus Technologies Bermuda Ltd. Method and system for upgrading fault-tolerant systems
US6708283B1 (en) 2000-04-13 2004-03-16 Stratus Technologies, Bermuda Ltd. System and method for operating a system with redundant peripheral bus controllers
US6633996B1 (en) 2000-04-13 2003-10-14 Stratus Technologies Bermuda Ltd. Fault-tolerant maintenance bus architecture
US6735715B1 (en) 2000-04-13 2004-05-11 Stratus Technologies Bermuda Ltd. System and method for operating a SCSI bus with redundant SCSI adaptors
AU2001264944A1 (en) * 2000-05-25 2001-12-03 Transacttools, Inc. A method, system and apparatus for establishing, monitoring, and managing connectivity for communication among heterogeneous systems
US6823355B1 (en) * 2000-05-31 2004-11-23 International Business Machines Corporation Synchronous replication of transactions in a distributed system
US7389208B1 (en) * 2000-06-30 2008-06-17 Accord Solutions, Inc. System and method for dynamic knowledge construction
KR100471567B1 (en) * 2000-07-29 2005-03-07 엘지전자 주식회사 Transaction Management Method For Data Synchronous In Dual System Environment
US6529917B1 (en) * 2000-08-14 2003-03-04 Divine Technology Ventures System and method of synchronizing replicated data
US6801921B2 (en) * 2000-09-08 2004-10-05 Hitachi, Ltd. Method and system for managing multiple database storage units
US6879996B1 (en) 2000-09-13 2005-04-12 Edward W. Laves Method and apparatus for displaying personal digital assistant synchronization data using primary and subordinate data fields
US20020083213A1 (en) * 2000-09-18 2002-06-27 Oberstein Brien M. Method and system for simulating and certifying complex business applications
JP4497691B2 (en) * 2000-09-27 2010-07-07 株式会社日立製作所 Database management method and management system
CN100437569C (en) * 2000-10-09 2008-11-26 最佳收益有限公司 Method and apparatus for data processing
GB2368411B (en) * 2000-10-25 2004-01-28 Proksim Software Inc Sharing data over a network
US6694337B1 (en) * 2000-10-26 2004-02-17 Intel Corporation Synchronizing databases
US6609126B1 (en) 2000-11-15 2003-08-19 Appfluent Technology, Inc. System and method for routing database requests to a database and a cache
US20020065899A1 (en) * 2000-11-30 2002-05-30 Smith Erik Richard System and method for delivering dynamic content
GB0031157D0 (en) * 2000-12-20 2001-01-31 Ncr Int Inc Streaming of data
US6973093B1 (en) 2000-12-29 2005-12-06 Cisco Technology, Inc. Switching fabric for interfacing a host processor and a plurality of network modules
US6959301B2 (en) * 2001-01-04 2005-10-25 Reuters Limited Maintaining and reconstructing the history of database content modified by a series of events
US7054887B2 (en) * 2001-01-30 2006-05-30 Ibm Corporation Method and system for object replication in a content management system
US6804672B1 (en) * 2001-01-31 2004-10-12 Oracle International Corporation Method and mechanism for dependency tracking
US6728719B1 (en) 2001-01-31 2004-04-27 Oracle International Corporation Method and mechanism for dependency tracking for unique constraints
US6714943B1 (en) 2001-01-31 2004-03-30 Oracle International Corporation Method and mechanism for tracking dependencies for referential integrity constrained tables
US20020107835A1 (en) * 2001-02-08 2002-08-08 Coram Michael T. System and method for adaptive result set caching
US20070276873A1 (en) * 2001-02-13 2007-11-29 Vahdat Amin M System and method for optimizing efficiency of replicated network services
US6766479B2 (en) 2001-02-28 2004-07-20 Stratus Technologies Bermuda, Ltd. Apparatus and methods for identifying bus protocol violations
US6662196B2 (en) 2001-03-16 2003-12-09 Iti, Inc. Collision avoidance in bidirectional database replication
US7103586B2 (en) * 2001-03-16 2006-09-05 Gravic, Inc. Collision avoidance in database replication systems
US7177866B2 (en) * 2001-03-16 2007-02-13 Gravic, Inc. Asynchronous coordinated commit replication and dual write with replication transmission and locking of target database on updates only
US7065672B2 (en) * 2001-03-28 2006-06-20 Stratus Technologies Bermuda Ltd. Apparatus and methods for fault-tolerant computing using a switching fabric
FR2824211B1 (en) * 2001-04-27 2003-06-27 Radio Electronique Aides Tech SYSTEM AND METHOD FOR COMMUNICATION BETWEEN STATIONS PROCESSING COMMON FOLDERS
WO2002091181A2 (en) * 2001-05-04 2002-11-14 Koninklijke Philips Electronics N.V. Method for charging information about an error in a database
US7111023B2 (en) * 2001-05-24 2006-09-19 Oracle International Corporation Synchronous change data capture in a relational database
US6996750B2 (en) * 2001-05-31 2006-02-07 Stratus Technologies Bermuda Ltd. Methods and apparatus for computer bus error termination
US7356550B1 (en) 2001-06-25 2008-04-08 Taiwan Semiconductor Manufacturing Company Method for real time data replication
US7499924B2 (en) * 2001-06-28 2009-03-03 International Business Machines Corporation Method for releasing update locks on rollback to savepoint
US20030004970A1 (en) * 2001-06-28 2003-01-02 Watts Julie Ann Method for releasing update locks on rollback to savepoint
US8234156B2 (en) 2001-06-28 2012-07-31 Jpmorgan Chase Bank, N.A. System and method for characterizing and selecting technology transition options
US20030004822A1 (en) * 2001-06-29 2003-01-02 Internatioanl Business Machines Corporation Method and apparatus for integrated multi-channel retailing
US20030033303A1 (en) * 2001-08-07 2003-02-13 Brian Collins System and method for restricting access to secured data
US20040205587A1 (en) * 2001-08-07 2004-10-14 Draper Stephen P.W. System and method for enumerating arbitrary hyperlinked structures in which links may be dynamically calculable
US6745209B2 (en) * 2001-08-15 2004-06-01 Iti, Inc. Synchronization of plural databases in a database replication system
US9659292B1 (en) * 2001-08-30 2017-05-23 EMC IP Holding Company LLC Storage-based replication of e-commerce transactions in real time
US7054867B2 (en) * 2001-09-18 2006-05-30 Skyris Networks, Inc. Systems, methods and programming for routing and indexing globally addressable objects and associated business models
US7493363B2 (en) 2001-09-19 2009-02-17 Microsoft Corporation Peer-to-peer group management and method for maintaining peer-to-peer graphs
GB2380830A (en) * 2001-10-13 2003-04-16 Hewlett Packard Co Automatic file sharing in a peer to peer network by use of constraints between file system domains
US7149761B2 (en) * 2001-11-13 2006-12-12 Tadpole Technology Plc System and method for managing the synchronization of replicated version-managed databases
US6915311B2 (en) 2001-12-05 2005-07-05 International Business Machines Corporation Database system for selective clearing of stored conflicting replicated documents by periodic application of a prioritized sequence of attributes with values to distinguish between replicated documents
US20030135552A1 (en) * 2002-01-14 2003-07-17 Blackstock Michael A. Method for discovering and discriminating devices on local collaborative networks to facilitate collaboration among users
US7024429B2 (en) 2002-01-31 2006-04-04 Nextpage,Inc. Data replication based upon a non-destructive data model
US6909910B2 (en) 2002-02-01 2005-06-21 Microsoft Corporation Method and system for managing changes to a contact database
GB0202600D0 (en) * 2002-02-05 2002-03-20 Ibm Consolidation of replicated data
US8966081B1 (en) * 2002-02-13 2015-02-24 Netapp, Inc. Method for device security in a heterogeneous storage network environment
US6779093B1 (en) * 2002-02-15 2004-08-17 Veritas Operating Corporation Control facility for processing in-band control messages during data replication
US7539735B2 (en) * 2002-03-06 2009-05-26 International Business Machines Corporation Multi-session no query restore
US20030172070A1 (en) * 2002-03-06 2003-09-11 Sawadsky Nicholas Justin Synchronous peer-to-peer multipoint database synchronization
US6901401B2 (en) * 2002-03-21 2005-05-31 International Business Machines Corporation System and method for database integrity via local database lockout
US7149759B2 (en) 2002-03-25 2006-12-12 International Business Machines Corporation Method and system for detecting conflicts in replicated data in a database network
US8738568B2 (en) 2011-05-05 2014-05-27 Oracle International Corporation User-defined parallelization in transactional replication of in-memory database
US7406486B1 (en) * 2002-04-10 2008-07-29 Oracle International Corporation Transforming transactions to increase parallelism when replicating
CA2384174A1 (en) * 2002-04-29 2003-10-29 Ibm Canada Limited-Ibm Canada Limitee Classification of data for insertion into a database
US7426559B2 (en) * 2002-05-09 2008-09-16 International Business Machines Corporation Method for sequential coordination of external database application events with asynchronous internal database events
US6978396B2 (en) * 2002-05-30 2005-12-20 Solid Information Technology Oy Method and system for processing replicated transactions parallel in secondary server
US8549114B2 (en) * 2002-06-12 2013-10-01 Bladelogic, Inc. Method and system for model-based heterogeneous server configuration management
US7613772B2 (en) * 2002-07-25 2009-11-03 Colligo Networks, Inc. Method for context based discovery and filtering of portable collaborative networks
US7065674B2 (en) * 2002-08-01 2006-06-20 Microsoft Corporation Computer system fault recovery using distributed fault-recovery information
US6976022B2 (en) 2002-09-16 2005-12-13 Oracle International Corporation Method and mechanism for batch processing transaction logging records
US7089448B2 (en) 2002-09-18 2006-08-08 Netezza Corporation Disk mirror architecture for database appliance
US7337351B2 (en) * 2002-09-18 2008-02-26 Netezza Corporation Disk mirror architecture for database appliance with locally balanced regeneration
US20040083158A1 (en) * 2002-10-09 2004-04-29 Mark Addison Systems and methods for distributing pricing data for complex derivative securities
US7340502B2 (en) * 2002-10-24 2008-03-04 Microsoft Corporation Method and apparatus for maintaining consistency of a shared space across multiple endpoints in a peer-to-peer collaborative computer system
US7340650B2 (en) 2002-10-30 2008-03-04 Jp Morgan Chase & Co. Method to measure stored procedure execution statistics
CN1248461C (en) * 2002-11-08 2006-03-29 华为技术有限公司 Method for handling information of signing contract to user in wireless local network
US7395536B2 (en) * 2002-11-14 2008-07-01 Sun Microsystems, Inc. System and method for submitting and performing computational tasks in a distributed heterogeneous networked environment
US7149752B2 (en) * 2002-12-03 2006-12-12 Jp Morgan Chase Bank Method for simplifying databinding in application programs
US7613812B2 (en) 2002-12-04 2009-11-03 Microsoft Corporation Peer-to-peer identity management interfaces and methods
US7085759B2 (en) 2002-12-06 2006-08-01 Jpmorgan Chase Bank System and method for communicating data to a process
US7370025B1 (en) 2002-12-17 2008-05-06 Symantec Operating Corporation System and method for providing access to replicated data
US7856454B2 (en) 2002-12-20 2010-12-21 Siebel Systems, Inc. Data model for business relationships
US8538840B2 (en) * 2002-12-20 2013-09-17 Siebel Systems, Inc. Financial services data model
US8032439B2 (en) 2003-01-07 2011-10-04 Jpmorgan Chase Bank, N.A. System and method for process scheduling
US7624158B2 (en) 2003-01-14 2009-11-24 Eycast Inc. Method and apparatus for transmission and storage of digital medical data
US7152076B2 (en) * 2003-01-23 2006-12-19 Microsoft Corporation System and method for efficient multi-master replication
US7533141B2 (en) * 2003-01-24 2009-05-12 Sun Microsystems, Inc. System and method for unique naming of resources in networked environments
US7596625B2 (en) * 2003-01-27 2009-09-29 Microsoft Corporation Peer-to-peer grouping interfaces and methods
US7401156B2 (en) 2003-02-03 2008-07-15 Jp Morgan Chase Bank Method using control interface to suspend software network environment running on network devices for loading and executing another software network environment
US7484087B2 (en) * 2003-02-24 2009-01-27 Jp Morgan Chase Bank Systems, methods, and software for preventing redundant processing of transmissions sent to a remote host computer
US8392298B2 (en) 2003-03-04 2013-03-05 Siebel Systems, Inc. Invoice adjustment data object for a common data object format
US8473399B2 (en) 2003-03-04 2013-06-25 Siebel Systems, Inc. Invoice data object for a common data object format
US20070208577A1 (en) * 2003-03-24 2007-09-06 Leon Maria T B Position common object
US7904340B2 (en) * 2003-03-24 2011-03-08 Siebel Systems, Inc. Methods and computer-readable medium for defining a product model
US9704120B2 (en) * 2003-03-24 2017-07-11 Oracle International Corporation Inventory balance common object
US7912932B2 (en) * 2003-03-24 2011-03-22 Siebel Systems, Inc. Service request common object
US8489470B2 (en) * 2003-03-24 2013-07-16 Siebel Systems, Inc. Inventory location common object
US8510179B2 (en) * 2003-03-24 2013-08-13 Siebel Systems, Inc. Inventory transaction common object
US7379998B2 (en) * 2003-03-31 2008-05-27 Jp Morgan Chase Bank System and method for multi-platform queue queries
US7039773B2 (en) 2003-04-29 2006-05-02 Oracle International Corporation Method and mechanism for efficient implementation of ordered records
US7406499B2 (en) * 2003-05-09 2008-07-29 Microsoft Corporation Architecture for partition computation and propagation of changes in data replication
US7366722B2 (en) 2003-05-15 2008-04-29 Jp Morgan Chase Bank System and method for specifying application services and distributing them across multiple processors using XML
US7509641B2 (en) * 2003-05-16 2009-03-24 Jp Morgan Chase Bank Job processing framework
US7533389B2 (en) * 2003-06-20 2009-05-12 Sun Microsystems, Inc. Dynamic loading of remote classes
US7243088B2 (en) * 2003-08-06 2007-07-10 Oracle International Corporation Database management system with efficient version control
US7805411B2 (en) * 2003-09-06 2010-09-28 Oracle International Corporation Auto-tuning SQL statements
US7269588B1 (en) 2003-09-24 2007-09-11 Oracle International Corporation Neighborhood locking technique for increasing concurrency among transactions
US20050091316A1 (en) * 2003-10-03 2005-04-28 Oscar Ponce System and method for creating and selectively sharing data elements in a peer-to-peer network
US7472254B2 (en) * 2003-10-10 2008-12-30 Iora, Ltd. Systems and methods for modifying a set of data objects
US7496648B2 (en) 2003-10-23 2009-02-24 Microsoft Corporation Managed peer name resolution protocol (PNRP) interfaces for peer to peer networking
US7644376B2 (en) * 2003-10-23 2010-01-05 Microsoft Corporation Flexible architecture for notifying applications of state changes
US7949996B2 (en) 2003-10-23 2011-05-24 Microsoft Corporation Peer-to-peer identity management managed interfaces and methods
US7555481B1 (en) 2003-10-28 2009-06-30 Oracle Corporation Method and apparatus for increasing transaction concurrency by early release of locks in groups
US7536421B2 (en) * 2003-10-31 2009-05-19 Landmark Technology Partners, Inc. Intelligent client architecture computer system and method
US8060619B1 (en) * 2003-11-07 2011-11-15 Symantec Operating Corporation Direct connections to a plurality of storage object replicas in a computer network
US20090222537A1 (en) * 2003-12-04 2009-09-03 Colligo Newworks, Inc., A Canadian Corporation System And Method For Interactive Instant Networking
US7500020B1 (en) 2003-12-31 2009-03-03 Symantec Operating Corporation Coherency of replicas for a distributed file sharing system
US7330860B2 (en) 2004-02-26 2008-02-12 International Business Machines Corporation Fault tolerant mechanism to handle initial load of replicated object in live system
US7490083B2 (en) * 2004-02-27 2009-02-10 International Business Machines Corporation Parallel apply processing in data replication with preservation of transaction integrity and source ordering of dependent updates
US8688634B2 (en) * 2004-02-27 2014-04-01 International Business Machines Corporation Asynchronous peer-to-peer data replication
US7433899B2 (en) * 2004-03-01 2008-10-07 International Business Machines Corporation Apparatus, system, and method for managing multiple copy versions
US7702767B2 (en) 2004-03-09 2010-04-20 Jp Morgan Chase Bank User connectivity process management system
US7757226B2 (en) * 2004-03-17 2010-07-13 Oracle International Corporation Method and mechanism for performing a rolling upgrade of distributed computer software
US8688803B2 (en) * 2004-03-26 2014-04-01 Microsoft Corporation Method for efficient content distribution using a peer-to-peer networking infrastructure
EP1618378A4 (en) * 2004-03-29 2008-10-08 Microsoft Corp Systems and methods for versioning based triggers
US20050218739A1 (en) * 2004-04-01 2005-10-06 Microsoft Corporation System and method for sharing objects between computers over a network
US9734222B1 (en) 2004-04-06 2017-08-15 Jpmorgan Chase Bank, N.A. Methods and systems for using script files to obtain, format and transport data
WO2005103928A1 (en) * 2004-04-22 2005-11-03 Waratek Pty Limited Multiple computer architecture with replicated memory fields
US7707179B2 (en) 2004-04-23 2010-04-27 Waratek Pty Limited Multiple computer architecture with synchronization
US7849452B2 (en) 2004-04-23 2010-12-07 Waratek Pty Ltd. Modification of computer applications at load time for distributed execution
US7376830B2 (en) 2004-04-26 2008-05-20 Jp Morgan Chase Bank System and method for routing messages
US20050251523A1 (en) * 2004-05-07 2005-11-10 Oracle International Corporation Minimizing downtime for application changes in database systems
US7788285B2 (en) * 2004-05-14 2010-08-31 Oracle International Corporation Finer grain dependency tracking for database objects
US8112296B2 (en) * 2004-05-21 2012-02-07 Siebel Systems, Inc. Modeling of job profile data
US7865390B2 (en) * 2004-05-21 2011-01-04 Siebel Systems, Inc. Modeling of employee performance result data
US7805407B1 (en) 2004-06-16 2010-09-28 Oracle America, Inc. System and method for dynamic configuration of replicated database servers
US7665127B1 (en) 2004-06-30 2010-02-16 Jp Morgan Chase Bank System and method for providing access to protected services
US7617501B2 (en) 2004-07-09 2009-11-10 Quest Software, Inc. Apparatus, system, and method for managing policies on a computer having a foreign operating system
US7392471B1 (en) 2004-07-28 2008-06-24 Jp Morgan Chase Bank System and method for comparing extensible markup language (XML) documents
US7571164B2 (en) * 2004-10-01 2009-08-04 Sap Ag System and method for deferred database connection configuration
US7447717B2 (en) * 2004-10-07 2008-11-04 International Business Machines Corporation Method of changing the page size of a DB2 table space while keeping the object available
US7739244B2 (en) * 2004-10-14 2010-06-15 Oracle International Corporation Operating logging for online recovery in shared memory information systems
US7739246B2 (en) * 2004-10-14 2010-06-15 Microsoft Corporation System and method of merging contacts
US20060085492A1 (en) * 2004-10-14 2006-04-20 Singh Arun K System and method for modifying process navigation
US7318064B2 (en) * 2004-10-28 2008-01-08 International Business Machines Corporation Using MD4 checksum as primary keys to link transactions across machines
US7933868B2 (en) * 2004-11-04 2011-04-26 Microsoft Corporation Method and system for partition level cleanup of replication conflict metadata
US7716660B2 (en) * 2004-12-14 2010-05-11 Microsoft Corporation Method and system for downloading updates
US20060136512A1 (en) * 2004-12-20 2006-06-22 International Business Machines Corporation Method and system for replicating data between a community of distributed entities
US9020887B2 (en) 2004-12-21 2015-04-28 Proofpoint, Inc. Managing the status of documents in a distributed storage system
US9332069B2 (en) 2012-12-28 2016-05-03 Wandisco, Inc. Methods, devices and systems for initiating, forming and joining memberships in distributed computing systems
US8364633B2 (en) * 2005-01-12 2013-01-29 Wandisco, Inc. Distributed computing systems and system components thereof
US9424272B2 (en) 2005-01-12 2016-08-23 Wandisco, Inc. Distributed file system using consensus nodes
US9361311B2 (en) 2005-01-12 2016-06-07 Wandisco, Inc. Distributed file system using consensus nodes
US8037056B2 (en) * 2005-02-18 2011-10-11 International Business Machines Corporation Online repair of a replicated table
US8214353B2 (en) * 2005-02-18 2012-07-03 International Business Machines Corporation Support for schema evolution in a multi-node peer-to-peer replication environment
US9286346B2 (en) * 2005-02-18 2016-03-15 International Business Machines Corporation Replication-only triggers
US7376675B2 (en) * 2005-02-18 2008-05-20 International Business Machines Corporation Simulating multi-user activity while maintaining original linear request order for asynchronous transactional events
US7797399B1 (en) * 2005-03-14 2010-09-14 Qurio Holdings, Inc. Method and system for allowing distributed importing of guest images in a peer-based photosharing network
CA2506303A1 (en) * 2005-04-14 2005-09-15 Rajesh Kapur Method for validating system changes safely by use of a replicated system as a system testbed
GB2445368A (en) * 2005-04-14 2008-07-09 Rajesh Kapur A method and system for preserving access to a system in case of a disaster allowing transaction rollback
GB2445584A (en) * 2005-05-04 2008-07-16 Rajesh Kapur Database backup and retrieval using transaction records and a replicated data store
US8028299B2 (en) 2005-04-21 2011-09-27 Waratek Pty, Ltd. Computer architecture and method of operation for multi-computer distributed processing with finalization of objects
US8036140B2 (en) 2005-04-22 2011-10-11 Microsoft Corporation Application programming interface for inviting participants in a serverless peer to peer network
US7571228B2 (en) 2005-04-22 2009-08-04 Microsoft Corporation Contact management in a serverless peer-to-peer system
US20060259466A1 (en) * 2005-05-10 2006-11-16 Sbc Knowledge Ventures Lp Updating configuration specifications in a historical database
KR101219069B1 (en) * 2005-05-30 2013-01-18 가부시키가이샤 한도오따이 에네루기 켄큐쇼 Semiconductor device and driving method thereof
US7979396B1 (en) * 2005-06-28 2011-07-12 Symantec Operating Corporation System and method for performing consistent resynchronization between synchronized copies
US7685170B2 (en) * 2005-08-04 2010-03-23 International Business Machines Corporation Journaling database queries for database replication
US8572516B1 (en) 2005-08-24 2013-10-29 Jpmorgan Chase Bank, N.A. System and method for controlling a screen saver
US8224968B1 (en) 2005-09-19 2012-07-17 At&T Intellectual Property Ii, L.P. Method and system for scalable content storage and delivery
JP2009512030A (en) * 2005-10-10 2009-03-19 ワラテック プロプライエタリー リミテッド Duplicate object graph
WO2007041762A1 (en) * 2005-10-10 2007-04-19 Waratek Pty Limited Modified machine architecture with partial memory updating
JP2009512081A (en) * 2005-10-17 2009-03-19 ワラテック プロプライエタリー リミテッド Multi-machine architecture with reduced overhead
AU2006303865B2 (en) * 2005-10-17 2011-09-08 Waratek Pty Limited Multiple machine architecture with overhead reduction
US8015236B2 (en) 2005-10-25 2011-09-06 Waratek Pty. Ltd. Replication of objects having non-primitive fields, especially addresses
US7958322B2 (en) 2005-10-25 2011-06-07 Waratek Pty Ltd Multiple machine architecture with overhead reduction
US7660960B2 (en) 2005-10-25 2010-02-09 Waratek Pty, Ltd. Modified machine architecture with partial memory updating
US7761670B2 (en) 2005-10-25 2010-07-20 Waratek Pty Limited Modified machine architecture with advanced synchronization
US7499933B1 (en) 2005-11-12 2009-03-03 Jpmorgan Chase Bank, N.A. System and method for managing enterprise application configuration
US8181016B1 (en) 2005-12-01 2012-05-15 Jpmorgan Chase Bank, N.A. Applications access re-certification system
US8291093B2 (en) * 2005-12-08 2012-10-16 Microsoft Corporation Peer-to-peer remediation
US7904949B2 (en) 2005-12-19 2011-03-08 Quest Software, Inc. Apparatus, systems and methods to provide authentication services to a legacy application
DE102006005840B4 (en) * 2006-02-08 2007-10-31 Combots Product Gmbh & Co. Kg A method of processing a data set together, and a network system and a communication system for performing the method
US8087075B2 (en) 2006-02-13 2011-12-27 Quest Software, Inc. Disconnected credential validation using pre-fetched service tickets
AU2007217109A1 (en) * 2006-02-16 2007-08-30 Gs Industrial Design, Inc. Method of freeing the bound oil present in whole stillage and thin stillage
US7913249B1 (en) 2006-03-07 2011-03-22 Jpmorgan Chase Bank, N.A. Software installation checker
US7895565B1 (en) 2006-03-15 2011-02-22 Jp Morgan Chase Bank, N.A. Integrated system and method for validating the functionality and performance of software applications
US7778183B2 (en) * 2006-03-31 2010-08-17 International Business Machines Corporation Data replica selector
US7480817B2 (en) * 2006-03-31 2009-01-20 International Business Machines Corporation Method for replicating data based on probability of concurrent failure
US7975036B2 (en) * 2006-05-11 2011-07-05 The Mitre Corporation Adaptive cross-layer cross-node optimization
US7769727B2 (en) * 2006-05-31 2010-08-03 Microsoft Corporation Resolving update-delete conflicts
US8429712B2 (en) 2006-06-08 2013-04-23 Quest Software, Inc. Centralized user authentication system apparatus and method
US7610172B2 (en) 2006-06-16 2009-10-27 Jpmorgan Chase Bank, N.A. Method and system for monitoring non-occurring events
US7953698B2 (en) * 2006-08-03 2011-05-31 Sybase, Inc. Replication system with methodology for replicating stored procedure calls
US7627611B2 (en) * 2006-08-17 2009-12-01 Osisoft, Inc. Conflict resolution in database replication through autonomous node qualified folding
US7546486B2 (en) * 2006-08-28 2009-06-09 Bycast Inc. Scalable distributed object management in a distributed fixed content storage system
US20080059469A1 (en) * 2006-08-31 2008-03-06 International Business Machines Corporation Replication Token Based Synchronization
US7958329B2 (en) 2006-10-05 2011-06-07 Waratek Pty Ltd Hybrid replicated shared memory
US20080120477A1 (en) * 2006-10-05 2008-05-22 Holt John M Contention detection with modified message format
US20080140973A1 (en) * 2006-10-05 2008-06-12 Holt John M Contention detection with data consolidation
US8473564B2 (en) 2006-10-05 2013-06-25 Waratek Pty Ltd. Contention detection and resolution
CN101548268B (en) * 2006-10-05 2014-05-21 瓦拉泰克有限公司 Advanced contention detection
WO2008040076A1 (en) * 2006-10-05 2008-04-10 Waratek Pty Limited Contention resolution with echo cancellation
US20100054254A1 (en) * 2006-10-05 2010-03-04 Holt John M Asynchronous data transmission
US20080114853A1 (en) * 2006-10-05 2008-05-15 Holt John M Network protocol for network communications
US20080127213A1 (en) * 2006-10-05 2008-05-29 Holt John M Contention resolution with counter rollover
US8095616B2 (en) 2006-10-05 2012-01-10 Waratek Pty Ltd. Contention detection
WO2008040064A1 (en) 2006-10-05 2008-04-10 Waratek Pty Limited Switch protocol for network communications
US7890457B2 (en) * 2006-10-20 2011-02-15 Oracle International Corporation Transactionally consistent database workload replay
US8086710B2 (en) 2006-10-30 2011-12-27 Quest Software, Inc. Identity migration apparatus and method
US7895332B2 (en) 2006-10-30 2011-02-22 Quest Software, Inc. Identity migration system apparatus and method
US7587435B2 (en) * 2006-11-10 2009-09-08 Sybase, Inc. Replication system with methodology for replicating database sequences
US8688749B1 (en) 2011-03-31 2014-04-01 Palantir Technologies, Inc. Cross-ontology multi-master replication
US7590672B2 (en) * 2006-12-11 2009-09-15 Bycast Inc. Identification of fixed content objects in a distributed fixed content storage system
US8417731B2 (en) * 2006-12-28 2013-04-09 Sap Ag Article utilizing a generic update module with recursive calls identify, reformat the update parameters into the identified database table structure
US8606799B2 (en) * 2006-12-28 2013-12-10 Sap Ag Software and method for utilizing a generic database query
US7730056B2 (en) * 2006-12-28 2010-06-01 Sap Ag Software and method for utilizing a common database layout
US7899917B2 (en) * 2007-02-01 2011-03-01 Microsoft Corporation Synchronization framework for occasionally connected applications
US20080208806A1 (en) * 2007-02-28 2008-08-28 Microsoft Corporation Techniques for a web services data access layer
US8332331B2 (en) * 2007-03-19 2012-12-11 Hewlett-Packard Development Company, L.P. Determining a price premium for a project
US8316190B2 (en) 2007-04-06 2012-11-20 Waratek Pty. Ltd. Computer architecture and method of operation for multi-computer distributed processing having redundant array of independent systems with replicated memory and code striping
US8566780B2 (en) * 2007-06-26 2013-10-22 Microsoft Corporation Object model based mapping
US7747899B2 (en) * 2007-06-26 2010-06-29 Microsoft Corporation Providing mapping fault processing
US8073922B2 (en) * 2007-07-27 2011-12-06 Twinstrata, Inc System and method for remote asynchronous data replication
US20090119349A1 (en) * 2007-11-07 2009-05-07 International Business Machines Corporation Methods and Computer Program Products for Efficient Conflict Detection in a Replicated Hierarchical Content Repository Using Replication Anchors
JP5088734B2 (en) * 2007-11-22 2012-12-05 インターナショナル・ビジネス・マシーンズ・コーポレーション Fault-tolerant transaction processing system and processing method
US8239345B2 (en) * 2007-12-27 2012-08-07 Microsoft Corporation Asynchronous replication
US7979393B2 (en) * 2008-02-22 2011-07-12 Microsoft Corporation Multiphase topology-wide code modifications for peer-to-peer systems
US7899850B2 (en) * 2008-02-22 2011-03-01 Bycast, Inc. Relational objects for the optimized management of fixed-content storage systems
US8150802B2 (en) * 2008-03-24 2012-04-03 Microsoft Corporation Accumulating star knowledge in replicated data protocol
US8108631B2 (en) * 2008-07-18 2012-01-31 Oracle America, Inc. Transactional memory support for non-coherent shared memory systems using selective write through caches
US20100049715A1 (en) * 2008-08-20 2010-02-25 Yahoo! Inc. Controlled parallel propagation of view table updates in distributed database systems
US20100106744A1 (en) * 2008-10-23 2010-04-29 Microsoft Corporation Conflict prevention for peer-to-peer replication
US20100125557A1 (en) * 2008-11-17 2010-05-20 Microsoft Corporation Origination based conflict detection in peer-to-peer replication
US9047277B2 (en) * 2008-12-18 2015-06-02 Adobe Systems Incorporated Systems and methods for synchronizing hierarchical repositories
US8898267B2 (en) * 2009-01-19 2014-11-25 Netapp, Inc. Modifying information lifecycle management rules in a distributed system
US8261033B1 (en) 2009-06-04 2012-09-04 Bycast Inc. Time optimized secure traceable migration of massive quantities of data in a distributed storage system
US8255984B1 (en) 2009-07-01 2012-08-28 Quest Software, Inc. Single sign-on system for shared resource environments
US8341134B2 (en) 2010-12-10 2012-12-25 International Business Machines Corporation Asynchronous deletion of a range of messages processed by a parallel database replication apply process
US8543543B2 (en) * 2011-09-13 2013-09-24 Microsoft Corporation Hash-based file comparison
US8782004B2 (en) * 2012-01-23 2014-07-15 Palantir Technologies, Inc. Cross-ACL multi-master replication
US9355120B1 (en) 2012-03-02 2016-05-31 Netapp, Inc. Systems and methods for managing files in a content storage system
US9264516B2 (en) 2012-12-28 2016-02-16 Wandisco, Inc. Methods, devices and systems enabling a secure and authorized induction of a node into a group of nodes in a distributed computing environment
US9824132B2 (en) * 2013-01-08 2017-11-21 Facebook, Inc. Data recovery in multi-leader distributed systems
US9720655B1 (en) 2013-02-01 2017-08-01 Jpmorgan Chase Bank, N.A. User interface event orchestration
US10002041B1 (en) 2013-02-01 2018-06-19 Jpmorgan Chase Bank, N.A. System and method for maintaining the health of a machine
US9088459B1 (en) 2013-02-22 2015-07-21 Jpmorgan Chase Bank, N.A. Breadth-first resource allocation system and methods
US9614932B2 (en) 2013-03-14 2017-04-04 Microsoft Technology Licensing, Llc Managing and implementing web application data snapshots
US9009215B2 (en) 2013-03-15 2015-04-14 Wandisco, Inc. Methods, devices and systems for dynamically managing memberships in replicated state machines within a distributed computing environment
US9619410B1 (en) 2013-10-03 2017-04-11 Jpmorgan Chase Bank, N.A. Systems and methods for packet switching
US9767178B2 (en) 2013-10-30 2017-09-19 Oracle International Corporation Multi-instance redo apply
US9542259B1 (en) 2013-12-23 2017-01-10 Jpmorgan Chase Bank, N.A. Automated incident resolution system and method
US9727625B2 (en) 2014-01-16 2017-08-08 International Business Machines Corporation Parallel transaction messages for database replication
US9868054B1 (en) 2014-02-10 2018-01-16 Jpmorgan Chase Bank, N.A. Dynamic game deployment
ES2881606T3 (en) 2014-03-31 2021-11-30 Wandisco Inc Geographically distributed file system using coordinated namespace replication
EP2954424B1 (en) 2014-05-05 2018-05-30 Huawei Technologies Co., Ltd. Method, device, and system for peer-to-peer data replication and method, device, and system for master node switching
US9536228B2 (en) 2014-07-31 2017-01-03 Gretel, LLC Contact management systems
US10097630B2 (en) * 2014-10-01 2018-10-09 Red Hat, Inc. Transferring data between sites
US9965359B2 (en) 2014-11-25 2018-05-08 Sap Se Log forwarding to avoid deadlocks during parallel log replay in asynchronous table replication
US10860604B1 (en) * 2014-12-10 2020-12-08 Amazon Technologies, Inc. Scalable tracking for database udpates according to a secondary index
US10031814B2 (en) 2015-04-14 2018-07-24 Microsoft Technology Licensing, Llc Collection record location as log tail beginning
US10133768B2 (en) * 2015-04-14 2018-11-20 Microsoft Technology Licensing, Llc Latest external dependee entity in transaction record
US9959137B2 (en) 2015-04-14 2018-05-01 Microsoft Technology Licensing, Llc Transaction redo using skip element for object
US10592494B2 (en) 2015-04-14 2020-03-17 Microsoft Technology Licensing, Llc Collection record for overlapping data stream collections
US10102251B2 (en) 2015-04-14 2018-10-16 Microsoft Technology Licensing, Llc Lockless open collection data structure
US10599630B2 (en) 2015-05-29 2020-03-24 Oracle International Corporation Elimination of log file synchronization delay at transaction commit time
US10528546B1 (en) 2015-09-11 2020-01-07 Cohesity, Inc. File system consistency in a distributed system using version vectors
US10936559B1 (en) 2016-09-28 2021-03-02 Amazon Technologies, Inc. Strongly-consistent secondary index for a distributed data set
US10534675B2 (en) 2016-09-30 2020-01-14 International Business Machines Corporation ACL based open transactions in replication environment
US11360942B2 (en) 2017-03-13 2022-06-14 Wandisco Inc. Methods, devices and systems for maintaining consistency of metadata and data across data centers
US11940990B1 (en) 2017-06-16 2024-03-26 Amazon Technologies, Inc. Global clock values for consistent queries to replicated data
US11314717B1 (en) 2017-06-23 2022-04-26 Amazon Technologies, Inc. Scalable architecture for propagating updates to replicated data
JP6733620B2 (en) * 2017-07-12 2020-08-05 京セラドキュメントソリューションズ株式会社 Image reading device and image reading method
US11061926B2 (en) * 2018-10-02 2021-07-13 Target Brands, Inc. Data warehouse management and synchronization systems and methods
US11263236B2 (en) * 2019-11-18 2022-03-01 Sap Se Real-time cross-system database replication for hybrid-cloud elastic scaling and high-performance data virtualization
US11250022B1 (en) 2020-09-29 2022-02-15 Amazon Technologies, Inc. Offline index builds for database tables
US11880385B1 (en) 2020-09-29 2024-01-23 Amazon Technologies, Inc. Ordering updates to secondary indexes using conditional operations

Family Cites Families (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4077059A (en) * 1975-12-18 1978-02-28 Cordi Vincent A Multi-processing system with a hierarchial memory having journaling and copyback
US4646229A (en) * 1982-11-15 1987-02-24 At&T Bell Laboratories Time-ordered data base
US4558413A (en) * 1983-11-21 1985-12-10 Xerox Corporation Software version management system
US4635189A (en) * 1984-03-01 1987-01-06 Measurex Corporation Real-time distributed data-base management system
US4631673A (en) * 1985-01-22 1986-12-23 International Business Machines Corporation Method for refreshing multicolumn tables in a relational data base using minimal information
US4648036A (en) * 1985-03-06 1987-03-03 At&T Bell Laboratories Method for controlling query and update processing in a database system
US4714992A (en) * 1985-11-26 1987-12-22 International Business Machines Corporation Communication for version management in a distributed information service
US5043871A (en) * 1986-03-26 1991-08-27 Hitachi, Ltd. Method and apparatus for database update/recovery
JPS63288357A (en) * 1987-05-20 1988-11-25 Hitachi Ltd Data editing system
US4853843A (en) * 1987-12-18 1989-08-01 Tektronix, Inc. System for merging virtual partitions of a distributed database
US4875159A (en) * 1987-12-22 1989-10-17 Amdahl Corporation Version management system using plural control fields for synchronizing two versions of files in a multiprocessor system
JPH0373037A (en) * 1989-05-26 1991-03-28 Hitachi Ltd Data base fault recovering method
US5170480A (en) * 1989-09-25 1992-12-08 International Business Machines Corporation Concurrently applying redo records to backup database in a log sequence using single queue server per queue at a time
KR940004389B1 (en) * 1989-10-13 1994-05-23 인터내셔널 비지네스 머신즈 코포레이션 Method and system for access plan generation to relational data base
JP3516344B2 (en) * 1990-10-22 2004-04-05 株式会社日立製作所 Multiple data processing method for distributed processing system
US5276871A (en) * 1991-03-18 1994-01-04 Bull Hn Information Systems Inc. Method of file shadowing among peer systems
US5261094A (en) * 1991-04-08 1993-11-09 International Business Machines Corporation Asynchronous replication of data changes by distributed update requests
US5280612A (en) * 1991-11-26 1994-01-18 International Business Machines Corporation Multiple version database concurrency control system
US5423037A (en) * 1992-03-17 1995-06-06 Teleserve Transaction Technology As Continuously available database server having multiple groups of nodes, each group maintaining a database copy with fragments stored on multiple nodes
JPH06324928A (en) * 1993-05-14 1994-11-25 Mitsubishi Electric Corp Log generating device, device for arbitrating versions different in file and device for arbitrating version different in computer file being at different places

Also Published As

Publication number Publication date
WO1995008809A2 (en) 1995-03-30
GB2297181A (en) 1996-07-24
CA2172517A1 (en) 1995-03-30
WO1995008809A3 (en) 1995-04-13
US5737601A (en) 1998-04-07
GB2297181B (en) 1997-11-05
US5806075A (en) 1998-09-08
AU7684094A (en) 1995-04-10
DE4497149T1 (en) 1996-10-17
GB9605419D0 (en) 1996-05-22
DE4497149B4 (en) 2005-02-10

Similar Documents

Publication Publication Date Title
CA2172517C (en) Method and apparatus for data replication
Maier et al. Development of an object-oriented DBMS
US9830348B2 (en) Persistent data storage techniques
CN104793988B (en) The implementation method and device of integration across database distributed transaction
US7949640B2 (en) Referential integrity, consistency, and completeness loading of databases
US5812849A (en) Software redevelopment system
US7113945B1 (en) Virtual storage device that uses volatile memory
US7249130B2 (en) Virtual storage devices
US7543181B2 (en) Recovery from failures within data processing systems
US8121978B2 (en) Database system providing improved methods for data replication
US7769714B2 (en) Automatic error correction for replication and instantaneous instantiation
Mueller et al. A nested transaction mechanism for LOCUS
US20080120304A1 (en) Method and system for providing high performance data modification of relational database tables
CN107357883A (en) Data migration method and device
WO1997035270A9 (en) Configurable conflict resolution in a computer implemented distributed database
WO1997035270A1 (en) Configurable conflict resolution in a computer implemented distributed database
Sheth et al. Using polytransactions to manage interdependent data
Frank et al. Semantic ACID properties in multidatabases using remote procedure calls and update propagations
Seltzer et al. LIBTP: Portable, modular transactions for UNIX
Colton Replicated data in a distributed environment
Pilarski et al. A novel checkpointing scheme for distributed database systems
Katz et al. Transaction Management for Design Databases
Stewart et al. Database architecture and design for PACS
Eriksson How to implement Bounded-Delay replication in DeeDS
Korth Edge locks and deadlock avoidance in distributed systems

Legal Events

Date Code Title Description
EEER Examination request
MKEX Expiry

Effective date: 20140909