从postgresql 8.01+ postgis 1.0 的数据拷贝到postgresql 7.4.7+ postgis 1.0上,
使用POSTGIS提供的pl程序不成功,后来试验最初的版本,虽然提示有些错误,但还是成功转移了数据。
pg_dump -f dumpfile.sql yourdatabase
dropdb yourdatabase
createdb yourdatabase
createlang plpgsql yourdatabase
psql -f lwpostgis.sql -d yourdatabase
psql -f dumpfile.sql -d yourdatabase
vacuumdb -z yourdatabase
发表回复