I am new for using MonetDB
. I have imported .csv
file in it.
However there are always the problem :
sql>COPY INTO 123 FROM' C:\Program Files\MonetDB\112.csv' USING DELIMITERS '|', '|\n' LOCKED; COPY INTO: filename must have absolute path: C:\Program Files\MonetDB\112.csv
OR It display another question :
sql>COPY INTO usgs FROM 'C:\Program Files\MonetDB\112.csv' USING DELIMITERS '|', '|\n' LOCKED; Failed to import table '123', incomplete record at end of file
I do not konw how to solve it?
123
orusgs
? Do you get the same error if you change the second delimiter from'|\n'
to'\n'
? – Pakman\
in windows is interpreted as an escape character by the monetdb parser. You might want to use a double\\
for every\
– Allen Wang