in reply to Data Migration Perl style vs. SQL style....
The last couple of times I've had to do things like this, I developed the transforms in SQL, but used Perl to control the execution. It's a good combination that allows you to exploit the strengths of both tools.
Something else to consider: if this is new territory for you, use it as an opportunity to get good with SQL. Try to avoid cursors and row-by-row processing: use set-oriented operations as much as possible. Avoid "procedural SQL".
Another tip: Back up everything before you start! ;-)
HTH
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Data Migration Perl style vs. SQL style....
by mr.dunstan (Monk) on Jun 22, 2001 at 01:54 UTC |