Viewing post 1 (of 1 total)
If you create your table using column defaults of '':
CREATE TABLE [myTable] (
[column1] [char] (10) DEFAULT (''),
[column2] [char] (10) DEFAULT ('')
) ON [PRIMARY]
GO
any insert that would produce a null value...
February 6, 2004 at 5:43 am
#493034