Schema
public
Owner
waveuser005
Descriptions
There is no description for view vwadm_indexes
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
Definition
CREATE VIEW public.vwadm_indexes (
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) ~~ 'IDX_%'::text;
This file was generated with SQL Manager for PostgreSQL (www.sqlmanager.net/products/postgresql/manager) at 21-10-2025 10:22 |
|