Fehmi
07/12/2022, 10:43 AMogr2ogr
from my laptop (basically, I am trying to import a MapInfo TAB into the DB which PostGIS activated) but getting the error below
ERROR 1: ERROR: permission denied for table spatial_ref_sys
I think it is because the spatial_ref_sys
table is owned by supabase_admin
user and my default db user does not have write access to that table. How can I fix this? ThanksSteve
07/12/2022, 6:15 PMALTER TABLE spatial_ref_sys OWNER TO <your_user>
on the Supabase SQL Editor.Fehmi
07/12/2022, 7:59 PMsupabase_admin
user and I try to run the ogr2ogr
import with the postgres
userSteve
07/12/2022, 10:20 PMFehmi
07/13/2022, 10:31 AMFehmi
07/13/2022, 10:31 AM