• Even easier use the TABLESAMPLE funciton in sql 2005

    select * from MyTable tablesample(5 percent)

    there are some limitations on this though check BOL, the smaller the number of rows in your table the less accurate the % sample will be.