An action of moving between major version 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.

learn more… | top users | synonyms (1)

0
votes
1answer
51 views

read the Xen Source code

i want to modify the xen(hypervisor) migration code. For that purpose i want to read out and understand the source code in terms of control flow, linkage and usage of different code segments. mainly i ...
1
vote
1answer
200 views

Web service's PostConstruct called before servlet context listener's contextInitialized

I need to migrate a web service application from Tomcat 6 (using JDK 1.5) to Tomcat 7 (using JDK 1.6) (actually testing on 7.0.27). The JAX-WS framework is Metro 2.1. I'm using two ...
0
votes
1answer
53 views

Importing Vanilla Forum to SQL Server

I'm trying to get the data from a Vanilla Forums export into SQL Server so I can then write some sort of script to import it into YAF.NET. I've tried with an integration services project and the SQL ...
0
votes
1answer
79 views

EF Code First Migrations - not detecting changes

Preword: In my database table i have two fields: (string)(FK)UserPayoffData_UserName and (int)UserPayoffDataUserName. I made a mistake, and in reality, i would like it to be only single property, ...
0
votes
1answer
48 views

Ruby on Rails: No Migration Scripts are created any longer

I've been working with Rails for 3 Months now, but haven't experienced this problem until now. I'm currently working through Micharl Hartls Tutorial and everything worked fine so far, but suddenly ...
0
votes
1answer
101 views

Migrating mySql2 to postgreSQL : query cache type error when mysql2psql

So I'm migrating my development environment and production environment to postgresql so that I can deploy to Heroku. After installing the mysql2psql gem, initializing a (postgresql)database.yml file- ...
0
votes
2answers
136 views

how to convert microsoft access db to mysql on a mac [closed]

i have searched all over google for how to convert a access database to mysql under a mac and cant find anything. Every application out there is made for windows. I read somewhere that mysql workbench ...
0
votes
2answers
390 views

EF code first - Model compatibility cannot be checked because the database does not contain model metadata

I have enabled automatic migrations. Then, I deleted my whole db. Next, i executed Update-database from command console, and it recreated my db. Then, I started my application only to see this error: ...
0
votes
1answer
97 views

Liquibase: UPDATE script (when some changes has already implemented in the database)

Ok, so the problem is probably in my approach to liquibase, I have implemented some changes in the database side, and I want to create changesets, so I simply add a new sql file to my changesets. When ...
1
vote
2answers
44 views

add associations to exisiting models

I'm wondering how I can add associations to my models. Suppose, I generate two models rails generate model User rails generate model Car Now I want to add an associations so that the models acquire ...
1
vote
1answer
85 views

Can I create an initial CodeIgniter db migration from .sql?

I have a CodeIgniter application and I just learned about migrations. It sounds very useful and I would like to start using it. However I already have a rather complex database setup. Can someone ...
1
vote
2answers
57 views

Understanding rails migration statement (:null => false)

I am trying to understand the following statement, it is from a rails migration file: x.datetime "new", :null => false x.datetime "update", :null => false I understand the the first part ...
0
votes
1answer
76 views

CakePHP 2.2 migration : get value of form element in my Helper extending FormHelper

I try to migrate an helper from cakePHP version 1 to version 2. This Helper extends FormHelper. The instruction $this->value($fieldName); doesn't work anymore. How can I get the value of my ...
0
votes
0answers
126 views

Using jstl tags in seam 2.3 without long running conversation is not working

I'm doing migration from seam 2.2 (jsf 1.2, jboss6) to seam 2.3 (jsf 2, jboss 7) and found strange behavior. I was able to reproduce it with contact-list example: edit viewContact.xhtml page and ...
2
votes
1answer
66 views

Heroku operational error

I have an app currently running in Heroku, but it suddenly stopped working, at first it told me I couldn't migrate my DB because some tables that already existed, in fact existed, let me explain ...
0
votes
0answers
33 views

Symfony1 doctrine:migrate - The application “cache” does not exist

I have a Symfony1 application, which I haven;t touched for a while. I have created some database changes as a migration and want to apply them with ./symfony doctrine:migrate On my server ...
0
votes
1answer
76 views

django south migration issue

i am really stuck here. i have a model, where i am migrating well untill now. but today i added new field, then i did schemamigration app --auto, then it found the newly added field, but when i ran ...
0
votes
0answers
69 views

