Luuk
2009-07-24 18:32:38 UTC
When trying to convert a MSSQL (2008 Express) database to MySQL (5.1)
My systems throws the following error:
Messages
Error 0xc020844b: Data Flow Task 5: An exception has occurred during
data insertion, the message returned from the provider is: Kan een
object van het type System.Int16 niet converteren naar het type
System.Char[].
(SQL Server Import and Export Wizard)
It claims it cannot convert a Int16 to a Char ?
then newly created table looks like this:
CREATE TABLE "dgmAttributeCategories" (
"categoryID" tinyint NOT NULL,
"categoryName" varchar(50),
"categoryDescription" varchar(200)
)
Anyone got an idea on how to solve this.... (without manually typing the
records into MySQL)
My systems throws the following error:
Messages
Error 0xc020844b: Data Flow Task 5: An exception has occurred during
data insertion, the message returned from the provider is: Kan een
object van het type System.Int16 niet converteren naar het type
System.Char[].
(SQL Server Import and Export Wizard)
It claims it cannot convert a Int16 to a Char ?
then newly created table looks like this:
CREATE TABLE "dgmAttributeCategories" (
"categoryID" tinyint NOT NULL,
"categoryName" varchar(50),
"categoryDescription" varchar(200)
)
Anyone got an idea on how to solve this.... (without manually typing the
records into MySQL)
--
Luuk
Luuk