Pretty much the same as this question.
But I can\'t seem to get this to work with SQL Server Express in Visual Studio 2008.
Same Table layout, One column wit
Instead of trying to rely on some syntax about "DEFAULT VALUES" as the keyword, let the engine help you with that... How about explicitly trying to set ONE of the values, such as
insert into YourTable ( PickOneField ) values ( "whatever" )
So, even though you are only preping ONE field, the new record by the native engine SHOULD populate the REST of them with their respective default values.