Schema
public
Owner
waveuser005
Descriptions
There is no description for view vwadm_indexes
Fields
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(pg_class.relname::text) AS dvnaam,
lower(pg_class.relname::text) AS dvindexname
FROM pg_class
WHERE pg_class.relkind = 'i'::"char" AND upper(pg_class.relname::text) ~~ 'IDX_%'::text;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 5-1-2022 14:13 |
![]() ![]() ![]() |