Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: (long) Design question, historic and views
Thanks for sharing. It may have been 'back in the 8.0 days', but is
nonetheless a clever process.
Streams and Logminer may be available now, but I like the elegance of the dual partition exchange.
Jared
"Tanel Poder" <tanel.poder.003_at_mail.ee>
Sent by: ml-errors_at_fatcity.com
08/22/2003 09:34 AM
Please respond to ORACLE-L
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> cc: Subject: RE: (long) Design question, historic and views
Hi!
To answer your original question about the design & DW transport, there is
too much to write to answer it completely. There's too many different ways
to do the task.
I'll try to give you a reply from my past experience with OLTP-> DW
transfer
(from up to 800GB OLTP systems to 2-3TB DWs).
Btw, if you write your trigger accordingly, you can just update the master
table when new version arrives and let the trigger handle copying old
version to EMP2 - no deletes are required. It could even be possible to
write trigger to update only those columns in row which actually have
changed, to reduce rollback and redo amount, but this will probably be
harder on your CPU. Anyway if you do so, and your trigger gets fairly
large,
it might be reasonable to put the code in a package, pin it and call the
package from trigger. It's matter of benchmarking.
So, I just described a solution we used to you - this was back in 8.0
days,
today there's a lot of other solutions like logminer/streams for example.
Ok, that much from transporting.
I don't quite get where do you want to place the views and what is their
purpose? In your ODS? Or DW?
Were you asking for a mean to distinguish between current and old
versions?
If in ODS you have your current and old version tables separate (EMP vs.
EMP2) then there's no problems - all current versions are in EMP table.
But
in DW where all records are together you have two options (which first
come
into my mind):
1) Modify ETL process to update some column of future old record to set
current=N when new record comes in. This means that you have to search &
update old current version of a record every time you insert a new
version.
2) Do not modify ETL process at all, use timestamp column instead
(timestamp/sqn is monotonically increasing column), so whichever record
has
larger sequence# is the current one. There are buts as well, for example
if
you want to keep deleted versions also in your DW, then you could update
timestamp to 0 or similar. Also, depending on average number of versions,
this might get quite slow if you aren't able to use indexes properly
(should
use ascending index range scan instead of sorting with large number of
versions).
I hope it was what you were asking about. This was my... erm... 3 cents (sync, sync, sync ;)
Tanel.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET: Jared.Still_at_radisys.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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 Fri Aug 22 2003 - 14:19:26 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).
![]() |
![]() |