Hi,<br>I've just installed PostgreSQL 8.1.4 without the GIS extensions and after that installed the <span style="font-family: courier new,monospace;">postgis-pg81-setup-1.1.3-1.exe</span> from <a href="http://postgis.refractions.net/download/windows/">
http://postgis.refractions.net/download/windows/</a>. ]<br><br>Everything went fine but when I try to run the SQL statements generated by the <span style="font-family: courier new,monospace;">shp2pgsql</span> program, the error message 
<span style="font-style: italic;">"ERROR:  current transaction is aborted, commands ignored until end of transaction block"</span> is reported.<br><br>I've tried to run only the create table statement, but the same error message was reported. 
<br>So I've changed:<br><div style="margin-left: 40px;"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">CREATE TABLE "gis_test"."brazil_tiled2" (gid serial PRIMARY KEY,
</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">"location" varchar(255));</span>
<br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"></div>To:<br><div style="margin-left: 40px;"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">CREATE TABLE gis_test.brazil_tiled
</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">(</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">
<span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">  "location" varchar,</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">
  gid serial NOT NULL,</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">  CONSTRAINT brazil_tiled_pk PRIMARY KEY (gid)
</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">) </span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">
<span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">WITHOUT OIDS;</span><br style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);"><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">
ALTER TABLE gis_test.brazil_tiled OWNER TO postgres;</span><br></div><br>But even so the same error message is reported when I only submit the following SQL statement:<br><br><span style="font-family: courier new,monospace; background-color: rgb(255, 204, 204);">
SELECT AddGeometryColumn('gis_test','brazil_tiled2','the_geom','-1','MULTIPOLYGON',2);</span><br><br>I must be doing something very wrong. <br><br>Any Hints/suggestions would be most appreciated!<br><br>-- <br>"Minds are like parachutes, they work best when open."
<br><br>Bruno Patini Furtado<br>Software Developer<br>webpage: <a href="http://bpfurtado.net">http://bpfurtado.net</a><br>software development blog: <a href="http://bpfurtado.livejournal.com">http://bpfurtado.livejournal.com
</a>