The Unique tool separates all unique records into one stream, and all the "extras" into a separate one.
INPUT:
ColName
cat
cat
dog
OUTPUT:
UNIQUE
ColName
cat
dog
DUPLICATE
ColName
cat
But what if I want instead for all the Uniques to go to one data steam and all Duplicates to go to the other?
OUTPUT:
UNIQUE
ColName
dog
DUPLICATE
ColName
cat
cat
I can imagine some workarounds, but is there a preferred way of accomplishing this?