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