.sql ファイルを postgres にインポートしました。「yaq」という名前のデータベースを作成し、データベースにインポートしました。
psql=# grant all privileges on database yaq to Jannat;
postgres@server:~$ psql yaq
psql (9.1.8, server 9.1.9)
Type "help" for help.
yaq=# \dt
List of relations
Schema | Name | Type | Owner
--------+-----------------+-------+----------
public | relationalfacts | table | yaq
public | spatial_ref_sys | table | postgres
(2 rows)
yaq=# select * from relationalfacts
yaq-# ;
id | relation | arg1 | arg2 | timebegin | timeend | location | locationlatitude | locationlongitude | primarywitness | context
----+----------+------+------+-----------+---------+----------+------------------+-------------------+----------------+---------
(0 rows)
「yago」ではなく所有者「yaq」にすべての権限を付与しているため、関係を読み取ることができないと思います。リレーショナル テーブル yaq の読み取り権限をユーザー Jannat に与える方法はありますか? 助けてください