views:

14

answers:

0

Hi,

I am trying to convert from MS SQL Server 2008 Express to DB2 9.7.

I have installed IBM Migration Toolkit and successfully connected to my SQL Server database (hosted locally).

I tried to extract from database, keeping all default data mappings, but when I extract, I get the following (for all tables) - anyone had a problem like this where all column types are null with Migration Toolkit?

At first I thought it might be because I am using the express edition of SQL server and maybe it couldn't see the column types under this application, but the fact that Name and Unit are null(50) and therefore it has understood that these columns have associated lengths makes me doubt this.

CREATE TABLE [Action] ([Id] null IDENTITY , [Name] null(50) NOT NULL , [UserId] null NOT NULL , [FreqId] null NOT NULL , [Quant] null NULL , [Unit] null(50) NULL , [Start] null NOT NULL , [End] null NOT NULL , [Created] null NOT NULL , [Modified] null NOT NULL , [Deleted] null NOT NULL )