I have a database in PostgreSQL 8.3.1 that I'd like to migrate to MS SQL Server 2005 (or maybe 2008), including both the table schema and the data. The database is about 50GB in size with about 400,000,000 rows, so I think simple INSERT statements are out of the question. Could anyone recommend the best tool for performing this migration? Obviously it needs to be reliable, so the data is exactly the same in the target DB as in the source one and it needs to be able to copy this volume of data within a reasonable time.
If you have the appropriate Postgres support drivers installed on your SQL 2005 box (or wish to use Postgres via ODBC, or wish to dump the data from Postgres to a file and import from that) you can use import/export wizard in SQL Server in order to copy the data. This will ask you a variety of questions and then execute the import as a SQL Server Integration Services (SSIS) package job, using appropriate batch insert operations.
However if that wizard is not an option, it's worth considering that although you have a large number of rows, the individual size of the rows is < 135 bytes on average, and given sufficient transaction log space to allow a 50 GB transaction to occur 'simple insert' statements are not themselves out of the question.
I ended up not using any third-party tool for the data as none of the ones I've tried worked for the large tables. Even SSIS failed. I did use a commercial tool for the schema, though. So my conversion process was as follows:
The transformation step took care of some differences in the formats used by pg_dump and bcp, such as:
I also found that some unique constraints that were fine in Postgres were violated in MSSQL, so I had to drop them. This was because NULL=NULL in MSSQL (ie. NULL is treated as a unique value), but not in Postgres.
http://www.easyfrom.net/
There you go :) Unfortunately, it is a little expensive.
Almost 10 years on, and this is still not a straight forward issue. I ended up with a hybrid solution, I rolled my own schema mapper by exporting the schema and table/column comments using the following command:
I then wrote a PHP script that translated the schema to T-SQL. I subsequently, used the following 3rd party software to do the actual import of rows (no affiliation):
http://www.convert-in.com/pgs2mss.htm
It's was a little slow, but so far so good. Our database was a smaller than yours, only 15GB, but that tool seemed to handle it well. It was also the cheapest one I could find at about $50. So far it's been a worth while investment.