Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Design Issue - Quick response appreciated
Rao,
I'd add three columns.
Transaction_ID Not Null UK
Parent_Trans_ID Not Null FK to Transaction_ID
Original_Trans_ID Not Null FK to Transaction_ID
Transaction_ID would be the sequence-generated Surrogate Key. For the original record Parent_Trans_ID and Original_Trans_ID would be equal to Transaction_ID.
Each new version of the original record would have the original record's Transaction_ID as its Original_Trans_ID, but would receive the Transaction_ID of the record it came from as its Parent_Trans_ID. All information about a new record's "heritage" would be contained in the record from which it came - no pre-insert lookups required.
That way you could easily get all versions of a record (Original_Trans_ID = xxx), while also giving yourself the flexibility of tracing the hierarchical version history via Parent_Trans_ID.
Jack
-----Original Message-----
Maheswara
Sent: Monday, September 24, 2001 2:46 PM
To: Multiple recipients of list ORACLE-L
Chris,
Thanks for the suggestion. In our case, once a record is inserted, we cannot update the record. If any column need to be changed, then, we insert another record which would contain all the data of the columns of the previous record + the data of the changed column (or columns).
I am toying with the following idea. Please point out if there are any probs with this.
In the above way, whenever, I want to get all the previous records, I would go to GENERATION Table and then get the generation number for that surrogate key. (I would be getting the maximum generation number because I always updating this column with the last generation number). Once, I know the last generation number, then, it is a question pulling all the records with the surrogation key + (all the generation numbers).
Thanks,
Rao
...
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jack C. Applewhite INET: japplewhite_at_inetprofit.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-LReceived on Mon Sep 24 2001 - 14:28:27 CDT
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
![]() |
![]() |