After you create the database link you will have to :

insert into dev_table
select * from prod_table@prod_link
where rownum<1000

prod_link is the name that you gave to the database link.

dev_table is the name of the table on you r development environment,
and prod_table, is the production table name,
most probably dev_table=prod_table.