active questions tagged migration - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T10:01:33Zhttp://stackoverflow.com/feeds/tag/migrationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870707/migrating-large-cvs-repository-to-svn0Migrating large CVS repository to SVNnotnoop2009-12-08T23:52:54Z2009-12-09T08:08:58Z
<p>I have a large CVS repository module (~2.2GB of CVS and has 10 years of active development). I'm attempting to migrate it to SVN in order to host it on Google Code, which has about 1GB limit.</p>
<p>Is there a way to do a partial migration, where I only migrate the last year worth of changes only? cvs2svn and cvs2ps in the documentation discuss partial migration by prune folders not by pruning history.</p>
http://stackoverflow.com/questions/1727676/joomla-module-works-locally-but-displays-nothing-when-hosted1Joomla module works locally but displays nothing when hostedVinnie2009-11-13T07:23:04Z2009-12-08T21:55:56Z
<p>Hello, I am new to joomla and I need to work on a joomla website for a school project. I modified an existing module to make it display featured projects and it does that flawlessly when I test the site locally. However, when I uploaded my files to the hosted copy of the website, the module will load but does not display anything. It just loads the title and the area for the php output but there is nothing returned by the script. Why would this be happening? I have joomla mostly figured out but I'm stumped when it comes to this problem.</p>
<p>As far as I can tell, all files related to this module have been copied over successfully and it is setup properly in the module manager. I turned on debugging mode on the hosted copy and got this message when trying to load another page with this module on it:</p>
<blockquote>
<p>Parse error: syntax error, unexpected
T_STRING in
/home/content/s/r/s/srsgdmnet/html/components/com_rbids/rbids.html.php
on line 1</p>
</blockquote>
<p>I looked at the file and I don't have a clue what it's talking about. Line one is just "<code><?php</code>" which is fine. Is it just saying line 1 but actually referring to a problem elsewhere? This file is part of a reverse auctions component that my module interacts with. I didn't modify the code in that file with the exception of using a regular expression (search using "\n\s*(\n)", replace with "\n") to remove excessive amounts of whitespace via the replace command in Netbeans. This cut roughly 3200 lines from the file, making it much easier to navigate. I assume this did not alter anything in terms of code because it still works fine when used locally.</p>
<p>I modified my local configuration.php file to use the same database as the hosted copy to see if it was a database issue but it still worked fine so that rules that out. The php.ini files are the same on both copies with the exception of the local one having the Zend stuff commented out so I could use Xdebug (made this change after the problem occurred in an attempt to locate it). I have stepped through the code with Xdebug and haven't been able to track the issue down so I'm thinking it's a configuration problem.</p>
<p>My local copy also does not load certain modules (main menu, for one) and I can't navigate to some of the other pages, not sure if that is related. The code is the same for both copies yet each one has different results. Am I skipping vital steps for migrating the code?</p>
<p>I am using Joomla version 1.5.9. Please help!</p>
http://stackoverflow.com/questions/219164/generics-in-legacy-code5Generics in legacy codemorsch2008-10-20T17:03:03Z2009-12-08T18:38:47Z
<p>We've got a fairly large amount of code that just made the jump to Java 5. We've been using generics in those components targeted at being released in the Java 5 version, but the remaining code is, of course, full of raw types. I've set the compiler to generate an error for raw types and started manually clearing them, but at the present rate it'll take a <em>very</em> long time to go through with it (there are about <em>2500</em> errors). And that's with Eclipse's helpful Infer Generic Type quick fix, which always gets rid of the errors, but often generates code that needs further work.</p>
<p>Is there any better way to dealing with this? Are there any automated tools better than Eclipse? Any way to apply the refactoring to <em>all</em> occurences instead of doing them one-by-one? Or do you just ignore the warnings?</p>
http://stackoverflow.com/questions/1867842/conditional-compiling-according-to-vc-compiler-version2Conditional compiling according to VC++ compiler versionHoppy2009-12-08T15:51:06Z2009-12-08T17:32:34Z
<p>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 settings. The paths look something like this:<br>
..\SomeLibrary\Lib\vc9\x86</p>
<p>It would be really useful if I could use one of Visual Studio's "Property Page Macros" to substitute for the compiler version, in much the same way as I can use $(ConfigurationName) to substitue for "Debug" or "Release". Something like the following would be perfect:<br>
..\SomeLibrary\Lib\<b>$(CompilerVersion)</b>\x86</p>
<p>Unfortunately, I can't find an appropriate macro.</p>
<p>Please note that when I say 'macro' I am refering to Visual Studio's "Property Page Macros", not C/C++ preprocessor macros. As far as I am aware you can't use preprocessor directives in the project settings.</p>
<p>Does anyone know of a way to do this?</p>
http://stackoverflow.com/questions/786909/getting-the-whole-files-history-with-p4-git0Getting the whole files history with p4-gitJoce2009-04-24T17:46:44Z2009-12-08T14:30:03Z
<p>As I've mentioned in a <a href="http://stackoverflow.com/questions/783906/git-under-windows-msys-or-cygwin">previous question</a>, I'm looking into migrating our source control from Perforce to git.<br />
Looking around, I've found <a href="http://git.or.cz/gitwiki/InterfacesFrontendsAndTools#head-bb56c0cc211da9af16917d005ac59179224373f3" rel="nofollow">p4-git</a> (you have to dig a bit more, since it's not even at the repository pointed by the link. The actual <a href="http://repo.or.cz/w/git.git?a=blob%5Fplain;f=contrib/fast-import/git-p4;hb=maint" rel="nofollow">p4-git script</a> harder to find). </p>
<p>I'm now running this script, and it imports the current version of the files in a new git repository, but I can't manage to get the history, no matter what I do. </p>
<p>Here's the current command line I use is: </p>
<pre>P4CLIENT=my-p4-clientspec git-p4 clone --max-changes=1000 --use-client-spec //p4/path/to/be/imported/...</pre>
<p>So, the real question is: if anyone has managed to import a P4 depot, <em>including the history</em>, I'd like to know how you did it.</p>
<p>Thanks!</p>
<p>joce.</p>
http://stackoverflow.com/questions/1855925/extra-changecolumns-in-doctrine-generate-migrations-diff0Extra changeColumns in Doctrine generate-migrations-diffJosh Nankin2009-12-06T17:19:48Z2009-12-08T05:57:31Z
<p>I'm generating migrations between different yaml schema files: i.e. running:</p>
<p>symfony doctrine:generate-migrations-diff</p>
<p>And the resulting migration file has a whole slew of changeColumn calls that weren't added in the last schema file change.</p>
<p>For example, if you run generate-migrations-diff without changing your schema file whatsoever, you should get an empty up() function. However, the function that results for me has a changeColumn call for virtually every table in my database.</p>
<p>Am i doing something wrong or is this a bug?</p>
http://stackoverflow.com/questions/1856255/porting-ms-sql-stored-procedures-to-mysql0Porting MS SQL stored procedures to MySQLRadu0942009-12-06T19:06:31Z2009-12-07T18:18:48Z
<p>i have about 140 - 150 stored procedures that I need to migrate from MS SQL 2005 to MySQL 5.1</p>
<p>After succesfully porting 0 of them in the last eight hours I decied to drop by and ask if anyone has any experience, or tips, or knows some util app that can help.</p>
<p>MySQL Administrator is not very helpfull, with a frustrating "MySQL Error number 1064 You have an error in your SQL Syntax; check the manual that corresponds to your MySQL server version for the right syntax". Given that an average SP is +100 lines long, simply GUESSING what the problem is is not an option.</p>
<p>Eg. This is the exact error that I get :</p>
<pre><code> Script line: 1 You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '' at line 5
</code></pre>
<p>Then at line 5 all I have is:</p>
<pre><code>declare PropID float;
</code></pre>
http://stackoverflow.com/questions/1561981/validation-errors-with-core-data-migration1Validation Errors with Core Data Migration John Gallagher2009-10-13T18:10:46Z2009-12-07T14:38:09Z
<p>I'm encountering a very annoying error using Core Data on Mac OS X 10.5.</p>
<p>All entities have classes in my application which share the same names.</p>
<p>Up to this point, I've done 5 migrations without problems.</p>
<p>I'm using the XML data store.
I've got V5 of my data model with 13 entities, 4 of which are abstract. It looks like this:
<img src="http://synapticmishap.co.uk/ObjectModel.jpg" alt="alt text" /></p>
<p><strong>What I do</strong></p>
<ol>
<li><p>Create a new version of my data
model - this is V6.</p></li>
<li><p>Add a new entity (JGToolbarWindow)
and set the parent to JGWindowBase.</p></li>
<li><p>Added a mapping model that goes from
V5 to V6. Saved it.</p></li>
<li><p>Set the current version to be V6.</p></li>
<li><p>Build and Debug.</p></li>
</ol>
<p>I've got automatic migration switched on in the Persistent Store Coordinator options dictionary.</p>
<p><strong>The Problem</strong></p>
<ol>
<li><p>Get an error - "Multiple validation
errors occurred."</p></li>
<li><p>I've set a breakpoint and examined
the validation errors. There's a long
list of validation errors - there
seems to be one for every data entry.</p></li>
<li><p>It seems that it's stripping out ALL
the relationships and since one of my
properties - application - is set to
be required, this counts as a
validation error.</p></li>
<li><p>So it seems the problem lies with the
migration not being able to migrate
the relationships... even though
apparently nothing has changed as far
as relationships go.</p></li>
<li><p>When I look in ~/Library/Application
Support/Name of my app/ I see an XML
Data Store that's got the same name
appended by .xml.new When looking at
this file in a text editor, all the
relationships have indeed been
stripped out.</p></li>
</ol>
<p><strong>What I've tried</strong></p>
<ol>
<li><p>Creating a new XML data store and
putting a handful of items in it,
then trying again. I get the same
errors for each item.</p></li>
<li><p>Cleaning and rebuilding.</p></li>
<li><p>Making sure the old .xml.new from
previous validation has been
deleted.</p></li>
<li><p>Deleting the new model version and
repeating my actions to make sure I
didn't screw something up.</p></li>
<li><p>Adding mapping entries for each of
the abstract classes, which are
ignored by default. Added all
attributes and relationships. Still
exactly the same error.</p></li>
<li><p>Tried adding a new entity that
doesn't have a class, just based on
NSManagedObject which has
JGWindowBase as a parent. Again,
failed.</p></li>
</ol>
<p>The only thing I can think that has changed is some of my internal logic in the classes underlying the model. But these are minor changes and I can't understand how it was migrating fine, and now it's not when nothing appears to have changed.</p>
<p>I've tried a brand new migration from a renamed latest data store and have exactly the same problems. Which means I've got to solve this problem for <strong>any</strong> data migration to work.</p>
<p><strong>Errors</strong></p>
<p>When I put a breakpoint at the presentError line below</p>
<pre><code>if (![persistentStoreCoordinator addPersistentStoreWithType:NSXMLStoreType
configuration:nil
URL:url
options:options
error:&error]){
[[NSApplication sharedApplication] presentError:error];
}
</code></pre>
<p>and examine the error userInfo, I get lots of errors like this:</p>
<pre><code>Error Domain=NSCocoaErrorDomain Code=1570 UserInfo=0x67ebfd0 "item is a required value."
</code></pre>
<p><code>po (NSArray *)0x67ebfd0</code></p>
<p>gives:</p>
<pre><code>NSLocalizedDescription = "item is a required value.";
NSValidationErrorKey = item;
NSValidationErrorObject = <NSManagedObject: 0x45d5830> (entity: JGLogEntry; id: 0x4baccb0 <x-coredata://B597E13E-BE74-402E-BF00-5E1D57898406/JGLogEntry/p13942> ; data: {
duration = nil;
item = nil; // <<< Here's the problem.
processBundleID = nil;
processID = nil;
processName = nil;
startTime = 2009-10-09 16:41:44 +0100;
stopTime = 2009-10-09 16:42:17 +0100;
windowDocumentPathOrURL = nil;
windowID = nil;
windowTitle = nil;
</code></pre>
<p>All this really tells me is that it's removed the relationship connected to item, which is a required property which is why it's telling me there are validation errors. There are a whole load for application too, which is the other required property.</p>
<p>As I see it, the problem isn't with the validation errors as such, it's that it seems to be not migrating <strong>any relationships at all</strong>.</p>
<p>I'm pulling my hair out with this. I'd really, really appreciate some help. And finally, a Star Wars quote:</p>
<blockquote>
<p>"Help me, Stack Overflow. You're my
only hope."</p>
</blockquote>
http://stackoverflow.com/questions/1340913/how-to-migrate-from-oracle-rdb-for-openvms-to-mysql-in-windows1How to migrate from Oracle RDB for OpenVMS to MySQL in Windows?polyphony2009-08-27T12:56:34Z2009-12-07T14:01:30Z
<p>I have a legacy Alpha server with a <a href="http://www3.sympatico.ca/n.rieck/docs/openvms%5Fnotes%5Frms%5Frdb.html#rdb" rel="nofollow">RDB</a> database. This db is replicated in a MySQL db with many bad php scripts that drops all the tables and takes everything from the Alpha.</p>
<p>This works very slow and is becoming unmaintainable. Is there a better way to fix this than programming again the scripts? Anything like MySQL Migration Toolkit?</p>
http://stackoverflow.com/questions/1857301/does-asp-net-mvc-perform-better-under-iis7-versus-iis60Does ASP.NET MVC perform better under IIS7 versus IIS6?Chad2009-12-07T01:30:13Z2009-12-07T05:44:43Z
<p>I'm running my ASP.NET MVC app on an IIS6 host right now, and they're not willing to upgrade my server, nor move my site to an IIS7 server - unless I purchase a new account to transfer to.</p>
<p>Under IIS6 I understand there are a lot of wildcard mappings happening to get the .net framework to process the incoming connections for each type. I'm assuming this incurs quite a bit of overhead...</p>
<p>Does ASP.NET MVC perform better under IIS7? I don't think it's super important for my site just yet, but as it grows I'll need to consider this.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1562991/migrating-clearcase-to-x2Migrating Clearcase to Xnav.jdwdw2009-10-13T21:25:23Z2009-12-05T19:27:59Z
<p>I was asked to choose an open-source alternative to Clearcase-UCM, and I need an advice what would be the best match. Given below are some parameters I've collected:</p>
<ul>
<li>Half of the development teams use the Integration view, development view, rebase and delivery methodology. The rest just work straight on their integration stream with private views as if it was trunk.</li>
<li>all the teams use baselines for labeling versions. </li>
<li>They claim to be facing merging problems with Clearcase-UCM, so the alternative must have merging capabilities well designed.</li>
<li>Zero maintenance - there is no VCS admin for the tool.</li>
<li>Windows based development, so the tool must have a good win32 support.</li>
<li>IDE integration (eclipse).</li>
<li>Mac-OS support.</li>
<li>nice to have: migration tool.</li>
</ul>
<p>What tool will fit both working methods (neither of the groups is going to adopt the other method)?
I have svn, mercurial, and git as alternative so far. will one of them fit? Are there any other choices?</p>
http://stackoverflow.com/questions/913052/simple-way-of-moving-root-web-application-to-child-application-of-another-site0Simple way of moving root web application to child application of another site?maxp2009-05-26T22:19:39Z2009-12-05T04:00:03Z
<p>We have an IIS 7 site that is really very complicated, and also undocumented (lots of virtual directories, child applications etc).</p>
<p>We want to move it from its current position (www.xyz.com) to be a child folder of another site (www.abc.com), effectively making something like www.abc.com/xyz/<<em>site files</em>></p>
<p>Obviously you cant drag and drop it to another site so i was wondering if there was an 'easier' way to copy this web application to another folder, rather than going through each folder/iis 7 setting.</p>
http://stackoverflow.com/questions/1412681/drupal-to-drupal-migration1Drupal to Drupal MigrationtopCweb2009-09-11T18:52:39Z2009-12-05T02:30:50Z
<p>I am attempting to migrate hosts and am having issues migrating from one Drupal instance to another. I have a multi-site install. I am attempting to maintain the files/code as well as databases. I have transferred the files from the instance of Drupal from my old server to the new server. I have exported the databases via phpmyadmin and imported them back in with cli. For some reason the homepages for my sites work but the internal pages do not. When i try to navigate to a page I get The requested URL was not found. I have installed and ran a new instance of drupal 6 (same version) on the new server and it seems to work fine. I assume it is something I am doing wrong with the porting process? Any help greatly appreciated! </p>
http://stackoverflow.com/questions/1842564/moving-postgresql-database-fails-on-non-ascii-characters-with-value-too-long0Moving PostgreSQL database fails on non-ascii characters with 'value too long'Dave Aaron Smith2009-12-03T20:10:56Z2009-12-04T17:40:16Z
<pre><code># Dump my database to a tar file
pg_dump -f myDatabase.tar -F t -h myServer -U myUser -W -i myDatabase
# create a new database
createdb -h myServer -U myUser -T template0 myDatabaseCopy
# restore my database
pg_restore -d myDatabaseCopy -h myServer -U myUser myDatabase.tar
</code></pre>
<p>Then I get this error, and the import fails for an entire table.</p>
<p>psql:/home/me/myDatabase.tar:660266: ERROR: value too long for type character varying(100)
CONTEXT: COPY myTable, line 591, column myColumn: "A former member of the State Departmentâs âFuture of Iraqâ project and now at the Atlantic Cou..."</p>
<p>Those hat-a's are those annoying curly single and double quotes. It looks to me like they fit in the column at first, but somewhere in the export / import process they expand, and then no longer fit in the character varying(100) column.</p>
<p>I'm actually moving a live database on a server I have little permission for, so a sql only solution would be great. Is there a way to do something like</p>
<pre><code>UPDATE myTable SET myColumn = removeNonAscii(myColumn) WHERE hasNonAscii(myColumn)
</code></pre>
<p>EDIT:
habe got it. I changed </p>
<pre><code>createdb -h myServer -U myUser -T template0 myDatabaseCopy
</code></pre>
<p>to</p>
<pre><code>createdb -h myServer -U myUser -T template0 -E UTF8 myDatabaseCopy
</code></pre>
<p>and that did the trick.</p>
http://stackoverflow.com/questions/1846050/google-code-svn-migration1Google Code svn migrationPatrick Allaert2009-12-04T10:15:50Z2009-12-04T10:29:57Z
<p>How to migrate from Google Code's subversion to another subversion server keeping the history?
The problem here is that I don't have access to the repository of Google Code, nor to the one I will migrate.</p>
http://stackoverflow.com/questions/1831810/is-appdata-now-the-correct-place-to-install-user-specific-apps-which-modify-th0Is AppData now the 'correct' place to install user-specific apps (which modify their own data)?robsoft2009-12-02T09:46:02Z2009-12-04T08:07:46Z
<p>I'm probably just being very thick here, but it's not clear to me where I'm supposed to install 'new' user-specific programs on Windows 7 (<i>and presumably Vista too, though I've not specifically looked at that scenario yet</i>).</p>
<p>Under Windows XP (rightly or wrongly) we always installed our programs into folders under '<b>Program Files</b>' and accepted that they'd be kind-of available to everyone. From what I can gather under Windows 7 I'm supposed to install my software under the user's <b>AppData</b> folder (possibly <b>AppData\Local\MyApp</b>). That makes a degree of sense, but the fact that this folder is 'hidden' by default means that we're going to have 'fun' talking our users through support stuff.</p>
<p>I want to install our software so that it's user specific (the Users bit in Windows 7 makes perfect sense) but I do want the user to be able to access it if required. Our program also includes a 'data' subdirectory which it needs to write into while it's running (embedded database), but as the program is intended to be single-user/standalone, the data folder being inside a user-specific folder isn't going to be a problem.</p>
<p>My problem is just that whole 'hidden folder' aspect of AppData. As much as I've trawled the MSDN, I can't work out where else I'm supposed to install user-specific programs. Taken one way it would seem to be something like <b>AppData\Local\MyApp</b>, and another way it would seem to be just as valid under the user's <b>My Documents\MyApp</b> equivalent.</p>
<p>Has anyone got a clear guide for where all this stuff goes? I found the MSDN docs confusing. :-)</p>
http://stackoverflow.com/questions/1068690/is-there-a-python-module-compatible-with-google-apps-engines-new-tasks0Is there a python module compatible with Google Apps Engine's new "Tasks"refack2009-07-01T11:43:50Z2009-12-04T04:04:06Z
<p>I'm writing a Python application, that I want to later migrate to GAE.
The new "Task Queues" API fulfills a requirement of my app, and I want to simulate it locally until I have the time to migrate the whole thing to GAE.</p>
<p>Does anyone know of a compatible module I can run locally?</p>
http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code11Strategy for developing namespaced and non-namespaced versions of same PHP codeporneL2009-12-02T22:41:35Z2009-12-03T23:39:43Z
<p>I'm maintaining library written for PHP 5.2 and I'd like to create PHP 5.3-namespaced version of it. However, I'd also keep non-namespaced version up to date until PHP 5.3 becomes so old, that even Debian stable ships it ;)</p>
<p>I've got rather clean code, about 80 classes following <code>Project_Directory_Filename</code> naming scheme (I'd change them to <code>\Project\Directory\Filename</code> of course) and only few functions and constants (also prefixed with project name).</p>
<p>Question is: what's the best way to develop namespaced and non-namespaced versions in parallel?</p>
<ul>
<li><p>Should I just create fork in repository and keep merging changes between branches? Are there cases where backslash-sprinkled code becomes hard to merge?</p></li>
<li><p>Should I write script that converts 5.2 version to 5.3 or vice-versa? Should I use PHP tokenizer? <code>sed</code>? C preprocessor?</p></li>
<li><p>Is there a better way to use namespaces where available and keep backwards compatibility with older PHP?</p></li>
</ul>
http://stackoverflow.com/questions/1842108/how-to-collaborate-on-mysql-schema0How to collaborate on mysql schema?Marplesoft2009-12-03T18:56:45Z2009-12-03T22:47:38Z
<p>I'm working with another dev and together we're building out a MySQL database. We've each got our own local instances of MySQL 5.1 on our dev machines. We've not yet been able to identify a way for us to be able to make a local schema change (eg: add a field and some values for that field) and then export some kind of script or diff file that the other can import in. I've looked into Toad and Navicat's synchronization features but they seem oriented towards synchronizing between two instances, not an instance and an intermediate file. We thought MySQL Workbench would be great but this but the synchronization feature just seems plain broken. Any other ideas? How do you collaborate with others on the schema?</p>
http://stackoverflow.com/questions/1791426/how-to-deploy-database-source-and-binary-changes-in-1-patch5How to deploy: database, source and binary changes in 1 patch?tarasm2009-11-24T16:59:05Z2009-12-03T18:54:05Z
<p>Hello There,</p>
<p>I'm part of a development team that works on many CMS based projects, using systems like Joomla and Drupal.</p>
<p>In our development process, all of our code changes are managed inside of Git. At the end of a sprint, we create a <strong>DIFF</strong> that we can apply via <strong>patch</strong> to live site.</p>
<p>The problem is that most of the time, the changes include </p>
<ul>
<li>Database Schema Changes</li>
<li>Database Data Changes</li>
<li>Source Code changes</li>
<li>Binary file changes (like images)</li>
</ul>
<p>Git Diff handles Source Code changes beautifully. Binary files are only not included in the Diff except for reference to the fact that the files have changed. </p>
<p>Database Schema Changes and Database Data Changes are a mess.</p>
<p>I was wandering if anything like an unified patch system exists that could be used to deploy all of these changes in 1 patch.</p>
<p>So the question is, <strong>"Is there a system that can be used to deploy all of these changes in 1 shot?</strong> </p>
<p>Ideally, this system would allow to run dry-run like patch, but for all of the 4 data types.</p>
<p><strong>Edit</strong>:
Thank you everyone for the feedback that you provided, it was a starting point for my research in this area. </p>
<p>Here is what I found so far:</p>
<ol>
<li><p>It's difficult to deploy php based
applications using linux packaging
system because the changes to the
project happen iteratively rather
then as releases.</p></li>
<li><p>It would be possible to use dbconfig to deploy changes to a
project, but the problem is
generating mysql db diffs (schema
and data)</p></li>
<li><p>what really is missing for deployment of php based applications
is a deployment manager that would
be installed on the server and would
be the interface for deploying the
patches</p></li>
</ol>
<p>I started a Google Wave on this topic and produced a lot of information as a result.
If anyone is interested in reading this wave, please let me know and I will add you.</p>
http://stackoverflow.com/questions/1830021/is-an-update-to-d2010-really-meaningful2Is an update to D2010 really meaningfulstanleyxu20052009-12-02T00:55:28Z2009-12-02T06:08:34Z
<p>I am trying to migrate my own projects to delphi 2010. But it seems to be very difficult. </p>
<ol>
<li>I use TntControls for old projects. If I remove this library, some runtime functions must be re-implemented by myself. For instance: convert UnicodeString to a specified code page.</li>
<li>The "SizeOf", "Length", FillChar() still confuse me. Compiler will throw a warning, if SizeOf() should be replaced with Length(). But I have not found any idiot-safe tutorials for me.</li>
<li>A confusing warning, when trying to cast an AnsiString to UnicodeString. This conversation won't cause a data lose, will it?</li>
<li>Many code (zip, string utils, etc.) must be retested. </li>
</ol>
<p>Too many headaches... Can someone share experience on migrating existing project from a very old delphi to delphi 2010?</p>
http://stackoverflow.com/questions/1829511/jvcl-2-10-and-delphi-20100JVCL 2.10 and Delphi 2010LukLed2009-12-01T22:52:24Z2009-12-01T23:51:24Z
<p>Did you try using JVCL 2.10 with Delphi 2010? I have Delphi 7 project that heavily uses DB components from that library and want to move it to new Delphi. I know that migration from JVCL 2.10 to newest JVCL version will be very problematic, so it would be better if Delphi 2010 worked with 2.10. do you have any experience?</p>
http://stackoverflow.com/questions/1818475/replacement-or-migration-strategy-for-excel-access7Replacement or Migration strategy for Excel/AccessMrTelly2009-11-30T08:16:41Z2009-12-01T04:24:36Z
<p>Is there a way of offering the flexibility of Excel/Access development that end users love while instilling centralised IT management so data and logic is secure, backed up, version controlled etc. The common options are to re-write in C#/ASP.Net/Java/Python/Your Choice, but that takes away control from the users. Is there a better way, and what do you do at your site?</p>
<p>There is a universal issue of users creating fantastically useful Excel/Access mini-apps that the IT department would like to bring under control. Users love the flexibility that Excel affords, especially on the fly changes, graphing and data import/export. In Access we have brilliant QBE. The downside is that after a short while there are legions of out of control spreadsheets/mdbs which are mission critical, with lots poorly understood business logic, and brittle code, they're a pain to support especially as staff move on.</p>
<p>This puts the IT dept in an awkward spot, they'd like to support these apps, but don't know enough about them. This is made more difficult as they are typically insecure with zero documentation.</p>
http://stackoverflow.com/questions/219401/is-there-an-easy-way-to-do-a-complete-migration-from-cvs-to-starteam2Is there an easy way to do a complete migration from CVS to StarTeam?Scott W2008-10-20T18:33:00Z2009-11-30T23:53:44Z
<p>I'm currently maintaining a CVS repository for source control. There is a push afoot to move to StarTeam. It has already been purchased and is a corporate standard for most projects. I was told by the corporate owners of the StarTeam servers that there is no known way to do a complete migration of our current CVS repository to StarTeam. We have been advised to do a checkout of the latest version and import that into StarTeam.</p>
<p>I would really prefer to keep all of my version history and not have to choose between simply losing all of the data or maintaining my CVS repository indefinitely.</p>
<p>Has anybody had any luck doing this? Any recommended tools or processes? Or am I just wasting my time and I should just migrate and cut my losses?</p>
<p>UPDATE: The official response from Borland is that this is definitely doable, but not with the boxed software. I can purchase services from Borland to help me accomplish this.</p>
http://stackoverflow.com/questions/57530/any-tool-to-migrate-repo-from-vault-to-subversion6Any tool to migrate repo from Vault to Subversion?Michael Haren2008-09-11T20:26:49Z2009-11-30T18:45:14Z
<p>Are there any <strong>tools</strong> to facilitate a migration from <a href="http://www.sourcegear.com/vault/index.html" rel="nofollow">Sourcegear's Vault</a> to <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a>?</p>
<p>I'd really prefer an existing tool or project (I'll buy!).</p>
<p><strong>Requirements:</strong></p>
<ol>
<li>One-time migration only</li>
<li>Full history with comments</li>
</ol>
<p><strong>Optional:</strong></p>
<ol>
<li>Some support for labels/branches/tags</li>
<li>Relatively speedy. It can take hours but not days.</li>
<li>Cost if available</li>
</ol>
<p>Bonus points if you can share personal experience related to this process.</p>
<p><hr /></p>
<p>One of the reasons I'd like to do this is because we have lots of projects spread between Vault and Subversion (we're finally away from sourcesafe). It'd be helpful in some situations to be able to consolidate a particular customer's repos to SVN.</p>
<p>Additionally, SVN is better supported among third party tools. For example, <a href="http://hudson.dev.java.net/" rel="nofollow">Hudson</a> and <a href="http://www.redmine.org/" rel="nofollow">Redmine</a>.</p>
<p>Again, though: we're not abandoning vault altogether.</p>
http://stackoverflow.com/questions/1567399/convert-wordpress-com-hosted-blog-to-blogengine-net2Convert Wordpress.com Hosted Blog to BlogEngine.NETChris Marisic2009-10-14T16:18:49Z2009-11-30T17:49:49Z
<p>I'm looking at what is needed to move from wordpress.com to a BlogEngine.NET or similar blog. I've seen a tool for replacing export.php so that it will export your wordpress site in BlogML format so it can easily be imported into BlogEngine.NET, however I'd really not want to have to setup php/wordpress just so I can import a back up from wordpress.com and then use the export from my local wordpress to have a BlogML file.</p>
<p>Are there any tools that will convert the wordpress file? Is there a different blog that will natively import the wordpress file?</p>
<p><strong>Edit:</strong> For the question about other blog providers, I am open to them as long as they are .NET based, preferably C#.</p>
http://stackoverflow.com/questions/1525770/migrating-bo-reports-between-environments0Migrating BO Reports between environmentssmaclell2009-10-06T13:58:10Z2009-11-28T23:27:27Z
<p>We have the standard 3 environment setup of development, testing and production. Each environment has their own report server, web server, database server, etc. </p>
<p>Part of our migration is to move our business objects (xi r2) reports between the servers but as of right now we need to manually update the connection settings for each report. This is mildly painful now at 40+ reports and will become a nightmare as we continue.</p>
<p>Due to how we generate reports we cannot dynamically change the connection string when we generate the report. We are using stored procs instead of Universes because that is what the team is most familiar with. </p>
<p>Any suggestions would be greatly appreciated.</p>
http://stackoverflow.com/questions/1796910/what-problems-should-i-expect-when-moving-legacy-perl-code-to-utf-86What problems should I expect when moving legacy Perl code to UTF-8?rassie2009-11-25T13:28:35Z2009-11-27T23:49:19Z
<p>Until now, the project I work in used ASCII only in the source code. Due to several upcoming changes in I18N area and also because we need some Unicode strings in our tests, we are thinking about biting the bullet and move the source code to UTF-8, while using the <code>utf8</code> pragma (<code>use utf8;</code>)</p>
<p>Since the code is in ASCII now, I don't expect to have any troubles with the code itself. However, I'm not quite aware of any side effects we might be getting, while I think it's quite probable that I will get some, considering our environment (perl5.8.8, Apache2, mod_perl, MSSQL Server with FreeTDS driver).</p>
<p>If you have done such migrations in the past: what problems can I expect? How can I manage them?</p>
http://stackoverflow.com/questions/1404620/using-rails-migration-on-different-database-than-standard-production-or-develo1Using Rails Migration on different database than standard "production" or "development"Frank Schumacher2009-09-10T11:01:02Z2009-11-27T17:34:04Z
<p>Hi!</p>
<p>I have a rails project running that defines the standard production:, :development and :test DB-connections in config/database.yml</p>
<p>In addition I have a quiz_development: and quiz_production: definition pointing to a differnet host/db/user/password</p>
<p>My goal now is to define a Migration that uses "<code>quiz_#{RAILS_ENV</code>}`" as its database configuration.</p>
<p>What I have tried (and failed):</p>
<ul>
<li>Setting ActiveRecord::Base.connection in the Migration file</li>
<li>Changing the db:migrate task in rails to set ActiveRecord::Base.connection there</li>
</ul>
<p>Question:</p>
<p>How can I make rake db:migrate use that other database definition?</p>
<p>Thanks,
Frank</p>
http://stackoverflow.com/questions/1029974/experience-migrating-legacy-cobol-pl1-to-java4Experience migrating legacy Cobol/PL1 to JavaMadMurf2009-06-22T23:53:29Z2009-11-27T17:29:53Z
<p><strong>ORIGINAL Q:</strong>
I'm wondering if anyone has had experience of migrating a large Cobol/PL1 codebase to Java? </p>
<p>How automated was the process and how maintainable was the output?</p>
<p>How did the move from transactional to OO work out? </p>
<p>Any lessons learned along the way or resources/white papers that may be of benefit would be appreciated.</p>
<p><hr /></p>
<p><strong>EDIT 7/7:</strong> Certainly the NACA approach is interesting, the ability to continue making your BAU changes to the COBOL code right up to the point of releasing the JAVA version has merit for any organization. </p>
<p>The argument for procedural Java in the same layout as the COBOL to give the coders a sense of comfort while familiarizing with the Java language is a valid argument for a large organisation with a large code base. As @Didier points out the $3mil annual saving gives scope for generous padding on any BAU changes going forward to refactor the code on an ongoing basis. As he puts it if you care about your people you find a way to keep them happy while gradually challenging them. </p>
<p>The problem as I see it with the suggestion from @duffymo to </p>
<blockquote>
<p>Best to try and really understand the
problem at its roots and re-express it
as an object-oriented system</p>
</blockquote>
<p>is that if you have any BAU changes ongoing then during the LONG project lifetime of coding your new OO system you end up coding & testing changes on the double. That is a major benefit of the NACA approach. I've had some experience of migrating Client-Server applications to a web implementation and this was one of the major issues we encountered, constantly shifting requirements due to BAU changes. It made PM & scheduling a real challenge.</p>
<p>Thanks to @hhafez who's experience is nicely put as <em>"similar but slightly different"</em> and has had a reasonably satisfactory experience of an automatic code migration from Ada to Java.</p>
<p>Thanks @Didier for contributing, I'm still studying your approach and if I have any Q's I'll drop you a line.</p>