How to use migrations with HMVC in CodeIgniter?

Could this be done or not? Because when you are creating a classic migrations they are e.g. 001, 002, 003, etc. but when you have multipple modules how would you create migrations for them. Is this ...
3
votes
1answer
68 views

Heroku - how to remove table and run migration again?

I just discovered that one of my tables in Heroku app has a different structure than the one on my localhost. In the best way I would need to run the migration that create a new table again, but what ...
0
votes
0answers
35 views

Is it possible to generate migration only for a part of model?

I would like to generate migrations using custom VSIX plugin and only for a part of model. I found out I can filter generated code in class inherited from CSharpMigrationCodeGenerator by overridnig ...
1
vote
0answers
20 views

EF Migrations in business project used by several applications [duplicate]

I have a VS solution with 3 projects: AppName.Client AppName.Business AppName.Web Client is a WPF client distributed to a lot of users. Web is a website with central data storage (SQL Server). ...
0
votes
1answer
49 views

Migrate abstract device lib from python to C#

I'm coming from python and new to C#. I'm migrating device library to C#. The library itself contains all device implementation and also manages the creation of it. Here is some python code: # All ...
0
votes
1answer
51 views

add column to mailboxer migration

I wanted to add two columns to the migration that makes the notifications for the mailboxer gem. When I place both in the migration that creates the notification and then run a migration it goes ...
1
vote
1answer
164 views

Entity Framework Automatic Migrations Existing Database

I am building an ASP.Net MVC4 web application with Entity Framework 5. I had to use an existing sql server database but also wanted to use Code First, so I followed this tutorial ...
1
vote
1answer
72 views

Unit tests fail after migrating from rails 2.0.1 to 2.3.17

After migration from Rails 2.0.1 to 2.3.17 Unit Tests are not working. For each of them I am getting the same error: "NoMethodError: undefined method `assert_valid_keys' for false:FalseClass". ...
2
votes
3answers
87 views

Change a web application language

I have a web application built in a single language and I would like to internationalize it by adding a few more languages. I would like to do it using a properties file containing keys and values ...
0
votes
3answers
117 views

add a database column with Rails migration and populate it based on another column

I'm writing a migration to add a column to a table. The value of the column is dependent on the value of two more existing columns. What is the best/fastest way to do this? Currently I have this but ...
0
votes
1answer
60 views

SQL Azure Migration Wizard - how to re-migrate

Once you have successfully migrated a local SQL Server database up to SQL Azure, how can you use the SQL Azure Migration Wizard to re-migrate (or sync if you will) the database? I get a number of ...
0
votes
1answer
87 views

rake db:migrate not working properly without version

I have a simple rails app without dependencies (rails new example). Then I created a scaffold Student (rails g scaffold Student name:string). After, I run rake db:create and then rake db:migrate. ...
0
votes
0answers
56 views

Migrate from Nucleus CMS to Wordpress 3.5.1

I am trying to migrate a Nucleus CMS blog to Wordpress. After failed attempts using what's listed at Wordpress Codex for importing content I got stuck with this last attempt. Nucleus-to-Wordpress ...
0
votes
1answer
201 views

Using Bundles in Laravel Migrations

I want to use sentry 1.x with Laravel 3.x in the migrations I use, but when I try to migrate I get this error: PHP Fatal error: Class 'Sentry' not found in ...
0
votes
1answer
93 views

django south - column none does not exist

i am failing to migrate using south. the problem is this: i created a model, then i did schemamigration app --auto, then migrate app, it was fine. then later on, i added another field to this model ...
0
votes
1answer
339 views

MySQL Workbench migration from SQL Server 2008 to MySQL : ERROR: Determine number of rows to copy: unsupported operand type(s)

I'm trying to migrate a database from SQL Server 2008 to MySQL using MySQL Workbench 5.2.46CE. Everything works fine until the copy of the data (step "Bulk Data Transfer) : Starting... Prepare ...
4
votes
1answer
59 views

Upgrading from PHP 5.2 to PHP 5.3 - Backward Incompatible Changes - How to detect easily?

I am looking to upgrade a large PHP website from 5.2 to 5.3 and potentially beyond afterwards. The inherited codebase I am working on is very large, 800,000+ lines of code, and for the most part ...
0
votes
0answers
672 views

