migrate

how to migrate from biztalk 2002 to biztalk 2006 R2

i would like to have step by step instructions on how to migrate from biztalk 2002 to biztalk 2006 R2. ...

What is the most straightforward path to move a project from Pinax 0.5.1 to 0.7beta3?

I'm updating a 0.5.1 complete_project to 0.7beta3 + virtualenv + pip + fabric. I have converted my project into multiple stand-alone applications and I have everything being pulled down by pip from a requirements.txt file. I am now moving the code over and so far can get the Welcome page and perform a log-in, but then it breaks, due, i...

After installing MySQL 64 Bit on Snow Leopard is it possible to migrate the old data?

Hey, in /usr/local i now have two mysql folders: mysql-5.1.34-osx10.5-x86 mysql-5.1.37-osx10.5-x86_64 is it possible to migrate the data from my old mysql folder to the 64 bit one? Thanks for help, dont really want to setup all my databases again :) ...

How to copy between Subversion repositories preserving properties but not preserving history.

How can I copy a folder from one existing Subversion repository to another without preserving history, and in such a way that preserves relevant svn properties (e.g. preserve svn:ignore, svn:eol-style but ignore svn:mergeinfo). To use svn export followed by svn import would not preserve svn properties, so this is not good. We are curre...

Best way to Migrate Anonymous Profile

Is there an alternate way that migrates all parameters implicit? Or any other advantages. From MSDN: public void Profile_OnMigrateAnonymous(object sender, ProfileMigrateEventArgs args) { ProfileCommon anonymousProfile = Profile.GetProfile(args.AnonymousID); Profile.ZipCode = anonymousProfile.ZipCode; Profile.CityAndState = ano...

TFPT unshelve & Migrate: What is the Base version for merging?

I am trying to use tfpt unshelve /migrate to unshelve my shelveset on to a different branch. When it does the unshelve, it also attempts to merge the file with the file in the target branch. I do not understand where its getting the base version of this file. Can anyone tell me what version is base? ...

How do I migrate a newer SVN repository to an older version?

I created a local repository using tortoiseSVN a while back. Now I would like to migrate the repository to my DreamHost account. I moved the files over but it seems that DreamHost is using an older version of SVN. when I issue the command svnadmin load 'repository dir' it spits back svnadmin: Expected FS format '2'; found form...

Export tables from SQL Server to be imported to Oracle 10g

I'm trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I'm not using any constraints/keys so this should be reasonably straight forward. Firstly I generated scripts to get the table structure, then modified them to conform ...

how to detect whether my rails is running in migration or not in environment.rb

any easy way to detect it? I want to skip some codes in envirmonment.rb when doing migration rake. ...

How to 'switch' from MySQL to Amazon RDS with minimal application impact?

Amazon officially states: "Amazon RDS gives you access to the full capabilities of a familiar MySQL database. This means the code, applications, and tools you already use today with your existing MySQL databases work seamlessly with Amazon RDS." I don't get this. Amazon RDS is accessible via web services and there a client libraries (li...

How to migrate Drupal nodes from one installation to another, preserving revision history?

Is there a good way to export a set of nodes from one Drupal installation, including node revision history, and then to merge these into another Drupal installation, including revision history? I'm familiar with modules such as Node Export and Backup and Migrate... But Node Export doesn't preserve revision history, and Backup and Migra...

Sharepoint upgrade/migrate lists in production environment

Assume you deploy a Sharepoint solution, which consists of multiple WebParts and multiple Lists. Now in a later version of this solution, you want to extend/modify these lists, like add or remove columns. How do you deploy such changes to a production environment? Meaning, how do you apply these changes to a production environment where...

Script to migrate wiki from trac to bitbucket wiki

I have a wiki on trac which I'd like to migrate to bitbucket wiki, the amount of content is large enough for me to want to have it simplified with a script of sorts. Is there a script that can help me get this done? ...

Best way to move a bunch of SQL Server 2005 tables to another Server?

I've been looking for a way to move a bunch of tables, more than 40, to another server with all the data in them. I've looked around for scripts to generate inserts but so far I'd have to run them once for every table, then copy all the scripts over and then run them on the server. Seems like there is a better way. --Update-- My strate...

Migrating to ORM

Stepwise, what would be a good way of integrating Spring and Hibernate into an existing JSF application that doesn't use ORM? ...

Migrate data in mysql from old schema to new schema

Hello, We have recently improved the schema of our production database, changing column names and indexes etc. We also changed the storage engine to InnoDB to make use of transactions and foreign keys. What is the best way to import the data from the old schema into the new schema? Bare in mind that column names have changed (including...

migrating from one framework to another in python

I'm having trouble deciding which python framework to use for my website. So I've decided to bite the bullet and use Django. My question is how easy (or difficult) will it be to migrate to a different framework in future if I have issues with Django ? ...

How to convert VisualStudio project to Eclipse CDT

The question is already in the title. I have a Visual Studio project which builds a .dll. Now I need the same library for MacOS X and linux, so I would like to convert the VS project to Eclipse and compile it for both platforms. I will be very thankful for any tips, hints or guidance! ...

Copy data from a table to another one has different structure

I have two tables with different structure: TableSource: intId(not null), txtSummary, strDetail TableDesc: guidId(not null), guidFK(not null), Name, Detail I want to migrate data from two fields of tableSource(txtSummary, strDetail) to two fields of tableDesc(Name, Detail). guidId is auto generation and guidFK should be assigned to a...

Classic ASP and MVC side-by-side, different projects?

I've tried asking this in a few different ways, but let's give it another shot (as I've yet to receive an answer and this is driving me nuts!) I have a very large classic ASP 3.0 application (~350K lines) that I want to start migrating to ASP.NET MVC. I'd like to keep the old ASP files in a separate project from the MVC stuff. Ideas o...