Hi,
I am trying to insert a script taken from a 'SQL Server 2005 Express DB' to a local 'SQL Server 2000 Desktop Engine (MSDE 2000)' DB for test purposes but get stuck on the following error message:
Descr=Syntax error converting the varchar value 'False' to a column of data type bit.
The line generating the error is
VALUES (1, 94, CAST ('False' AS bit), CAST ('False' AS bit), N'Call', 2, N'OrderType_Call', 96, 1)
Where if I change the statement to
VALUES ('1','94',0,0,'Call','2','OrderType_Call','96','1') it works fine.
Is there any way I can get the scriptgenerator to treat booleans as 0/1 rather than casting the value true/false to bits (which I guess is not supported in MSDE)?
Thanks,
Anders