Why not just do:
INSERT INTO TABLE (uppercase_value) VALUES
(upper('value'));
Leave in the check, and all problems are solved
without overhead of a trigger. Simple checks like the one shown don't have
any noticeable speed loss. Trigger overhead does no matter how small the
operation its doing.
--
Rod Taylor There are always four sides to every story: your side, their side, the
truth, and what really happened.
|
Title: RE: [GENERAL] Convert to upper
- Re: [GENERAL] Convert to upper Peter Schindler
- RE: [GENERAL] Convert to upper Trewern, Ben
- Rod Taylor