LLBLGen 3.5 - 3.5.12.123
Adapter - .NET 4.0
PostgreSQL 9.2.8
I've reviewed some existing threads similar and I know this is an issue with my database login role that I am using for my connection in the designer.
My account can run the following queries that I nabbed from another post:
SELECT t.table_name, obj_description(c.oid, 'pg_class') as table_comment
FROM information_schema.tables t
INNER JOIN pg_class c ON t.table_name = c.relname
INNER JOIN pg_namespace s ON t.table_schema = s.nspname AND s.oid = c.relnamespace
WHERE t.table_schema = 'public' AND t.table_type = 'BASE TABLE'
SELECT c.*, col_description(t.oid, c.ordinal_position) as column_comment
FROM INFORMATION_SCHEMA.COLUMNS c
INNER JOIN pg_class t ON c.table_name = t.relname
INNER JOIN pg_namespace s ON c.table_schema = s.nspname AND s.oid = t.relnamespace
WHERE table_schema='public' --AND table_name = 'TABLE NAME'
ORDER BY ordinal_position asc
select schema_name
from information_schema.schemata
What other permissions does my role need to be able to refresh the catalog without being a superuser or owner?