vote up 2 vote down star

I am not sure whether this has been asked before; I did a few searches but nothing appropriate showed up. OK, now my problem:

I want to migrate an old application to a different programming language. The only requirement we have is to keep the database structure stable. So no changes in my database schema. For the rest of the application I am basically reimplementing everything from scratch without reusing old code.

My Idea: in order to verify my new code was to let users do certain actions or workflows, capture the state of the database before that and after that and then maybe create unit tests with the help of this data. Does anyone know an elegant solution to keep track of these changes? Copying the database (>10GB) is pretty expensive. I also can't modify the code of the old application in which the users will be performing these sample actions. I have to keep it on the database level.

My database is Oracle 10g.

flag

1  
This here es a good example why one should separate business logic and application. – jva Jul 20 at 5:45
True. At least they realised this now. – sebastiangeiger Jul 20 at 8:03
Do you have the source code for the original application? – stukelly Jul 20 at 19:23
I absolutely hate when people do this BUT: I wonder why you're planning on migrating to a new language at all. It's almost never the right thing to do. Unless your requirements have seriously changed, it's almost always better to keep the existing app in place and tweak as necessary. If you have new functionality, build a new app and have that run in parallel with the old app. Given how many requirements you have on the old app's functions (exactly the same schema, functionality, etc) - I would think long and hard before you do this. – aronchick Jul 22 at 4:12
The functional requirements didn't change but company policy requires the application now to run within a Java application. That way we need at least a Swing GUI. As the GUI is pretty complicated and the business logic is essentially CRUD without any complex calculations we decided it be best to migrate completely. (The GUI only option was made impossible when they decided to do one big blob instead of at least two tiers.) – sebastiangeiger Jul 22 at 8:35

3 Answers

vote up 2 vote down check

You could capture the old application behavior with a trace and then validate the changes against your new code. But, honestly, trying to write a new application by capturing the data modifications it makes and the imitating that will be a very difficult task as the inputs and the outputs to the original application are not guaranteed to be stateless (that is, the old application might do the same thing the first 1,000,000 times it is given a certain set of inputs and do something completely different on the 1,000,001st run.)

Your best bet is to start over with the business requirements and use the old application and a functional reference.

link|flag
You're right, but I'm not only relying on data gathered by observing the old program. It's just a way to get more insight into the old application and maybe find things that have been overlooked at the requirements engineering. – sebastiangeiger Jul 19 at 21:35
vote up 1 vote down

In 10g the only way is to do with FLASHBACK queries.in 11g we can do this with RAT(Real Application Testing). RAT is quite useful for this senarios and also for load and volume testing.

link|flag
vote up 2 vote down

Take a look at Oracle Flashback Queries.

It enables to execute queries which return past data. The timeframe is limited, but it can be very useful.

link|flag
flashback queries have definitely saved my butt on a few occasions. – Peter Jul 19 at 20:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.