I have a constraint called users.SYS_C00381400. How do I find what that constraint is? Is there a way to query all constraints?
users.SYS_C00381400
maybe this can help..
SELECT constraint_name, constraint_type, column_name from user_constraints natural join user_cons_columns where table_name = "my_table_name";