daily incremental loading [message #186382] |
Mon, 07 August 2006 14:27 |
catpurr
Messages: 11 Registered: November 2005
|
Junior Member |
|
|
I am involving with a project to do daily incremental transfer data from SQL server to Oracle. I will get flat SQL server exort file (flat file). How can I find out new/updated data under windows environment? what's the best way to automate the loading? Thanks!
|
|
|
Re: daily incremental loading [message #186383 is a reply to message #186382] |
Mon, 07 August 2006 14:36 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
You cannot. There is no default method.
One workaround is to load data "as-is" into a staging table (or use external table. Consider the text file as an Oracle Table)
Use sql means to compare data in staging table with the original table ( merge statement or something like that).
[Updated on: Mon, 07 August 2006 14:37] Report message to a moderator
|
|
|
|
Re: daily incremental loading [message #186599 is a reply to message #186466] |
Tue, 08 August 2006 12:42 |
catpurr
Messages: 11 Registered: November 2005
|
Junior Member |
|
|
thanks! but when flat file is overwritten, is it still going to be next day full data? how can I figure out the new data (incremental) and existing data from the full data?
|
|
|
|
|