My case scenario passes parameter to a procedure, that only does an insert. But two threads might try to pass the same value.
How to handle this situation w/out throwing an exception and with least amount of locks?
My performance requirement is at least 10k inserts per second.
EDIT: Column is unique. Timestamp might be altered (adjusted) before insertion.