Guest User

Untitled

a guest
Aug 17th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. $ dropdb nrel_gis&&createdb nrel_gis&&pg_restore -d nrel_gis nrel_gis_11_03_2010.pgdump
  2. pg_restore: [archiver (db)] Error while PROCESSING TOC:
  3. pg_restore: [archiver (db)] Error from TOC entry 1174; 2612 178006 PROCEDURAL LANGUAGE plpgsql
  4. pg_restore: [archiver (db)] could not execute query: ERROR: language "plpgsql" already exists
  5. Command was: CREATE PROCEDURAL LANGUAGE plpgsql;
  6. pg_restore: [archiver (db)] Error from TOC entry 61; 1255 178049 FUNCTION box2d_in(cstring) chelm
  7. pg_restore: [archiver (db)] could not execute query: ERROR: could not access file "/usr/lib/postgresql/8.1/lib/liblwgeom.so.1.1": No such file or directory
  8. Command was: CREATE FUNCTION box2d_in(cstring) RETURNS box2d
  9. AS '/usr/lib/postgresql/8.1/lib/liblwgeom.so.1.1', 'BOX2DFLOAT4_in'
  10. ...
  11. pg_restore: [archiver (db)] could not execute query: ERROR: function public.box2d_in(cstring) does not exist
  12. Command was: ALTER FUNCTION public.box2d_in(cstring) OWNER TO chelm;
  13. pg_restore: [archiver (db)] Error from TOC entry 62; 1255 178050 FUNCTION box2d_out(box2d) chelm
  14. pg_restore: [archiver (db)] could not execute query: ERROR: type box2d does not exist
  15. Command was: CREATE FUNCTION box2d_out(box2d) RETURNS cstring
  16. AS '/usr/lib/postgresql/8.1/lib/liblwgeom.so.1.1', 'BOX2DFLOAT4_out'
  17. ...
  18. pg_restore: [archiver (db)] could not execute query: ERROR: type "box2d" does not exist
  19. Command was: ALTER FUNCTION public.box2d_out(box2d) OWNER TO chelm;
  20. pg_restore: [archiver (db)] Error from TOC entry 620; 1247 178048 TYPE box2d chelm
  21. pg_restore: [archiver (db)] could not execute query: ERROR: function box2d_in(cstring) does not exist
  22. Command was: CREATE TYPE box2d (
  23. INTERNALLENGTH = 16,
  24. INPUT = box2d_in,
  25. OUTPUT = box2d_out,
  26. ALIGNMENT = int4,
  27. STORAGE...
  28. pg_restore: [archiver (db)] could not execute query: ERROR: type "public.box2d" does not exist
  29. Command was: ALTER TYPE public.box2d OWNER TO chelm;
  30. pg_restore: [archiver (db)] Error from TOC entry 51; 1255 178035 FUNCTION box3d_in(cstring) chelm
  31. pg_restore: [archiver (db)] could not execute query: ERROR: could not access file "/usr/lib/postgresql/8.1/lib/liblwgeom.so.1.1": No such file or directory
  32. Command was: CREATE FUNCTION box3d_in(cstring) RETURNS box3d
  33. AS '/usr/lib/postgresql/8.1/lib/liblwgeom.so.1.1', 'BOX3D_in'
  34. LANGUA...
Add Comment
Please, Sign In to add comment