• e.g. for test purposes

    create table mytable (id int not null identity(1,1) primary key,

    col2 varchar(150) not null ,

    col3 datetime not null default getdate() )

    go

    /* Fill table with 15000 rows */

    insert into mytable (col2) values ('Initial load');

    go 15000

    Careful ALZDBA, you'll have the RBAR police after you for suggesting something like that.;)