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