Alright, I just tried it again and, again, no dice, although at least my thematic tables are stored in the PostGIS DB. Here&#39;s what&#39;s going on:<div><br></div><div>- I am the owner of the tables that are created in PostGIS. Their names are lower case versions of the names of the maps they&#39;re attached to in GRASS. They don&#39;t seem to contain any geometric/geographic data though.</div>

<div>- I can&#39;t export the areas to PostGIS though. Here&#39;s the command I used and the results:</div><div><div>v.out.ogr in=Gebaeude_Globalstrahlung olayer=test dsn=PG:host=localhost dbname=isis_db_extern user=lee password=XXXXX type=area format=PostgreSQL</div>

<div>The map contains islands. To preserve them in the output map, use the -c flag</div><div>ERROR 1: PQconnectdb failed.</div><div>FATAL:  Ident authentication failed for user &quot;lee&quot;</div><div>ERROR 1: PostgreSQL driver doesn&#39;t currently support</div>

<div>database creation.</div><div>Please create database with the `createdb&#39; command.</div><div>ERROR: Unable to open OGR data source &#39;PG:host=localhost dbname=isis_db_extern user=lee password=XXXXX&#39;</div></div>

<div><br></div><div>Nonetheless, I&#39;m able to access the database with my username and password in psql. Plus, I was able to reproject the maps into this location using the same authentification credentials, so they shouldn&#39;t be the problem. The database already exists, so I don&#39;t know why it wants me to use createdb. My user was definitely able to create tables that contain the attributes of the geometries that I see in GRASS. The geometries show up fine with their attributes, at least in GRASS.</div>

<div>- I&#39;m also unable to do a table join. I want to join &quot;Buildings&quot; to &quot;Gebaeude_Globalstrahlung&quot; by a primary key - in &quot;Buildings&quot; it&#39;s &quot;cat&quot;, in &quot;Gebaeude_Globalstrahlung&quot; it&#39;s &quot;alk_id&quot;. Those are the ones I made using v.distance as a way to do a spatial join. Here&#39;s the command:</div>

<div><div>v.db.join map=Buildings col=cat otable=Gebaeude_Globalstrahlung ocolumn=alk_id  </div><div>DBMI-Postgres driver error:</div><div>Cannot execute:</div><div>ALTER TABLE Buildings ADD COLUMN cat INTEGER</div><div>
ERROR:  column &quot;cat&quot; of relation &quot;buildings&quot; already exists</div>
<div>ERROR: Error while executing: &#39;ALTER TABLE Buildings ADD COLUMN cat INTEGER</div><div>&#39;</div><div>ERROR: Cannot continue (problem adding column).</div><div>ERROR: Cannot continue.</div></div><div><br></div><div>

The keys work, I&#39;ve tried checking them in psql. The command</div><div>SELECT oska, value FROM buildings, gebaeude_globalstrahlung WHERE alk_id = <a href="http://buildings.cat">buildings.cat</a>;</div><div>works just fine and gives me the correct values.</div>

<div><br></div><div>Anybody have an idea of what&#39;s going on? I think the DB is doing okay, it seems that something&#39;s not working in GRASS. Whatever the case, I just can&#39;t get the vectors to go into the database. Thanks!</div>