In DB2 V7 (mainframe) can I create a table that checks
a column for upper case (UCASE)? The manual indicates I cannot and I am not having any success. If there is a way, how would it be coded? Here is what I'm using....
CREATE TABLE DHP0000.MTHP0290_278_PHNUM
P278_SYS_CD CHAR(10) NOT NULL
CHECK (P278_SYS_CD IS UCASE(P278_CNTCT_CD))
It's not working.
Thanks for any help!
a column for upper case (UCASE)? The manual indicates I cannot and I am not having any success. If there is a way, how would it be coded? Here is what I'm using....
CREATE TABLE DHP0000.MTHP0290_278_PHNUM
P278_SYS_CD CHAR(10) NOT NULL
CHECK (P278_SYS_CD IS UCASE(P278_CNTCT_CD))
It's not working.
Thanks for any help!