migration

migrating emails from imap to exchange 2010 using c#

Hi, I've been given the task of writing a small application to help migrate over 400GB of emails sitting in a public folder structure on a linux IMAP server, to a MS Exchange 2010 Public folders. I've looked at drag and drop with outlook, but there is a problem. Outlook caches all the email locally to a pst file before pushing to Excha...

Migrating an ASP.Net-MVC Application to a New Server

So basically, I developed this ASP.Net MVC application on a Windows 7 box with Visual Studio 2008. It works well on the local machine, and I was able to host it in IIS no worries. I then decided to upload it onto subversion, and fetch it on a different Windows Server 2008 machine. I downloaded it, had the IIS document root point to my ap...

How do I programatically add an article page to a sharepoint site?

I've been given the task of content migration from another CMS system to SharePoint 2010. The data in the old system is fairly easy to capture and the page hierarchy is simple so I'm not worried about that. However, I am completely flummoxed about how to even create a page in code. I'm using the Microsoft.SharePoint.Client namespace a...

Recommended guidelines on moving from wxWidget to QT

I have a project that uses the wxwidget toolkit (wxThread, wxString, wxEvent, wxDateTime, wxLog etc). I am in the process of moving over to QT. I am a little daunted by the task, and thought its best to come in here to ask those that may have carried out such an operation before. Do I: take a more measured approach (replace one clas...

"Name 'Url' is not declared" when I try to use Url.Content()

I have an ASP.NET site that is not currently using MVC but I'm trying to convert it to MVC slowly. The first time I tried using Url.Content in an .aspx page I got: Name 'Url' is not declared I then added: <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> and: <add namespace="Syste...

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 from coldfusion to asp.net... What are the factors i have to watch out for during migration?...

JSP/JSF conversion to ASP.NET

I have a pretty big JSF web application. I must convert the application to ASP.NET. I already converted the Java code to C# code manually and also using JCLA (Java Language Conversion Assistant from Microsoft). What is the best way to convert the JSF part to ASP.NET? Is there any tool that can help shorten the work? For example convert...

Why would I ever want to revert a migration?

In Rails, migrations have a down method by default for reverting a migration. In what scenario would I ever want to revert a migration, though? Some thoughts: Whether in development or production, I always have a snapshot of my database to go back to, before I even run the migrations. Especially for migrations which perform data conver...

Accomplish this task in C++; Migration from AS3.0

I've got way too much information to work with, so for now I'll consider this question answered until I can sort it all out and decide on the final implementation! Thanks a ton gf and Simon Buchan. I wish I could accept both of your answers, since they're both definite possibilities! Additional / Revised Conceptual Information as sugges...

How to manage a drupal website in git

Hello all, I'm a bit lost, one of my developer co-worker is doing a drupal website, that is doing special pages, custom logos, custom hierarchy etc. His work is scattered in database tables (it looks like CCK create tables), database rows (texts, image links etc.), static files (pictures, PDFs ...) and maybe some PHP (custom module). M...

Switching from MySQL to Cassandra - Pros/Cons?

Hello all, For a bit of background - this question deals with a project running on a single small EC2 instance, and is about to migrate to a medium one. The main components are Django, MySQL and a large number of custom analysis tools written in python and java, which do the heavy lifting. The same machine is running Apache as well. Th...

How do I test database migrations?

I'm using Migrator.NET to write database migrations for the application. Marc-André Cournoyer wrote: Like any code in your application you must test your migrations. Ups and downs code. Do it part of your continuous build process and test it on as many different databases and environment as you can. How do I do that? Say I ...

Python equivalents of the common Perl modules?

I need to rewrite some Perl code in python. So I'm looking for the closest modules to what I'm using now in Perl (i.e. with similar functionality and stability): DBI + DBD::mysql LWP::UserAgent WWW::Mechanize XML::LibXML HTML::TreeBuilder CGI::FormBuilder Template::Toolkit What are the Python equivalents to these? ...

SQL Server to MySQL - but what to do with sprocs?

I have been tasked with converting a SQL Server database into a MySQL 5.* database. I feel well-read up about converting between datatypes. However, I read that MySQL does ANSI, not T-SQL, and doesn't support cursors. My question is, what am I supposed to do with all of my SQL Server functions and sprocs (some of which use cursors) ? ...

Database migration from new YAML in Doctrine

I have to add a new column and a new table to my database but i dont have access to shell of my server. I changed my YAML file. How can i tell doctrine to "migrate models and database to changed yaml"? ...

Starteam to X migration? (where X is one of: svn/git/hg/bzr ...)

Is there a tool that can migrate Starteam to svn or git or any other modern/decent source control system? I'm thinking of something along the lines of how git-svn works; allowing you to use git to pull from an svn repository. Something that can import a StarTeam repository and convert it to an svn repository, but also keep pulling from...

Rails migrations with database-specific data types

I'm currently running a Rails migration where I am adding a datatype specific to Postgres, the tsvector. It holds search information in the form that Postgres expects for its built-in text searching capabilities. This is the line from my migration: t.column "search_vectors", :tsvector Everything seems to be working fine, and the sea...

How to use down()\rollback with database migration tools?

At my shop right now, we're trying to automate our deployment process. We're handling database migrations using a Rails-like migrations tool. One issue we're struggling with is how to automate rollbacks. For code, we can simply change the symlinked current version of the project to point to the old version (this is a web application, so ...

Migrate SQLite database to Microsoft SQL Server

After using SQLite for development and beta-testing for a home-project I want to migrate the DB to Microsoft SQL Server to get better performance. Is there any free/cheap utils that will do this? So far I have found DBConvert that looks like a good product, are there others? ...

How to update schema version manually in RoR?

I have a migration which adds triggers to MySQL via invoking ActiveRecord::Base.connection() method "execute". It works fine except what schema version is not updated. I suspect that is because the DB structure by itself is not changed (no columns and table updates). Is there a way to force the schema version update in my migration? ...