Schema
public
Owner
waveuser005
Descriptions
There is no description for view vwadm_constraints_check
Columns
Name | Data type | Description |
|---|---|---|
dvnaam |
text |
|
dvcheckconstraintname |
text |
|
Rules
Name | Event | Instead | Condition | Description |
|---|---|---|---|---|
_RETURN |
SELECT |
|
|
|
Indices
There are no indices for table vwadm_constraints_check
Definition
CREATE VIEW public.vwadm_constraints_check (
dvnaam,
dvcheckconstraintname)
AS
SELECT upper(conname::text) AS dvnaam,
lower(conname::text) AS dvcheckconstraintname
FROM pg_constraint
WHERE contype = 'c'::"char" AND upper(conname::text) ~~ 'CHK_%'::text;
This file was generated with SQL Manager for PostgreSQL (www.sqlmanager.net/products/postgresql/manager) at 18/05/2026 15:10 |
|