Process For Data Migration

  • Hi All,

    I have a requirement to migrate a database but, with the migrated version to have column name changes that must be reflected in all of the code base. I am basically perfoming a translation on an existing database.

    Now, I could set these up as SSIS packages or individual scripts and searching all the Sprocs/views, functions..etc, but I hate re-inventing the wheel and was wondering if anyone knew of any software or another processes that could aid this? I have the DBA toolbelt from redgate but I cannot see anything that will help (so far, apart from the SQLSearch helping to identify the locations of the references)

    Thanks in advance

    Elliot

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • That's quite a job to be assigned. I don't know of any automated tool that would do the whole job. I would probably opt to do it table-by-table, view-by-view, etc. creating the tables, indexes, etc. writing the SQL for each one. I know this is a lot of work and would take considerable time for a complicated source database.

    As you write and update it, this script would be the migration script for when it comes time to release. The approach lends itself very well to testing multiple times and you can compare your test database to your original source as many times as you need to.

    As for an automated tool, if anyone does find one that does the job, please share what you learn. I'd be very interested in it.

  • I may suggest views and leave the base data alone. This would cut down on project time and would only need to update the references in the Sprocs, functions, etc.

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply