shgre 파일을 postgreSQL로 가져오고 싶습니다. 먼저 sql 파일을 만든 다음 PostgreSQL을 실행합니다. SQL 파일을 만들려면 Windows cmd에서 다음 명령을 실행하십시오.
shp2pgsql -s 4326 worldCountries.shp worldcountries postgres > worldcountries.sql
그런 다음 다음을 실행하십시오.
psql -d postgres -U postgres -p 4321 -f worldcountries.sql
그러나 결과는 다음과 같습니다.
psql : worldcountries.sql : 21 : 오류 : 함수 addGeometrycolumn (알 수 없음, 알 수 없음, 알 수 없음, 알 수 없음, 정수)이 존재하지 않습니다.
"CREATE EXTENSION postgis;"
postgis.net/docs/… 입니다.