Sto cercando di importare file CSV in PostGIS. A seguito di questo post , ho creato tabelle prima. Ho trovato altri suggerimenti che dicono che posso eseguire il comando copia.
Se eseguo questo comando:
COPY table FROM '/Users/macbook/file.csv' DELIMITERS ',' CSV HEADER;
non ha copiato affatto la tabella. Dice che "table" non è riconosciuto.
Ho provato questo:
COPY moulding
(Borough,Block,Lot,CD,CT2010,CB2010,SchoolDist,Council,ZipCode,FireComp,PolicePrct,Address,ZoneDist1,ZoneDist2,ZoneDist3,ZoneDist4,Overlay1,Overlay2,SPDist1,SPDist2,LtdHeight,AllZoning1,AllZoning2,SplitZone,BldgClass,LandUse,Easements,OwnerType,OwnerName,LotArea,BldgArea,ComArea,ResArea,OfficeArea,RetailArea,GarageArea,StrgeArea,FactryArea,OtherArea,AreaSource,NumBldgs,NumFloors,UnitsRes,UnitsTotal,LotFront,LotDepth,BldgFront,BldgDepth,Ext,ProxCode,IrrLotCode,LotType,BsmtCode,AssessLand,AssessTot,ExemptLand,ExemptTot,YearBuilt,BuiltCode,YearAlter1,YearAlter2,HistDist,Landmark,BuiltFAR,ResidFAR,CommFAR,FacilFAR,BoroCode,BBL,CondoNo,Tract2010,XCoord,YCoord,ZoneMap,ZMCode,Sanborn,TaxMap,EDesigNum,APPBBL,APPDate,PLUTOMapID,Version)
FROM
'/Users/macbook/file.csv'
DELIMITERS
','
CSV HEADER;
ma non ha funzionato neanche.
Un esempio di tale set di dati può essere scaricato da questo link :
Devo creare un modello e quindi eseguirlo?
table
nel tuo schema pubblico?
COPY moulding FROM '/Users/macbook/file.csv' DELIMITERS ',' CSV HEADER;