Closed jensb closed 4 years ago
I have this table:
CREATE TABLE foo ( ... foobar [bit] NULL, ... )
but when I export this with SchemaZen I get
CREATE TABLE foo ( ... foobar [bit] NULL DEFAULT ((0)), ... )
which of course destroys all NULL values, thus corrupting data during the transition.
This seems to be a bug (or something) in the database. I get the same result when connecting to it with MSSMS 2014 - but not with MSSMS 2017. Weird. But (I guess) schemazen is not the problem.
I have this table:
CREATE TABLE foo ( ... foobar [bit] NULL, ... )
but when I export this with SchemaZen I get
CREATE TABLE foo ( ... foobar [bit] NULL DEFAULT ((0)), ... )
which of course destroys all NULL values, thus corrupting data during the transition.