Archives of the TeradataForum
Message Posted: Thu, 16 Aug 2007 @ 23:39:05 GMT
Subj: | | Re: Check constraint. |
|
From: | | Anomy Anom |
<-- Anonymously Posted: Thursday, August 16, 2007 17:28 -->
Works fine for me. Perhaps the table is not in the database you think it is?
What if you do
select * from dbc.tables where
Databasename='db' and TableName='cust';
Or as prior poster suggested you are running in ANSI mode and case does not match?
select ColCheck(char(200)) from dbc.SHOWCOLCHECKS where
Databasename='db' (not CS) and TableName='cust' (not CS);
|