Re: Can't drop a view ("view does not exist") that has an entry in "INFORMATION_SCHEMA.views"

From: Guillaume Lelarge <guillaume(at)lelarge(dot)info>
To: "Klaus Hofeditz ]project-open[" <klaus(dot)hofeditz(at)project-open(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Can't drop a view ("view does not exist") that has an entry in "INFORMATION_SCHEMA.views"
Date: 2014-11-17 21:53:31
Message-ID: CAECtzeWLZ2tJDg=-Ax3Rj_LpAhtVaVaAbi1Gh+VCxVEAnu2KiA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Le 17 nov. 2014 22:49, "Klaus Hofeditz ]project-open[" <
klaus(dot)hofeditz(at)project-open(dot)com> a écrit :
>
> Hi guys,
> I need to drop a view in order to alter a type of a column:
numeric(12,1) -> numeric(12,2):
>
> ERROR: cannot alter type of a column used by a view or rule DETAIL:
rule _RETURN on view "TransTasksCube" depends on column "billable_units"
>
> Trying to delete it, I get:
>
> projop=# drop view TransTasksCube;
> ERROR: view "transtaskscube" does not exist
>
> FYI: VIEW also shows up in table INFORMATION_SCHEMA.views:
>
> projop=# select table_name from INFORMATION_SCHEMA.views where table_name
like '%Trans%';
> table_name
> ----------------
> TransTasksCube
> (1 row)

You need double quotes because of the upper case letters:

drop view "TransTasksCube";

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Merlin Moncure 2014-11-17 21:57:58 Re: Managing Key Value tags on rows
Previous Message Klaus Hofeditz ]project-open[ 2014-11-17 21:46:27 Can't drop a view ("view does not exist") that has an entry in "INFORMATION_SCHEMA.views"