<div dir="ltr"><div>Using dump format -D instead of inserts seems to work as well (returns line number)<br><br></div><div>shp2pgsql -D .....<br></div><div><br></div>Thanks for you help!<br></div><div class="gmail_extra"><br>
<br><div class="gmail_quote">On 19 July 2013 13:54, andy <span dir="ltr"><<a href="mailto:andy@squeakycode.net" target="_blank">andy@squeakycode.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On 7/19/2013 12:43 PM, Travis Kirstine wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
I've been attempting to import a large shapefile into postgis and I keep<br>
running into "ERROR:  current transaction is aborted, commands ignored<br>
until end of transaction block" when importing the data.<br>
<br>
  Is there a easy method to determine which INSERT causes the<br>
transaction to fail? It appears the only why is to catch the stdout as<br>
soon as psql errors<br>
<br>
shp2pgsql -I -W LATIN1 -s 3857 mybigshp.shp mytbl > mysql.sql<br>
<br>
psql -U user -o log.txt mydb < mysql.sql<br>
<br>
Thanks<br>
<br>
<br></div></div><div class="im">
______________________________<u></u>_________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org" target="_blank">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-<u></u>bin/mailman/listinfo/postgis-<u></u>users</a><br>
<br>
</div></blockquote>
<br>
In your psql step, use:<br>
<br>
psql -v ON_ERROR_STOP=1 -U user -o log.txt mydb < mysql.sql<br>
<br>
<br>
More good options here:<br>
<a href="http://petereisentraut.blogspot.com/2010/03/running-sql-scripts-with-psql.html" target="_blank">http://petereisentraut.<u></u>blogspot.com/2010/03/running-<u></u>sql-scripts-with-psql.html</a><span class="HOEnZb"><font color="#888888"><br>

<br>
-Andy</font></span><div class="HOEnZb"><div class="h5"><br>
______________________________<u></u>_________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org" target="_blank">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-<u></u>bin/mailman/listinfo/postgis-<u></u>users</a><br>
</div></div></blockquote></div><br></div>