When I create table with columns not null, Oracle automatically creating check constraints to be not null: like this ( query from user_constraints view)
NAME TYPE SEARCH_CONDITION
------------------------------ ---- ---------------------------------------
SYS_C0036357 C "SUPPLIER_ID" IS NOT NULL
SYS_C0036358 C "SUPPLIER_NAME" IS NOT NULL
So, is there any way to know that constraint created by Oracle(Auto) or it had been created by user.
thank you.