I have a table containing an identity column as well as a column representing the creation date:
CREATE TABLE dbo.OrderStatus ( OrderStatusId int IDENTIT
An easier way is:
insert dbo.OrderStatus default values go 500
this will insert 500 rows of default values.