Oracle - Error: 'ORA-01400: cannot insert NULL into

I'm trying to insert a record into a table, but getting the error - 'ORA-01400: cannot insert NULL into (....'. The table structure is: I migrate from Mysql to Oracle. On Mysql this works, but ...
0
votes
3answers
146 views

Joomla Migration from 1.5 to 2.5

I am migrating one of my websites from Joomla 1.5 to 2.5 version with the help of a component called jUpgrade. My Joomla 1.5 has got the following componets installed Artio JoomSEF Akeeba Backup ...
3
votes
2answers
83 views

plone.app.blob RuntimeError while migrating ATFile

I'm doing a blob migration onto a 3.2.1 site and I'm getting "RuntimeError: maximum recursion depth exceeded while calling a Python object error." on some file during @@blob-file-migration. I found ...
0
votes
1answer
48 views

Migration from Mysql to Oracle ORA-04098 SYSTEM.MD_PROJECTS_TRG error

Pls, could you help me on the following issues: I would like to migrate from mysql to oracle. I used Oracle Sql developer. I import Mysql thirty packet but when i was start migration i get this error ...
2
votes
2answers
90 views

Ember.js v1.0.0-rc.1 — How do I get/supply a controller for a programmatically created view?

I'm migrating my application from Ember v1.0.0 pre3 to rc1, and it seems I can no longer grab a global routers instance, nor can I get a controller within a view I create manually. I have a number of ...
0
votes
3answers
34 views

error on rake db:migration

I am new at ruby and also rails. I can't why my rake db:migration is returning me this error /usr/lib/ruby/vendor_ruby/rake.rb:30:in require': no such file to load -- rbconfig(LoadError) from ...
3
votes
2answers
65 views

Does Microsoft provides support for the obsolete methods if used in the latest .Net Framework

The extended support for Dot Net Framework 1.1 is ending in the September 2013,it enforces everyone to do the framework upgrade to higher version to get the benefit of microsoft support. After doing ...
0
votes
1answer
267 views

Upgrading Spring Security 2.5 to 3.1 - java.lang.NoClassDefFoundError: org/springframework/security/Authentication

This problem is proving very tricky to resolve. Usual story, inherited a very poorly maintained java web application with no unit tests and a variety of ancient jar dependencies with no version info ...
0
votes
1answer
42 views

TFS2012 Wrong user missing workspaces

I have a very unusual issue with TFS2012, We've just migrated across domain and upgraded from TFS2010 to TFS2012. All seems to work apart from one user, who we don't seem to be able to get his ...
3
votes
1answer
127 views

Migrating Symfony1.4 to Symfony 2.2 - What to reuse and how

I am about to migrate an old Symfony 1.4 Application to Symfony 2.2. I think this should be at least a bit planed. So I have several Questions, maybe you can help me: Is there maybe a good Tutorial ...
1
vote
1answer
44 views

Migrating users and pwd from AD to SQL Server

Let me describe the problem, my current portal is using AD login and pwd details to authenticate external users. I will have the new portal which will keep logins and pwds in SQL Server in a table. I ...
0
votes
0answers
43 views

How to migrate jobs from PMEase Quick Build to jenkins/hudson server

Some of our projects running on PMEase quick build CI tool and wanted to move jobs from quick build to jenkins/hudson, so anybody have idea on this
0
votes
0answers
114 views

Migrating From ASP.NET Web Form .NET 3.5 to MVC 4.0

I have a plan to convert and migrate my old project from asp.net webform 3.5 to mvc 4.0. I want to know if it is possible to do not make any changes on my existing customised membership (from net ...
1
vote
0answers
67 views

JPA live db schema migration support tools?

There are quite a few stackoverflow threads regarding JPA db schema migration and assorted tools. However, none seems to even consider service downtimes that can be too long when doing the suggested ...
0
votes
1answer
36 views

March 6, 2013, access tokens and /me/accounts/

So. According to the pending March 6th changes, I have question regarding the "Removing apps from /me/accounts/ and page_admin FQL table" change. This change seems, to me, imply that you are also ...
0
votes
0answers
48 views

CakePHP migrations: difference between individual migration files, schema.php, map.php

Some of our code creates or destroys index tables as needed but most of the time we use migrations to keep db changes in sync from localhost, to staging and then production. Cake's migration ...

1 3 4 5 6 7 58