in reply to Non-Repetitive Random Numbers

This is semantics, but random numbers may be repetitive or not, or they're not truly random. If what you really want is a sequence 1..100000 in random order then Perl can do that for you:
use List::Util; @shuffled = List::Util::shuffle(1..100000);

-- Time flies when you don't know what you're doing