Questions tagged [migrate]

Migration is the process of moving data from container to another. This includes migration to and from physical containers (e.g. hard disks) and migration to and from logical containers.

Migration is the process of moving data from container to another. This includes migration to and from physical containers (e.g. hard disks) and migration to and from logical containers.

Migration often involves some form of reorganization of the data.

Physical migration includes (but is not limited to):

  • moving data from an old hard disk to a newer one
  • moving data from one server to another

Logical migration includes (but is not limited to):

  • migrating data from one database system to another (e.g. Oracle 10g to MySQL 5)
  • migrating existing web applications from one web server to another
  • migrating a cell phones contact list to another cell phone

In contrast to , the data held in the original system after the migration process has been successfully completed is not necessarily used any more.

1099 questions
0
votes
1 answer

How to migrate a redis instance to n instance?

I have one redis node already, now the momery is cost much and i want to migrate this to more instance. if i load the rdb in every instance, it must be waste a lot. I can use "keys " to get all key, and then sharding the data by performing a…
zhouzuan2k
  • 157
  • 2
  • 8
0
votes
2 answers

Convert module from 1.5 to 2.5 version

Have been Googling for hours to find the solution on how to convert my modules from Joomla version 1.5 to 2.5. The modules doesn't show up in the administrator area under "Extensions > Module Manager". Where should I start and how should I do to…
JohnSmith
  • 417
  • 4
  • 10
  • 21
0
votes
1 answer

Error migrating the wordpress on developing

I'm developing a WordPress page on local, now i need to migrate it to a server. I did it before 2 or 3 times some time ago, i move the files to the new server, change the URL on the database entries and create the new database. I had problems…
ruudy
  • 491
  • 2
  • 8
  • 21
0
votes
1 answer

How can we migrate inventory of files and components from one teamsite server to another? (unix box)

I have certain list of files (and components). We basically have two environments - test and prod. The new site has been set up in test and needs to migrate to prod. Any way to do this? Also does this migration not impact UIDs (unique Ids/internal…
0
votes
1 answer

Rails: Can't assign model object values after migrating to 2.3.5

I'm migrating a Rails app from 2.0.2 to 2.3.5. I have a model class: class EventQuery < ActiveRecord::Base set_table_name 'EventQueries' def to_s; name; end end I'm debugging the problem in the console. I try to assign an EventQuery object an…
nuno
  • 194
  • 1
  • 11
0
votes
2 answers

Why date time different 1 hour when retrieve timestamp data of postgresql from rails

I have a problem that is I migrate database table from rails. In the tables columns timestamps with timezone is also include. When I insert data into database, timestamp columns save current time as (eg. 2012-08-09 12:00:00 UTC+6:30) I think it…
0
votes
1 answer

heroku Rake db:migrate fails - undefined method `pushconfig'

I get the error message below. Any suggestions? undefined method `pushconfig' for #
user663778
  • 381
  • 4
  • 14
0
votes
1 answer

Migrate from Flash AS3 to AIR

I've been developing a project in AS3 but decided to switch to AIR instead, as I found out it's impossible to save files on user's hard drive without prompt appearing. My question is, what changes do I have to expect? is the code written in same…
astralmaster
  • 2,344
  • 11
  • 50
  • 84
0
votes
1 answer

Is there documentation on how to upgrade a Joomla extension from 1.5 to 2.5

I'm in the process of migrating my Joomla 1.5 web site to Joomla 2.5. I'm using all of the migration tools available, but I have a few, key, extensions, most of which are pretty simple, that are not being upgraded to 2.5. Is there any clear…
0
votes
2 answers

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.
bhaagi5
0
votes
0 answers

Migrate symfony from one server to another

I want to move symfony 1.4.18 from server A to server B server A root directory is httpdocs server B root directory is public_html both servers are shared hosts. I downloaded all the files in server A httpdocs directory export the database from…
nickleefly
  • 3,733
  • 1
  • 29
  • 31
0
votes
0 answers

errors when migrate web app from Tomcat6 to WebLogic12c

I had a work to migrate the web app from Tomcat to Weblogic12 ,I made the war use all the files under Tomcat webapp folder , then copy the war to the autodeploy folder of the weblogic ,Start up the weblogic server to make the application deployed…
Utopia.Xia
  • 41
  • 1
  • 4
0
votes
2 answers

how to define regular expression in c#

I need to replace a all string in source code document using regex like this: strcpy(x,"string is string") become _tcscpy(x,_T("string is string"));. actually , i need surround all string in function with T_ marco How to define a regular expression…
nguyen
  • 171
  • 6
  • 13
0
votes
1 answer

AddUserIdToMytimes .. Error - SQLite3::SQLException: duplicate column name: user_id: ALTER TABLE "mytimes" ADD "user_id" integer

i try this to tap into the terminal : rails generate migration AddUserIdToMytimes user_id:integer --> create db:migrate --> -- add_column(:mytimes, :user_id, :integer) rake aborted! An error has occurred, this and all later migrations…
UserS
  • 83
  • 1
  • 2
  • 9
0
votes
1 answer

Fast & safe way to migrate an existing MVC2 web app to MVC3

We've been working with .Net v3.5 SP1 and MVC 2. Backend SQL Server 2005. Its a web 2.0 web app using several AJAX & jQuery features. Now we want to migrate to .Net v4.0 and MVC 3. The main reason being that most of the upgrades and enhancements…
Hemant Tank
  • 1,724
  • 4
  • 28
  • 56