Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Some way to list all constraints?
> Check the ALL_CONSTRAINTS table.
Got it. Thanks.
Funny thing though...via SQL Programmer this SQL returns CONSTRAINT_NAME values, but nothing in the SEARCH_CONDITION column.
FROM
ALL_CONSTRAINTS ac
WHERE
ac.OWNER='FIMACON'
ORDER BY
ac.CONSTRAINT_NAME;
OTOH, if I go at it via ODBC from an MS Access DB using this SQL, I see SEARCH_CONDITION in at least some (but not all) rows:
![]() |
![]() |