proc sql outobs = 100;
      create table SAMPLE as
         select ranuni(0) as random, *
         from POP
         order by random
      ;
   quit;