Inserting the same record 10000 times

is there a quick way in sql server to insert the same line 10000 times? eg something that loops the insert statement 10000 times

e

insert into tablename
select * from tablename1
go 10000