Questions tagged [migration]

An action of moving between major versions of any framework, product or language, or, just as commonly, alteration to the data schema of an application. This might involve modifying existing data to make it work with the new version.

An action of moving between major versions of any framework, product or language, or, just as commonly, alteration to the data schema of an application. This might involve modifying existing data to make it work with the new version.

11009 questions
4
votes
1 answer

Migrating from ColdFusion to ASP.NET

One my client has his website developed using coldfusion... Now I want to migrate that website from coldfusion to asp.net... As a web developer i know it is possible,but want to know a few things Challenges/Learning curves involved in migrating…
ACP
  • 34,682
  • 100
  • 231
  • 371
4
votes
2 answers

How do I move a CVS repository from one server to another and maintain history?

I have a CVS repository on my local workstation. I've demonstrated to my employer that version control is a great idea. Alright! So now I want to migrate my CVS history from my local workstation onto a real server. I have installed CVS on the server…
Keith Twombley
  • 1,666
  • 1
  • 17
  • 21
4
votes
5 answers

Tracking changes in python source files?

I'm learning python and came into a situation where I need to change the behvaviour of a function. I'm initially a java programmer so in the Java world a change in a function would let Eclipse shows that a lot of source files in Java has errors.…
Jack Twain
  • 6,273
  • 15
  • 67
  • 107
4
votes
4 answers

Why Does First Deploy with Capistrano Run db:migrate?

I'm using Capistrano to deploy to production for the first time, and I'm getting an error when I run cap production deploy The error is: ** Invoke deploy:migrate (first_time) ** Invoke deploy:set_rails_env ** Execute deploy:migrate DEBUG [048f89c6]…
codenoob
  • 800
  • 10
  • 24
4
votes
3 answers

REGEX for svndumptool

I have a large (30+GB) legacy SVN repo with a lot of externals defined that needs to be cloned to a new server. As the repo was originally created in the pre SVN v1.5 days it has a lot of externals defined with absolute paths that refer back to the…
Ausmith1
  • 204
  • 1
  • 8
4
votes
3 answers

Missing Mapping Model after editing the model

I'm in the process of a manual core data migration and keep running into Cocoa Error 134140: NSMigrationMissingMappingModelError. I've noticed this happens any time I make any change to the model, even something as small as marking a property as…
Sean Kladek
  • 4,396
  • 1
  • 23
  • 29
4
votes
2 answers

Searching for (freeware) database migration tool

I'm searching for a tool to dump a database including DDL and content as plain SQL-Sсript, so that it can be archived in a plain text format. I know e.g. the Oracle dump tools or MySQL dump, but is there a tool which can connect to different data…
Christian Waidner
  • 1,324
  • 1
  • 13
  • 22
4
votes
2 answers

migration to JBoss 5.1 - Failed to create a new SAX parser

I am trying to deploy my application (packed in .war file) that work properly on JBoss 4.2.3 to JBoss 5.1 (using java 5). Currently during deployment time I see in the server.log the error: ... Caused by: …
GyRo
  • 2,586
  • 5
  • 30
  • 38
4
votes
3 answers

How do I solve "index unique_schema_migrations already exists" in Rails?

Running rake db:migrate followed by rake test:units yields the following: rake test:functionals (in /projects/my_project) rake aborted! SQLite3::SQLException: index unique_schema_migrations already exists: CREATE UNIQUE INDEX…
James A. Rosen
  • 64,193
  • 61
  • 179
  • 261
4
votes
1 answer

Parsing and changing NSPredicate

I have to migrate data from a previous app version to a new version. This also affects some predicates (NSPredicate instances) that were saved by users, which means that I have to change them programmatically. Currently I try to parse the string I…
cocoafan
  • 4,884
  • 4
  • 37
  • 45
4
votes
1 answer

Django South Migration Error: Key is Not Present

I added these fields to my model: class WatchList(models.Model): name = models.CharField(max_length=20) class Thing(models.Model): watchlist = models.ForeignKey(WatchList) Ran the schemamigration successfully: >>> $ python2.7 manage.py…
Nick B
  • 9,267
  • 17
  • 64
  • 105
4
votes
2 answers

Google Page Rank - New Domain / Link Structure Migration

i've been tasked with re-organizing a pure HTML site into a CMS. if all goes well, the new site will eventually become the main URL, and the old domain will be phased out. the old domain has a decent enough page rank, and the company wishes to…
Owen
  • 82,995
  • 21
  • 120
  • 115
4
votes
3 answers

Conditional compiling according to VC++ compiler version

I am in the process of migrating our VC++ project from Visual Studio 2005 (VC8) to Visual Studio 2008 (VC9). Some of the projects in the solution have paths to third party libraries in their 'Additional Library Directories' field in the project…
Hoppy
  • 720
  • 2
  • 12
  • 24
4
votes
5 answers

Laravel 4 migration: class not found exception

So apparently now I get this weird error when I want to migrate my database {"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"Class '' not…
KennyV
  • 832
  • 1
  • 9
  • 18
4
votes
3 answers

Can I import an android studio project to eclipse?

I would like to know if it is possible to import an android studio project to eclipse. So far I tried: Import directly from eclipse: imported a bunch of weird projects without any code It seems like InteliJ has an export to eclipse feature, but I…
lage
  • 589
  • 2
  • 5
  • 18