WO2009147847A1 - データベース並行編集方式 - Google Patents
データベース並行編集方式 Download PDFInfo
- Publication number
- WO2009147847A1 WO2009147847A1 PCT/JP2009/002491 JP2009002491W WO2009147847A1 WO 2009147847 A1 WO2009147847 A1 WO 2009147847A1 JP 2009002491 W JP2009002491 W JP 2009002491W WO 2009147847 A1 WO2009147847 A1 WO 2009147847A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- edit
- record
- editing
- copy
- database
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/27—Replication, distribution or synchronisation of data between databases or within a distributed database system; Distributed database system architectures therefor
- G06F16/273—Asynchronous replication or reconciliation
Definitions
- the present invention implements parallel editing (hereinafter referred to as “parallel DB editing”) for a database (hereinafter referred to as “DB”).
- parallel DB editing parallel editing
- DB database
- Single DB access Operation to operate DB with only one computer. Since it is only this computer that can edit the DB, it is easy to prevent access conflicts, but it is not suitable for operations in which a plurality of computers access the DB.
- Server DB access A server computer (hereinafter “server”) manages the DB, and a terminal computer (hereinafter “PC”) accesses the server and accesses the DB through server processing. Since only one PC directly accesses the DB, it is easy to prevent access conflicts, and a vestigec lock cursor (Non-Patent Document 1) and a transaction lock (Non-Patent Document 2) are used.
- server manages the DB
- PC terminal computer
- Non-Patent Document 3 and Non-Patent Document 4 Attempts have been made to improve the efficiency of processing and communication by using a cache technology that performs processing by creating a working copy.
- Microsoft's ADO.NET copies the data necessary for the immediate work to the PC from the server, cuts the connection with the server, and then edits. After editing, connect to the server again and send the edited content to the server. If the information to be edited has already been changed from another terminal computer, later (this) editing is invalidated. . It can be said that it is a kind of editing lock if it is considered that “the editing is invalidated when the lock fails as a result”. This is called “optimistic concurrency control” (Non-Patent Document 3 and Non-Patent Document 4). However, the following inconveniences sometimes occur.
- Non-Patent Document 5 is an invention related to file caching, and when an editing conflict (competition in this application) is detected, editing is simply rejected (10th line from the lower right on page 7 of Non-Patent Document 5) and recorded.
- Create In Patent Document 1 when a server detects a DB editing collision, the server DB updated correctly is sent ("Solution means" and 36 levels).
- Patent Document 2 an update with a later update time is valid, and in Patent Document 1, an update with a later update time is valid. Neither of them solves the above problem.
- Patent Document 3 is an invention related to a condition for starting database synchronization, and the synchronization method merely shows a general synchronization concept of “synchronizing by notifying each other of update information”.
- Patent Document 4 is an invention for the purpose of “holding all update data” when an editing conflict occurs. The original is updated only when there is no conflict, and the object and contents are different from the present invention.
- Patent Literature 5, Patent Literature 6, Patent Literature 7, Patent Literature 8, and Patent Literature 9 were also investigated, but all differ from the present invention.
- JP 9-91184 A Japanese Laid-Open Patent Publication No. 2004-13867 Japanese Laid-Open Patent Publication No. 2004-86800 Japanese Laid-Open Patent Publication No. 2006-284998 Japanese Patent Laid-Open No. 11-161535 JP 2005-503606 Gazette JP 2005-508050 A JP-A-8-16447 Special table 2000-501532 gazette William R.
- Preparation A replica DB (hereinafter “local original DB”) in an initial state of an original DB (hereinafter “global original DB”) is placed on a plurality of PCs.
- local original DB an initial version, that is, an order number for identifying the update order, can be set.
- the effectiveness of editing can be determined using the version.
- Edited contents are general edited contents such as which information has been changed in what manner, which information has been added, and which information has been deleted.
- Edited version is the version of the local original DB to be edited, strictly speaking, the version of the local original DB that is the replication source of the work DB to be edited.
- the server records the edit records that have arrived from the PC together with the order of arrival.
- the PC requests the server to send unedited edit records, and receives these edit records and their order (arrival at the server). If an edit version is specified in the edit record, this is also received.
- Update of local original DB The PC extracts edit records in the specified order, determines the validity, and tries to update the “local original DB” based on the contents. When the version is set, the version of the local original DB is updated.
- the initial local original DBs of all the PCs are the same, and edit records of local editing in each PC are taken out in the order of arrival at the server, and the local original DB is updated. Since the editing information of the same content is processed in the same order and with the same logic to update the local original DB, the resulting local original DB of each PC is the same. This is the reason why the local original DB of each PC is synchronized without updating the global original DB on the server.
- the point is to give a unique order to the edit records created on each PC.
- the order up to the server is used, but this order may be changed or the order may be set by other methods.
- the order of uploading to the server may be changed according to its own criteria (for example, operator priority). It suffices if the order of taking out and updating the local original DB is the same on all related PCs.
- the server or a specific PC determines the order (or time) of the editing records (notifies the PC that creates or holds the editing records) and creates or holds the editing records.
- the PC which performs this may enter this order in the edit record and notify each other of the edit record. It suffices if the order of taking out and updating the local original DB is the same on all related PCs.
- each PC Since each PC updates the duplicate DB at their convenience, the progress of the update with the local original DB of each PC varies in real time, but after updating with a specific editing record The state of the local original DB is the same. That is, the local original DB of each PC is synchronized with the order of editing and recording as a common time axis.
- the “validity determination criterion” and the “local original DB update processing method” need to be the same in all related PCs. However, if it is the same, there is no restriction on the processing. If it is determined that all or part of each edit record is valid or invalid and the local original DB is updated in the same manner, the local original DB of each PC is set with the order of the edit records as a common time axis. Are synchronized.
- this PC receives the latest editing record from the server and updates the local original DB.
- the PC edits the local original DB and uploads the editing record.
- the editing record may have been uploaded to the server from another computer.
- the previous (unreceived) editing record is received from the server, the editing records are taken out in the designated order, and the local original DB is updated. In this process, some edits are determined to be valid and the local original DB is updated.
- the editing record that was uploaded earlier is taken out, the invariant confirmation range is investigated, and the validity is determined. If it is determined to be invalid, the operator of this PC confirms the fact of invalidity and the reason for the invalidation, and tries to edit again (for the latest information) if necessary. If there is a record of the original input that has been invalidated, it is easy to enter the contents again.
- the main points of the present invention are listed as follows.
- (Update 1) Each PC receives unedited edit records in order.
- (Update 2) The local original DB is updated using the received editing records in the designated order.
- (Edit 1) Each PC updates the local original DB and uploads this edit record to the server.
- (Premise 1) The contents of the initial local original DB of each PC are the same.
- (Premise 2) The content of the edit record used for updating the local original DB on each PC is the same.
- the order of editing records used for updating the local original DB in each PC is the same.
- (Premise 4) The logic used for updating the local original DB is the same on each PC.
- the criteria for determining the validity of the edit record and the update procedure of the local original DB are not particularly defined, but it is generally considered common to determine that editing based on old information is invalid. Therefore, in order to minimize the possibility that the editing PC determines that the editing is invalid, the latest editing record is received immediately before editing, the local original DB is updated, and this latest local original is updated. It is preferable to edit the DB and immediately edit the edit record after editing. If updated frequently, the local original DB is always kept up-to-date, so it can be said that “almost online operation”.
- the editing version, version setting range, and invariant confirmation range are recorded in the editing contents, but the handling of these information becomes simple. However, it is not always necessary to record the editing contents. Even if they are recorded separately, it is sufficient if these correspondences can be grasped by other computers.
- Invariant confirmation range is a range that affects this editing, and changing the value of information in this range indicates that this editing becomes meaningless. ing.
- the “invariant confirmation range” can be variously specified in accordance with the information handled by the DB, particularly the characteristics of the information to be edited, but it is natural to put the information to be edited in the “invariant confirmation range”.
- RDB relational DB
- (Improved-3) Edit record and its order The edit record to be recorded in the operation server and its order are not necessarily the same as the contents and the order in which the PC is up. If the edit records and the order thereof are the same for all PCs, the local original DB to which these edit records are applied synchronizes with the order of the edit records as a common time axis.
- the server or the PC in charge of management work may analyze the contents of the editing record, and delete a portion that becomes invalid due to an error or a redundant portion (same as doing nothing after all). There is no problem even if an error edit record or redundant edit record is deleted and the edit record is deleted as a result. Even if the order of editing and recording is changed, if the order used for (update of local original DB) processing in all PCs is the same, the local original DB of each PC is synchronized using the order of editing and recording as a common time axis.
- the unit for assigning an introductory version of the version setting range and managing editing need not be an actual DB. If a part closely related to the influence of information correction is identified and set as a “version setting range”, and a version is set for each, it becomes easy to manage editing and version transition for that range.
- the setting of the version setting range depends on the structure and contents of information handled by the DB, it cannot be determined without such knowledge, but in the case of RDB, it is logically related to records, tables, and tables. A table group, a specific record group among them, an entire DB, and the like are assumed.
- the medical personal information will be described as an example.
- a set of personal medical records is set as the setting of the version setting range. If one or more rows in the table are personal information, a version is set for this.
- the DB has a lot of personal information, and a version is set for each.
- the edit record there are one or more sets of “edit contents”, “edit version”, and “invariant confirmation range” corresponding to the individual.
- the “invariant confirmation range” may be set appropriately in accordance with the correction contents, whether it is the entire personal record or limited to the corrected information (record in the case of RDB). If a table is configured for each personal information, a version is set for each table.
- the version may be updated when the contents of the local original DB are actually updated, or the version may be updated every time an attempt is made to change the original DB in the change record regardless of whether there is a valid update.
- the time when the development server received the editing as the version may be used as the version.
- the version described in this specification will be read as this reception time. Previously, the version was described as an order number for identifying a sequence, but there is no problem because the time also represents the order.
- the development PC with the version of the synchronous access time to the server obtains the time (from the server etc.) that accesses the server and confirms whether there is an unreceived edit record, and uses that time as the version A method is also possible. For each confirmation, a new time of the local original DB is set as a version even if there is no unreceived edit record. If there are unreceived editing records, these are received, the local original DB is updated using them, and this time is set as the version of the local original DB. Since the editing of the local original DB with newer synchronous access is given priority, it is a rule that can be easily understood and understood by those who operate one DB in competition.
- the local original DB does not need to be synchronized with the entire global original DB, and it is sufficient if it is synchronized with a necessary part thereof. As a result, the size of the local original DB is reduced, and the synchronization (keeping the contents up to date) becomes light.
- One method is a method in which the server invalidates the editing that has been uploaded to the prohibited section. It is a reliable method that makes use of X editing and does not cause contradictions. However, the effort on the side of creating this invalidated edit is wasted.
- the PC that performs the editing X may be directly transmitted to another PC, or the PC that performs the editing X may be transmitted to the server and may be transmitted from the server to each PC.
- the PC that performs editing X informs the server that editing of other PCs is prohibited at the time of requesting the server for the latest editing record before performing editing X.
- the server that requested the latest editing record to the server may be notified of the prohibition of editing from the server, or may be notified together with a response to an inquiry about an unreceived editing record.
- this PC does not perform editing even if the local original DB is updated. Then, the server requests the server for the latest editing record, and sends up to the editing record X. At the same time, the release of the prohibition of editing is notified. After updating the local original DB with the edit record X, this PC starts editing for this.
- Parallel editing in this specification means that a copy of all or part of information in a global original DB (real or virtual) (intuitively DB original) is stored in a local original DB (intuitively in a PC). It is held as “Duplicate DB”) and edited. Editing information on the duplicate DB held by each PC is exchanged by the PC to update each duplicate DB. The reason why the replicated DBs of each PC are synchronized is that each PC updates each replicated DB using the same editing information in the same order. This is expressed in claim 1. Claim 2 is an expression of claim 1 by an apparatus.
- a process for confirming the validity of the edit record is added to the process D of the first aspect.
- Claim 4 shows that the concept of “invariant confirmation range” that affects editing is added to claim 3, and the validity of the edit record is confirmed using this concept.
- Claim 5 shows that the concept of the version of the duplicate DB is added to claim 3, and the validity of the edit record is confirmed using this.
- Claim 6 is the case where the version is designated as a part of information or a combination of information in the replication DB.
- the seventh aspect is based on the fifth aspect, and is added to update the version of the duplicate DB even if the validity is denied.
- Claim 8 is a method based on claim 5 in which the server enters the date and time of the upload in the uploaded edit record, and the PC uses this as the version of the duplicate DB.
- a ninth aspect of the present invention is a method based on the fifth aspect, wherein the time when the PC accesses the server (from the server) is used as a version of the duplicate DB.
- Parallel DB editing solves this problem, but several problems have been pointed out in the method based on the cache technology.
- a local original DB synchronized with a virtual or real global original DB is created and used as a permanent cache. Then, the local original DB is synchronized with the global original DB when necessary, such as immediately before editing the local original DB.
- problems such as the overhead of the conventional method of creating a copy for each editing and the determination of the cache validity are solved.
- the object to be held and synchronized by the local original DB does not have to be the entire global original DB, but only a part of information necessary for the computer.
- the local original DB of the patient computer holds only the medical information of the individual patient
- the local original DB of the doctor computer holds only the medical information of the patient in charge. This solves the problem of the appropriate amount of cache, which was a problem with the conventional method.
- Advantages of performing processing such as “determination of validity of editing record” and “update of local original DB” on the PC instead of the server are as follows. (1) If the necessary editing records and their order are taken in, communication with the server is unnecessary, and the response corresponding to the subsequent user operation is quickened. (2) Since the process of updating the local original DB is performed on this PC, the range of information (records) affected by specific editing can be investigated in detail. Further, more detailed information can be displayed according to the operator's request. (3) Generally, the computing power of individual computers is often surplus, and the processing is faster than placing processing on a server where processing load is concentrated. The response corresponding to the user's operation is accelerated due to the synergistic effect with the above (1).
- editing is up. 0616 Confirmation (to PC-A) and synchronization (by PC-A).
- the synchronization is new editing and acquisition of the order thereof, and the same applies to the description of other symbols.
- 0617 Synchronization (by PC-B) 0618 Editing (by PC-B operator) 0619 Send edit (by PC-B).
- editing is up. 0621 Confirmation (notification to PC-B) and synchronization (by PC-B).
- FIG. 1 shows the configuration of a typical computer 0101.
- An arithmetic device 0103, a main storage device 0104, a secondary storage device 0106, an input / output device 0107, and a display device 0108 are connected by a bus 0109.
- the “database” mentioned in each claim is the DB 0111 in the secondary storage device 0106 or the DB 0105 in the main storage operation 0104.
- the program is recorded in the secondary storage device 0106.
- the program is activated, the program is expanded to the main storage operation 0104, and the arithmetic unit 0103 operates according to the procedure specified in the program.
- the computer is reconfigured into a collection of means for realizing the operation intended by the program developer.
- a DB operation by a program is performed after all or a part of the DB is expanded to the main memory operation 0104.
- the DB 0105 in which all or part of the DB 0111 in the secondary storage device 0106 is expanded to the main memory operation 0104 is operated, and the editing result is written in the DB 0111 in the secondary storage device 0106.
- the DB is in the secondary storage device 0106 and will be discussed without distinction from the DB 0105 expanded in the main storage operation 0104. Therefore, in FIG. 2, the DB is simply displayed as the DB in the storage devices 0204 and 0205.
- a PC 0201 receives the editing records, and the local original DB 0206 of the PC is updated will be described with reference to FIG.
- a PC 0201 is connected to a server 0203 via a communication network 0202 such as the Internet.
- a communication network 0202 such as the Internet.
- the PC 0201 has a storage device 0204, in which a local original DB 0206 is recorded.
- the initial value of the local original DB 0206 is a copy of the global initial original DB 0207 of the storage device 0205 of the server 0203.
- the editing unit 0213 performs editing.
- the local original DB 0206 is not directly edited, and the editing result is the work DB 0209.
- edit record 0208 is created.
- an edit version that is, a version set in the local original DB is recorded.
- the edit record 0208 is sent to the server 0203 via the communication network 0202 by the transmission means 0215.
- the server 0203 is received by the receiving means 0221 and added to the columns of the edit record 10218 and the edit record m0219.
- An edit version and the like are recorded in the edit record. If an edit version is sent to the server separately from the edit record, the server records their correspondence.
- the PC 0201 When the PC 0201 attempts to update the local original DB 0206, it first requests the server to transmit an unreceived edit record. When the PC 0201 notifies the last version of the edit record received so far, the transmission / reception management unit selects the subsequent edit record and sends it from the server by the transmission unit 0220.
- the PC transmission / reception cooperative work is performed by the transmission / reception management unit 0217, and the server transmission / reception cooperative work is performed by the transmission / reception management unit 0222.
- the edit record n0210, edit record n + 12011, and edit record m0212 received by the receiving unit 0216 by the PC 0201 are recorded in the storage device 0204.
- the update unit 0214 extracts them in order, determines the validity, updates the local original DB 0206, and updates the version.
- FIG. 3 shows a process of uploading an edit record (that is, “edit record”) performed on the local original DB held by the PC to the server.
- “Reserve editing record (memory area)” 0301 is executed.
- “Obtain version of this version setting range and fill in edit record” 0304, “Identify invariant confirmation range corresponding to information to be edited and fill in edit record” 0305, “Identify information to be edited Information and editing contents are entered in the edit record "0306.
- FIG. 4 shows a process of receiving from the server the editing record for the local original DB and the order designated for them.
- FIG. 5 shows the processing steps of the updating means 0214 for updating the local original DB with the edit record received from the server.
- the time is acquired from the server in the process of FIG. 4, and the time is acquired at the end of the process of FIG. Set as version.
- the change in version in one embodiment is illustrated in FIG.
- the DB in FIG. 6 is an RDB, and the version setting range is the entire DB, the version is an integer, and the invariant confirmation range is only the edited record.
- the edit version at the time of editing this record is recorded as “record version” for each record, and the validity of the edit is confirmed using this.
- PC-A 0602 and PC-B 0603 obtain the global initial original DB 0604 0610 and 0611, respectively, and set them as the local original DB 0605 and 0606, respectively. Since the global initial original DB 0604 of the server is copied, the base version of both is 0. Thereafter, Edit 1 to Edit 6 are uploaded to the server 0601. This is an edit uploaded by a PC other than PC-A0602 and PC-B0603. In FIG. 2, the PC-A 0602 accesses the server again, and edits the latest edition at that time and acquires the order 0612. At this time, since the edit 1 is taken in, the version of the local original DB 0605 becomes 1.
- the PC-B 0603 obtains the edit 6 (latest as of this synchronization 0617) from the edit 0 from the server 0601 and updates the local original DB 0606 to 6 as the base version. Thereafter, it is assumed that the operator of the PC-B 0603 edits “Replica 0609 of record Z” 0618. At this time, the record version of “duplicate record Z 0609” becomes 6, and is uploaded to the server as an edit and is recorded as 0619 and edit 8.
- the PC-A 0602 accesses the server 0601 and acquires editing 8 and editing 9 uploaded after editing 7 (already acquired) 0622.
- edit 8 and edit 9 are sequentially applied to the local original DB 0608, “edit validity determination” is performed, and the local original DB 0608 is updated.
- the base version of the manufactured DB 0608 becomes 9.
- the contents of the copy 0609 of the record Z edited by the PC-B0603 become valid in the local original DB0605 of the PC-A0602, and the contents of the duplicate 0608 of the record Z edited by the PC-A0602 become invalid. It becomes clear (by PC-A0602).
- a database is placed on a server and a plurality of computers access it in general.
- the present invention proposes a full-fledged “parallel DB editing” in which a computer permanently holds a replicated DB, so that a mobile object that frequently occurs in a case where connection to a server is impossible, rescue in the event of a disaster, It can be used for so-called mission critical tasks such as medical care and finance.
Landscapes
- Engineering & Computer Science (AREA)
- Databases & Information Systems (AREA)
- Theoretical Computer Science (AREA)
- Computing Systems (AREA)
- Data Mining & Analysis (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
Description
ひとつの計算機のみでDBを操作する運用。DBに対する編集が行えるのはこの計算機のみであるので、アクセスの競合防止は容易であるが、複数の計算機がDBにアクセスする運用には適さない。
サーバー計算機(以下「サーバー」)がDBを管理し、端末計算機(以下「PC」)はサーバーにアクセスしサーバーの処理を通じてDBにアクセスする運用。DBに直接アクセスするのはひとつのPCのみであるので、アクセスの競合防止は容易で、ベシミステックロックカーソル(非特許文献1)やトランザクションのロック(非特許文献2)が用いられている。
複数のPCに、原本DB(以下「グローバル原本DB」)の初期状態の複製DB(以下「ローカル原本DB」)を置く。このローカル原本DBには初期のバージョン、つまり更新の順番を識別する順序数、を設定する事が出来る。バージョンを用いて編集の有効性を判定が可能である。
各PCはそのローカル原本DBに対するローカルな編集を行う。この編集の前にローカル原本DBの作業用の複製を作成し、編集はこの複製に対して行う。また、編集時にはその編集内容を記録した「編集記録」を作成する。この編集記録には少なくとも「編集内容」が記録されるが、これに加え「編集バージョン」などを記録しても良い。
各PCは「編集記録」をサーバーに送信する。「編集記録」と「編集バージョン」を分けて記録している場合には、「編集記録」との対応を明示して「編集バージョン」も送信する。なお、「編集記録」の中に「編集バージョン」を記録する運用が、簡単で現実的と思われる。
サーバーは、PCから到着した編集記録を、その到着の順番と共に記録しておく。
PCはサーバーに対して、未受信の編集記録の送信を要求し、これらの編集記録、その(サーバーへの到着の)順番を受信する。編集記録に編集バージョンが指定されていれば、これも受信する。
PCは指定された順番で編集記録を取り出し、その有効性を判定し、その内容に基づき、「ローカル原本DB」の更新を試みる。バージョンが設定されている場合はローカル原本DBのバージョンを更新する。
(更新1)各PCは未受信の編集記録を順番に受信する。
(更新2)受信した編集記録を指定の順番で用いて、ローカル原本DBの更新を行う。
(編集1)各PCはローカル原本DBに対する更新を行い、この編集記録をサーバーにアップする。
(前提1)各PCの初期のローカル原本DBの内容は同じ。
(前提2)各PCでローカル原本DBの更新に用いる編集記録の内容が同じ。
(前提3)各PCでローカル原本DBの更新に用いる編集記録の順番が同じ。
(前提4)各PCでローカル原本DBの更新に用いるロジックが同じ。
本発明では、編集記録の有効性の判定基準やローカル原本DBの更新手順を特に規定するものではないが、一般に、古い情報に基づく編集を無効と判定するのは常識的と考えられる。従って、編集を行うPCが、その編集が無効と判定される可能性を出来るだけ少なくするには、編集の直前に最新の編集記録まで受信してローカル原本DBを更新し、この最新のローカル原本DBに対して編集を行い、編集後は速やかに編集記録をアップすると良い。頻繁に更新を行えば、ローカル原本DBは常に最新の状態に保たれるので、「ほぼオンライン運用」と言う事が出来る。
しかし、編集の競合が稀な情報を扱う場合には、(更新1)および(更新2)によるローカル原本DBの更新から、(編集1)による編集のアップまでの時間を長くしても、編集が無効となる可能性は少ない。例えば、会社の組織ごとに支払伝票を入力するケースでは、レコードを修正するのは入力ミスや処理ミスを発見した場合であり、修正するとしてもレコードを入力した計算機で行う事が多い。この様なケースでは、更新から編集アップまでの期間を極端に長くした「ほぼオフライン運用」で問題は無い。たとえインターネット接続が出来ない状況でも支払伝票をゆっくり入力し、決算や検査の近くなってからまとめてアップすれば良い。
「編集内容」には、先に説明した一般的な編集内容や「編集バージョン」に加え、あとで詳しく説明する「バージョン設定範囲」や「不変確認範囲」を編集内容に含めることが出来る。DBの部分(複数可)にバージョンを設定する場合には、どの部分のバージョンを扱っているかを示す必要が有り、これを示すのが「バージョン設定範囲」である。
「不変確認範囲」は、この編集に影響を与える範囲であり、この範囲の情報の値が変更されることは、この編集が無意味になる事を示している。「不変確認範囲」はDBが扱う情報、特にその編集する対象の情報の特性に応じて様々な指定が可能であるが、編集対象の情報を「不変確認範囲」に入れるのは自然である。リレーショナルDB(以下「RDB」)の場合には、編集対象のテーブル、編集対象と論理的に関連しているテーブル群、そのなかの一部のレコード、またはDB全体などが想定される。
サーバーに記録する編集記録とその順番は、必ずしもPCがアップしたままの内容と順番である必要は無い。編集記録とその順番が全てのPCで同じであれば、これらの編集記録を適用したローカル原本DBは編集記録の順番を共通の時間軸として同期する。
バージョンを付与し編集を管理する単位は実際のDBである必要は無い。情報修正の影響が密接に関係している部分を特定して「バージョン設定範囲」とし、これ毎にバージョンを設定すれば、その範囲に関する編集とバージョンの推移を管理するのが容易になる。
DB原本(グローバル原本DB又はローカル原本DB)の全体又はやバージョン設定範囲に対してバージョンが付与されるが、その付与方法は、扱う情報の特性や運用の都合に応じて選択する事が出来る。
サーバーが編集を受け付けた時刻をバージョンとして利用しても良い。本明細書で説明したバージョンはこの受け付け時刻と読み替える事になる。先に、バージョンは一連の順番を識別するための順序数と説明したが、時刻も順序を表すので何ら問題は無い。
PCが、サーバーにアクセスし、未受信の編集記録の有無を確認した時刻を(サーバーなどから)取得し、その時刻をバージョンとする方法も可能である。この確認毎に、未受信の編集記録が無くてもローカル原本DBの新たなこの時刻をバージョンとして設定する。未受信の編集記録が有れば、これらを受信しこれらを用いてローカル原本DBを更新し、そしてこの時刻をローカル原本DBのバージョンとして設定する。より同期アクセスがより新しいローカル原本DBに対する編集が優先されるので、一つのDBを競争で操作する関係者にとって理解しやすくまた納得出来るルールである。
ローカル原本DBが、(仮想の又は実在する)グローバル原本DBの全体と同期すると仮定すると、説明は簡単である。しかし、ローカル原本DBが扱う範囲はグローバル原本DB一部分とした方が、実用的である。医療情報に限らず、一般にDB全体は巨大であるが、前記「(改良-4)バージョン設定範囲の導入」で説明した様に、個々の個人情報毎の集合体である。患者自身の計算機のローカル原本DBはこの患者の情報のみが有れば良いし、医師の計算機のローカル原本DBは受け持ちの患者の情報のみがあれば良い。つまり、ローカル原本DBは、グローバル原本DB全体と同期している必要は無く、その必要な一部分と同期していれば十分である。これにより、ローカル原本DBのサイズは小さくなり、その同期(内容を最新に保つ)操作は軽快になる。
順番を管理するサーバー(又はPC)を置く。編集記録を作成したPCはこのサーバーに順番を問い合わせ、指定された順番を編集記録に書き込む。編集記録自体はPCの間で直接送信したとしても、ここに書かれている順番はユニーク(一意)である。順番の替わりに時間を編集記録に記入して、順番として用いても良い。なお、PC毎の時間のずれが生じる事を考え、特定のPCが時間を管理するなどの工夫が必要である。
DBのデータ構造自体を変更するなど、他の計算機と並行して編集を行う事が出来ない場合には、他の編集を一時的に禁止すると都合が良い。以下では説明のため、ある編集(X)について、この編集との並行編集を禁止する状況を想定する。つまりXの編集開始からXの編集が完了してサーバーにアップされるまでの期間を、他のPCの「編集禁止期間」とする。Xのサーバーへのアップの後で、この編集記録(X)記録を取り込んだ後のローカル原本DBに対する並行DB編集から禁止が解除される。
本明細書の並行編集とは、(実在の又は仮想の)グローバル原本DB(直感的にはDB原本)の情報の全部または一部の複製を、PCの内部にローカル原本DB(直感的には「複製DB」)として保持し、これに対して編集を行う事である。各PCが保持する複製DBに対する編集情報を、PCが相互に交換してそれぞれの複製DBを更新する。なぜ各PCの複製DBが同期するかと言うと、各PCが同じ編集情報を同じ順番で用いてそれぞれの複製DBを更新するからである。これを表現したのが請求項1である。請求項2は請求項1を装置で表現したものである。
(1)必要な編集記録とその順番を取り込んでしまえば、サーバーとの通信が不要なので、その後の利用者の操作に対応するレスポンスが早くなる。
(2)ローカル原本DBを更新する処理がこのPCで行われるので、特定の編集から影響を受ける情報(レコード)の範囲をきめ細かく調査する事ができる。また、操作者の要求に応じてより詳しい情報を表示する事が出来る。
(3)一般に、個々の計算機の計算能力は余っている事が多く、処理負荷が集中するサーバーに処理を置くよりも処理が高速になる。上記(1)との相乗効果で利用者の操作に対応するレスポンスが早くなる。
0102 通信装置
0103 演算装置
0104 主記憶装置
0105 主記憶装置内のDB(データベース)
0106 二次記憶装置
0107 入出力装置
0108 表示装置
0109 バス
0110 通信網
0111 二次記憶装置内のDB(データベース)
0201 PC
0202 インターネットなどの通信網
0203 サーバー
0204 (PCの)記憶装置
0205 (サーバーの)記憶装置
0206 ローカル原本DB
0207 グローバル初期原本DB
0208 編集記録
0209 作業DB
0210 編集記録n
0210 編集記録n+1
0211 編集記録m
0213 編集手段
0214 更新手段
0215 送信手段
0216 受信手段
0217 送受信管理手段
0218 編集記録1
0219 編集記録m
0220 送信手段
0221 受信手段
0222 送受信管理手段
0301 編集記録(のメモリエリア)を確保
0302 ローカル原本DB内の編集対象情報を特定
0303 この情報が属するバージョン設定範囲を特定し編集記録に記入
0304 このバージョン設定範囲のバージョンを取得し編集記録に記入
0305 編集対象の情報に対応する不変確認範囲を特定し編集記録に記入
0306 編集対象の情報を特定する情報、編集の中身を編集記録に記入
0307 ローカル原本DBに上記編集を適用した作業DBを作成
0308 サーバーに編集記録を送る
0401 サーバーに前回の最終編集記録を通知
0402 サーバーから前回より後の編集記録のリストを受信
0403 編集記録を受信
0404 受信した編集記録を未処理編集記録リストにいれる
0405 編集禁止中を問い合わせる
0501 未処理の編集記録リストから編集記録を取り出し
0502 この編集記録の不変確認範囲と編集バージョンにより、現在のローカル原本DBに対して有効かを判定
0503 ローカル原本DBを更新
0504 ローカル原本DBのバージョンを更新
0602 PC-A
0603 PC-B
0604 初期DB
0605 (PC-Aの)ローカル原本DB更新
0606 (PC-Bの)ローカル原本DB更新
0608 (PC-Aの)レコードZの複製
0609 (PC-Bの)レコードZの複製
0610 (PC-Aによる)グローバル初期原本DBの取得
0611 (PC-Bによる)グローバル初期原本DBの取得
0612 (PC-Aによる)同期
0613 (PC-Aの操作者による)編集
0614 (PC-Aによる)編集の送信。つまり編集のアップ。
0616 (PC-Aへの)確認(通知)と(PC-Aによる)同期。なお、同期とは新たな編集とその順番の取得であり、他の記号の説明においても同じである。
0617 (PC-Bによる)同期
0618 (PC-Bの操作者による)編集
0619 (PC-Bによる)編集の送信。つまり編集のアップ。
0621 (PC-Bへの)確認(通知)と(PC-Bによる)同期。
0622 (PC-Bによる)同期
0623 (PC-Bの編集に基づくPC-AのレコードZの複製の)修正
Claims (9)
- データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B)該複製に対して行った編集の編集記録を他の装置に送信する工程と、
(C)該複製に対する編集記録を他の装置から受信する工程と、
(D)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録を用いてデータベースの該複製を更新する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集装置であって、
(A)データベースの全部または一部分の複製を保持する手段と、
(B)該複製に対して行った編集の編集記録を他の装置に送信する手段と、
(C)該複製に対する編集記録を他の装置から受信する手段と、
(D)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録を用いてデータベースの該複製を更新する、一連の手順を実行する手段、
を有する事を特徴とする方法。 - データベースの編集方法であって、
データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B)該複製に対して行った編集の編集記録を他の装置に送信する工程と、
(C)該複製に対する編集記録を他の装置から受信する工程と、
(D1)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録の有効性の判定を行い、有効と判定された該編集記録を用いてデータベースの該複製を更新する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B1)該複製に対して行った編集の編集記録に、この編集に影響を与える情報の範囲を示した「不変確認範囲」を対応させ、該編集記録を他の装置に送信する工程と、
(C1)該複製に対する編集記録と、該編集記録に対応する不変確認範囲を、他の装置から受信する工程と、
(D2)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録に対応した「不変確認範囲」を用いて該編集記録の有効性の判定を行い、有効と判定された該編集記録を用いてデータベースの該複製を更新する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B2)該複製に対して行った編集の編集記録に、該複製に指定されたバージョンを対応させ、該編集記録を他の装置に送信する工程と、
(C2)該複製に対する編集記録と、該記録に対応するバージョンを、他の装置から受信する工程と、
(D3)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録に対応したバージョンを用いて該編集記録の有効性の判定を行い、有効と判定された該編集記録を用いてデータベースの該複製を更新しバージョンを更新する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B3)該複製に対して行った編集の編集記録に、該複製の一部の情報又は情報の組み合わせに指定されているバージョンを対応させ、該編集記録を他の装置に送信する工程と、
(C2)該複製に対する編集記録と、該記録に対応するバージョンを、他の装置から受信する工程と、
(D3)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録に対応したバージョンを用いて該編集記録の有効性の判定を行い、有効と判定された該編集記録を用いてデータベースの該複製を更新しバージョンを更新する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B2)該複製に対して行った編集の編集記録に、該複製に指定されたバージョンを対応させ、該編集記録を他の装置に送信する工程と、
(C2)該複製に対する編集記録と、該記録に対応するバージョンを、他の装置から受信する工程と、
(D4)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録に対応したバージョンを用いて該編集記録の有効性の判定を行い、データベースの該複製のバージョンを更新し、有効と判定された該編集記録を用いてデータベースの該複製を更新する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B2)該複製に対して行った編集の編集記録に、該複製に指定されたバージョンを対応させ、該編集記録を他の装置に送信する工程と、
(C3)該複製に対する編集記録と、該記録に対応する日時を、他の装置から受信する工程と、
(D5)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録に対応したバージョンを用いて該編集記録の有効性の判定を行い、有効と判定された該編集記録を用いてデータベースの該複製を更新新し、該編集記録に指定された日時を該複製のバージョンとして設定する、一連の手順を実行する工程、
を有する事を特徴とする方法。 - データベースの編集方法であって、
(A)データベースの全部または一部分の複製を保持し、
(B2)該複製に対して行った編集の編集記録に、該複製に指定されたバージョンを対応させ、該編集記録を他の装置に送信する工程と、
(C4)該複製に対する編集記録と、該記録に対応するバージョンを、他の装置から受信し、さらに日時を受信する、一連の工程と、
(D3)編集記録に指定されている順番、又は外部から指定された順番で、編集記録を取り出し、該編集記録に対応したバージョンを用いて該編集記録の有効性の判定を行い、有効と判定された該編集記録を用いてデータベースの該複製を更新し、工程C4で受信した該日時を該複製のバージョンとして設定する、一連の手順を実行する工程、
を有する事を特徴とする方法。
Priority Applications (10)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2010515775A JP4855537B2 (ja) | 2008-06-04 | 2009-06-03 | データベース並行編集方式 |
US12/864,872 US20110082833A1 (en) | 2007-06-06 | 2009-06-03 | Database parallel editing method |
CN200980128878.0A CN102216910B (zh) | 2007-06-06 | 2009-06-03 | 并行编辑数据库的方法 |
US12/688,854 US8171003B2 (en) | 2007-06-06 | 2010-01-15 | Method and apparatus for changing reference of database |
US13/024,330 US20110137862A1 (en) | 2008-06-12 | 2011-02-10 | Method and apparatus for parallel edit to editable objects |
US13/251,295 US20120023100A1 (en) | 2007-06-06 | 2011-10-03 | Method and apparatus for changing references between objects |
US13/714,422 US20130110777A1 (en) | 2007-06-06 | 2012-12-14 | Synchronization of data edited in parallel |
US13/726,549 US20130179652A1 (en) | 2007-06-06 | 2012-12-25 | Support for synchronization of data edited in parallel |
US13/802,740 US20130204842A1 (en) | 2007-06-06 | 2013-03-14 | Method and system for synchronization of data edited in parallel |
US15/449,961 US20170177647A1 (en) | 2008-06-04 | 2017-03-05 | Parallel database editing |
Applications Claiming Priority (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
PCT/JP2008/001424 WO2008149552A1 (ja) | 2007-06-06 | 2008-06-04 | データベース矛盾解消方式 |
JPPCT/JP2008/001424 | 2008-06-04 | ||
JPPCT/JP2008/001506 | 2008-06-12 | ||
PCT/JP2008/001506 WO2009147701A1 (ja) | 2008-01-08 | 2008-06-12 | データベースへの平行アクセスプログラム |
Related Child Applications (8)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/JP2008/001424 Continuation-In-Part WO2008149552A1 (ja) | 2007-06-06 | 2008-06-04 | データベース矛盾解消方式 |
US12/864,872 A-371-Of-International US20110082833A1 (en) | 2007-06-06 | 2009-06-03 | Database parallel editing method |
US12601005 A-371-Of-International | 2009-06-03 | ||
US12/688,854 Continuation-In-Part US8171003B2 (en) | 2007-06-06 | 2010-01-15 | Method and apparatus for changing reference of database |
US60100510A Continuation-In-Part | 2007-06-06 | 2010-04-13 | |
US13/024,330 Continuation-In-Part US20110137862A1 (en) | 2007-06-06 | 2011-02-10 | Method and apparatus for parallel edit to editable objects |
US13/251,295 Continuation-In-Part US20120023100A1 (en) | 2007-06-06 | 2011-10-03 | Method and apparatus for changing references between objects |
US13/714,422 Continuation-In-Part US20130110777A1 (en) | 2007-06-06 | 2012-12-14 | Synchronization of data edited in parallel |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2009147847A1 true WO2009147847A1 (ja) | 2009-12-10 |
Family
ID=41397796
Family Applications (5)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/JP2008/001719 WO2009147704A1 (ja) | 2007-06-06 | 2008-07-01 | テーブルとテーブル項目の平行編集プログラム |
PCT/JP2008/001900 WO2009147705A1 (ja) | 2008-06-04 | 2008-07-15 | データベース接続プログラムおよび装置 |
PCT/JP2009/002491 WO2009147847A1 (ja) | 2007-06-06 | 2009-06-03 | データベース並行編集方式 |
PCT/JP2009/002501 WO2009147851A1 (ja) | 2007-06-06 | 2009-06-03 | データベースのデータ項目の平行編集方式 |
PCT/JP2009/002490 WO2009147846A1 (ja) | 2007-06-06 | 2009-06-03 | データベース並行編集の競合解消方式 |
Family Applications Before (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/JP2008/001719 WO2009147704A1 (ja) | 2007-06-06 | 2008-07-01 | テーブルとテーブル項目の平行編集プログラム |
PCT/JP2008/001900 WO2009147705A1 (ja) | 2008-06-04 | 2008-07-15 | データベース接続プログラムおよび装置 |
Family Applications After (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/JP2009/002501 WO2009147851A1 (ja) | 2007-06-06 | 2009-06-03 | データベースのデータ項目の平行編集方式 |
PCT/JP2009/002490 WO2009147846A1 (ja) | 2007-06-06 | 2009-06-03 | データベース並行編集の競合解消方式 |
Country Status (2)
Country | Link |
---|---|
JP (1) | JPWO2009147705A1 (ja) |
WO (5) | WO2009147704A1 (ja) |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2012079045A (ja) * | 2010-09-30 | 2012-04-19 | Yahoo Japan Corp | ストレージサーバ、ファイル同期システム、ファイル衝突処理方法及びプログラム |
US8171003B2 (en) | 2007-06-06 | 2012-05-01 | Kunio Kamimura | Method and apparatus for changing reference of database |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US9946691B2 (en) * | 2013-01-30 | 2018-04-17 | Microsoft Technology Licensing, Llc | Modifying a document with separately addressable content blocks |
WO2015009688A1 (en) | 2013-07-17 | 2015-01-22 | The Johns Hopkins University | Microfluidic chip for analysis of cell motility and methods for using same |
CN106156094B (zh) | 2015-04-01 | 2019-09-17 | 阿里巴巴集团控股有限公司 | 一种数据库的远程数据同步方法和装置 |
CN111523291B (zh) * | 2020-04-21 | 2023-04-18 | 四川川大智胜软件股份有限公司 | 一种低空雷达多席位空域数据编辑方法 |
JP7475086B1 (ja) | 2023-02-03 | 2024-04-26 | 株式会社ミヤワキ | 編集方法、編集装置及びプログラム |
Family Cites Families (12)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH05233405A (ja) * | 1992-02-18 | 1993-09-10 | Hitachi Ltd | データベース変更監視方式 |
JPH07191898A (ja) * | 1993-12-27 | 1995-07-28 | Fujitsu Ltd | データベース排他制御装置 |
CA2152528C (en) * | 1994-07-29 | 2000-04-18 | Chung-Hwa Herman Rao | Distributed systems with replicated files |
JP3534596B2 (ja) * | 1997-12-05 | 2004-06-07 | 富士通株式会社 | インテリジェントネットワーク内のデータベースの同期方法と装置 |
JP4187302B2 (ja) * | 1998-03-25 | 2008-11-26 | 富士通株式会社 | リレーショナルデータベース同期方法およびそのプログラムを記録した記録媒体 |
JP2000020370A (ja) * | 1998-06-29 | 2000-01-21 | Sharp Corp | データ同期処理装置 |
JP2000194592A (ja) * | 1998-12-25 | 2000-07-14 | Nippon Telegr & Teleph Corp <Ntt> | デ―タベ―スシステム、デ―タベ―スアクセスシステム、およびデ―タベ―スアクセスプログラムを記録した記録媒体 |
JP2000222268A (ja) * | 1999-01-29 | 2000-08-11 | Hitachi Ltd | 複数のコンピュータ間におけるファイルの同期方法 |
JP2000284998A (ja) * | 1999-03-31 | 2000-10-13 | Ricoh Co Ltd | データ更新制御システム、データ更新制御方法、その方法を実行させるためのプログラムを記録したコンピュータ読み取り可能な記録媒体 |
US6938070B2 (en) * | 2001-12-17 | 2005-08-30 | Dassault Systemes | Conflict resolution for collaborative work system |
JP4279499B2 (ja) * | 2002-03-01 | 2009-06-17 | シャープ株式会社 | 情報処理装置 |
JP2007179105A (ja) * | 2005-12-26 | 2007-07-12 | World Planning:Kk | 共有データベースの制御システム及び共有データベースの制御方法並びにコンピュータプログラム |
-
2008
- 2008-07-01 WO PCT/JP2008/001719 patent/WO2009147704A1/ja active Application Filing
- 2008-07-15 WO PCT/JP2008/001900 patent/WO2009147705A1/ja active Application Filing
- 2008-07-15 JP JP2010515675A patent/JPWO2009147705A1/ja active Pending
-
2009
- 2009-06-03 WO PCT/JP2009/002491 patent/WO2009147847A1/ja active Application Filing
- 2009-06-03 WO PCT/JP2009/002501 patent/WO2009147851A1/ja active Application Filing
- 2009-06-03 WO PCT/JP2009/002490 patent/WO2009147846A1/ja active Application Filing
Non-Patent Citations (3)
Title |
---|
"Microsoft Access 97 for Windows Ver.8.0", MICROSOFT CORP., 25 March 1998 (1998-03-25), pages 569 - 599 * |
ANDREW S. TANENBAUM, DISTRIBUTED SYSTEMS, 20 October 2003 (2003-10-20), pages 698 - 701 * |
MARK DODGE, MICROSOFT OFFICE EXCEL 2003 OFFICIAL MANUAL, 12 July 2004 (2004-07-12), pages 535 - 548 * |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8171003B2 (en) | 2007-06-06 | 2012-05-01 | Kunio Kamimura | Method and apparatus for changing reference of database |
JP2012079045A (ja) * | 2010-09-30 | 2012-04-19 | Yahoo Japan Corp | ストレージサーバ、ファイル同期システム、ファイル衝突処理方法及びプログラム |
Also Published As
Publication number | Publication date |
---|---|
WO2009147846A1 (ja) | 2009-12-10 |
WO2009147704A1 (ja) | 2009-12-10 |
WO2009147851A1 (ja) | 2009-12-10 |
JPWO2009147705A1 (ja) | 2011-10-20 |
WO2009147705A1 (ja) | 2009-12-10 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
KR102579190B1 (ko) | 일관된 데이터베이스 스냅샷들을 이용한 분산 데이터베이스에서의 백업 및 복원 | |
CN108932282B (zh) | 一种数据库迁移方法、装置和存储介质 | |
US20110082833A1 (en) | Database parallel editing method | |
US8392386B2 (en) | Tracking file contents | |
CN1746893B (zh) | 事务文件系统 | |
CA2626227C (en) | Apparatus and method for creating a real time database replica | |
WO2009147847A1 (ja) | データベース並行編集方式 | |
CN108021338B (zh) | 用于实现两层提交协议的系统和方法 | |
US20130332566A1 (en) | Providing local access to managed content | |
EP2800013B1 (en) | Integration database framework | |
JP2008527571A5 (ja) | ||
JP2010092464A (ja) | 階層ストレージ管理(hsm)制御ストレージ環境で双方向オーファン照合を行う方法、システムおよぶコンピュータ・プログラム | |
US7194486B2 (en) | Method and system for data processing with data replication for the same | |
CN105989049A (zh) | 一种数据中间层实现方法及系统 | |
JP4855537B2 (ja) | データベース並行編集方式 | |
WO2015145587A1 (ja) | データベースシステム、情報処理装置、方法およびプログラム | |
JP4923140B2 (ja) | データベース並行編集方式 | |
JP5543918B2 (ja) | データベース並行編集の競合解消方式 | |
JP5543899B2 (ja) | データベースのデータ項目の平行編集方式 | |
US20170177647A1 (en) | Parallel database editing | |
JP5543901B2 (ja) | データベース並行編集方式 | |
US9424261B2 (en) | Techniques to take clean database file snapshot in an online database | |
US11392557B1 (en) | Efficient data backup in a distributed storage system | |
JP4855538B2 (ja) | データベースのデータ項目の平行編集方式 | |
WO2004031957A1 (ja) | データベース複製方法、データベース複製装置、データベース創成方法およびデータベース創成装置 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
WWE | Wipo information: entry into national phase |
Ref document number: 200980128878.0 Country of ref document: CN |
|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 09758114 Country of ref document: EP Kind code of ref document: A1 |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2010515775 Country of ref document: JP |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 09758114 Country of ref document: EP Kind code of ref document: A1 |