re-create information_schema - Mailing list pgsql-admin

From Ray Stell
Subject re-create information_schema
Date
Msg-id 20120229205513.GA761@cns.vt.edu
Whole thread Raw
Responses Re: re-create information_schema  (Ray Stell <stellr@cns.vt.edu>)
List pgsql-admin
on rebuilding the information_schema:
http://www.postgresql.org/docs/9.1/static/release-9-1-2.html
...
Since the view definition is installed by initdb, merely upgrading will
not fix the problem. If you need to fix this in an existing installation,
you can (as a superuser) drop the information_schema schema then re-create
it by sourcing SHAREDIR/information_schema.sql. (Run pg_config --sharedir
if you're uncertain where SHAREDIR is.) This must be repeated in each
database to be fixed.


The right thing to do here is drop cascade, correct?  No harm done with
that?

doodah=# drop schema information_schema;
ERROR:  cannot drop schema information_schema because other objects depend on it
DETAIL:  table information_schema.sql_sizing_profiles depends on schema information_schema
table information_schema.sql_sizing depends on schema information_schema
...
view information_schema.check_constraint_routine_usage column constraint_name depends on type
information_schema.sql_identifier
and 138 other objects (see server log for list)
HINT:  Use DROP ... CASCADE to drop the dependent objects too.

Thanks.

pgsql-admin by date:

Previous
From: Brian Fehrle
Date:
Subject: Re: Hot standby having high requested checkpoints?
Next
From: Ray Stell
Date:
Subject: Re: re-create information_schema