From: | John <jfabiani(at)yolo(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: trouble with getting the field names |
Date: | 2009-10-27 02:02:55 |
Message-ID: | 200910261902.55913.jfabiani@yolo.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Monday 26 October 2009 04:41:49 pm John wrote:
> Below is a SQL statement that was created to retreive the primary key , and
> column names and data types for a table name and a schema. The problem is
> that is works very well if I only use the 'public' schema. But it does not
> work if I use a 'system' schema I created (owned my me). The offending
> line is "AND pg_table_is_visible(c.oid)" which makes me believe I done
> something wrong with the roles? IOW if I drop the "pg_table_is_visible" it
> works with my 'system' schema. So I need a better guru than myself to
> help/tell me what I did wrong. Thanks in advance!
>
> SELECT a.attname, t.typname,
> EXISTS(SELECT * FROM generate_series(0, 31) idx(n)
> WHERE a.attnum = i.indkey[idx.n]) AS isprimary
> FROM pg_class c
> JOIN pg_namespace n ON n.oid = c.relnamespace
> JOIN pg_attribute a ON a.attrelid = c.oid
> JOIN pg_type t ON t.oid = a.atttypid LEFT
> JOIN pg_index i ON i.indrelid = c.oid AND i.indisprimary
> WHERE c.relname = 'sys_company' AND n.nspname = 'system'
> AND a.attname NOT IN ('ctid', 'cmin', 'cmax', 'tableoid', 'xmax', 'xmin')
> AND has_schema_privilege(n.oid, 'usage')
> AND has_table_privilege(c.oid, 'select')
> AND pg_table_is_visible(c.oid) ORDER BY c.relname, a.attname
>
> Johnf
OK I discovered the problem I needed to add
… ALTER USER test SET search_path TO schema1,schema2
thanks
Johnf
From | Date | Subject | |
---|---|---|---|
Next Message | Marc Mamin | 2009-10-27 16:08:07 | record to columns: syntax question and strange behaviour |
Previous Message | John | 2009-10-26 23:41:49 | trouble with getting the field names |