migration

can I migrate a bzr central repository trunk to a new location?

I set up an central repository in my home directory. I set it up in my home directory and would like to move it from /home/$USER to /home/share/. For reference, here are the details of the initial setup for reference following the directions in the bzr documentation: #establish the central repository mkdir project mkdir project/dev b...

Can you recommend a database schema migration tool that is not tied to a particular framework or ORM?

I've used South migrations in the past, but am now looking for a database migration tool that is not tied to a particular framework or Object Relational Mapper (South is for Django). I need it simply for managing schema updates (and rollbacks) and nothing else. Various tools and applications use the same database, so I'd like a dedicated...

migrating two pieces of code, error mysql_fetch_array() expects parameter 1 to be resource

Hello, I have migrated some codes, all went fine till I encountered this code in the tutorial. Because I have a custome template, the html and php code is a little different from the original template, now I'm totally lost. This is the original code, which should be replaced with the one beneath this code: <table cellspacing="0" cellp...

Importing a MySQL schema to Xcode as a CoreData Data Model

I have an existing MySQL database, I would like to import the schema into Xcode and create a Core Data data model. Is there a way (tool, process) to import the CREATE statements so I don't have to build the models "by hand"? As an intermediary step I could convert to SQLite, I'm not worried about the relationships, foreign keys etc jus...

Changing the root_dir on a magento system

Hi I want to create another instance of magento for development purposes. I've copied the site and the database and changed the connction string for the database. However, when I go to log in to magento it re-directs to the live site www.example.com rather than going to the test url test.example.com. Both instances exist on the same ...

Migrating wordpress 3.0.1 from one server to another

Hi all, Here's what I wanted to dot, what I've done, and... the (poor) result: I wanted to: migrate my personal Website from one server to another one, and only change the IP on my DNS. So: I changed the IP on my DNS. Ok. Everything's fine (it's been 7 days now) I dump my Wordpress 3.0.1 database from server A I copied recursively the...

How do I remove a model and its table in Ruby on Rails?

Hello. I'm diving into RoR and I need to remove a model and its table, as well as update the other models that reference it. I did a search on google and SO and the best answer I found was this, but the answer is unclear to me. The final consensus was to use the ruby script/destroy model method and then "manually edit any migrations t...

Sharepoint 2010: best practice to migrate legacy data to sharepoint list

I have to migrate some legacy data from stand-alone sql server database to sharepoint list. I'm going to use programmatic approach and write a code that communicates with sharepoint list asmx web service. Are there some "data transformation wizards" to simplify such a task or a better approach to port legacy data from sql server databa...

Conversion of VS 2010 project to VS 2008

I downloaded some sample ASP .NET projects from net. But they are in VS2010 format. I use VS 2008. How can I change the format? ...

iphone os4 sdk migration error

I try to recompile my iPhone application in os4. To do this I simple install the new sdk on my MacBook. When I try to recompile I take a lot of strange errors (33). It is not clear for me the error reason because this errors seem to be out of my code. Which is the best way to migrate and recompile the sdk 3.x application in the new 4.x...

HTTPService rootURL change between Flex3 and Flex4

Hi everybody, We built an Flex application embbeded in a Oracle PL/SQL page (throw an Oracle DAD) developed with Flex3 SDK. As we have many environnements (development, pre production, training, production), so many DAD, we used to set our HTTPService with relatives paths. For example Development Plateform : Client URL (into IE/Firef...

how to add new column on elixir

i use elixir as orm for mysql database,now i want to add new column to my schema,how could i keep orginal data in the mysql and update the schema automatically,the concept called migrate on ruby on rails,it seems i didn't found relevent infomation & code in sqlalchemy & elixir,any advice is welcome. ...

VSS to SVN migration; tool suggestions?

Anyone have good experience with tools migrating codebase from VSS to Subversion (preserving histories, meta-data)? Any feedback will be much appreciated. ...

What do I need to subclass Migration?

I'm following the Migration video posted at http://subsonicproject.com/docs/Using_SimpleRepository I've downloaded the latest SubSonic (3.0.0.4), and extracted/referenced the SubSonic.Core.dll in my empty Console Application project in VS 2010. I've created a 001_Init.cs file in the Migrations folder: using System; using System.Collec...

Migrating to Retrospectiva

Hey folks, We're interested in an Agile PM System and have picked out Retrospectiva, we really need to be able to migrate tickets out of our existing system and was interested in taking a look at the migration scripts. In there wiki they link to two scripts (trac and collaboa) http://retrospectiva.org/wiki/Migration However taking a l...

Migrating Java to Scala

What are the most important points to be aware of, and the workarounds, when gradually migrating an existing Java codebase to Scala? With a (potentially very long) intermediate phase where both languages are in use. The sort of things I'm thinking about are: different collection hierarchies Java constructs that Scala can't handle wel...

What are the the potential risks with using CM Bridge ?

Our company is using ClearCase for version control and as a medium to exchange code with sibling companies. Some of these sites are planning to switch from CC to sub version. Our site management is unenthusiastic about replacing our version control system. A possible compromise is using the CM bridge by Clearvision, but I found nex...

filemaker pro export and import to mysql via php

could anyone advise me direct me to a site that explains the best way to go about this I'm sure I could figure it out with allot of time invested but just looking for a jump start. I don't want to use the migration tool either as I just want to put fmp xml files on the server and it create new MySql databases based on the fmpxml results ...

rails3 default_scope, and default column value in migration

class CreateCrews < ActiveRecord::Migration def self.up create_table :crews do |t| t.string :title t.text :description t.boolean :adult t.boolean :private t.integer :gender_id t.boolean :approved, :default => false t.timestamps end end def self.down drop_table :crews end end ...

I migrated project from Visual Studio 2008 to Visual Studio 2010 and Add Web Reference has gone?

I have a project which is coded with Visual Studio 2008. Today I migrated it to Visual Studio 2010 and i saw that i can not see add web reference. How can i get it back? ...