when you got that error message, it was most likely because you did not specify a column list for the INSERT statement
let's say your table has five fields, and you add a sixth one
in order for the default getdate() value to work, you have to say
Code:
insert
into annouce
( fld1, fld2, fld3, fld4, fld5 )
values
( 1, 2, 3, 4, 5 )
this way the number of supplied values equals the number of columns you are inserting into
the column you did not mention in the insert statement is then given its default value
rudy
http://r937.com/