I have a couple questions concerning table maintenance. I am ultimately trying to provide the fastest inserts while preventing dups.
Fastload into a SET table. Fastlaod by design drops duplicate rows. Does using a SET table also involve dup checks during the distribution step?
Can I use a MULTISET table and a UPI to prevent dups? Will the UPI cause only the UPI column checked instead of a bit by bit check? What if I use a MULTISET and a NUPI and a PK constraint on the same column (TD may not allow me to do this)?
Fastload into a SET table. Fastlaod by design drops duplicate rows. Does using a SET table also involve dup checks during the distribution step?
Can I use a MULTISET table and a UPI to prevent dups? Will the UPI cause only the UPI column checked instead of a bit by bit check? What if I use a MULTISET and a NUPI and a PK constraint on the same column (TD may not allow me to do this)?