Thinking about sumations

Well, according to the documentation for INSERT for SQL Server, it looks like you should be allowed to do:

INSERT INTO yourtable DEFAULT VALUES

If nothing else, you should also be able to insert with just the timestamp:

INSERT INTO yourtable(t_stamp) VALUES(CURRENT_TIMESTAMP)

Regards,