|
|
| · · · · · · · | |
|
Re: Detemine name of replication schema
Title: Detemine name of replication schema Dave,
Much obliged for the suggestion.
Here is the query to find all slony
schemas. Maybe this will be of help to others.
SELECT nspname AS “Slony Schema” FROM pg_namespace nsp JOIN pg_proc pro ON pronamespace=nsp.oid AND proname = 'slonyversion' ORDER BY nspname; From: Dave Page [mailto:dpage(at)vale-housing(dot)co(dot)uk] Sent: Friday, July 07, 2006 10:14 PM To: Melvin Davidson; pgadmin-support(at)postgresql(dot)org Subject: RE: [pgadmin-support] Detemine name of replication schema
The easiest way is to turn on SQL query logging in pgAdmin or the server and see what ends up in the logfile. I suspect (but am too tired to check right now) that it looks for schemas who's name starts with _, and contains one of the slony tables. Regards, Dave
|