Too many positional options error, Mongodb - mongoexport? -
i cannot figure out why im producing error when trying simple export of 3 fields .csv file mongodb. code follows:
c:mongodb24\bin>mongoexport -db local -c pets -f type,name, color --csv -o c:\data\csc 451\spreadsheet.csv
error: many positional options
i'm wanting export type, name, , color data spreadsheet csv file.
correct answer:
c:mongodb24\bin>mongoexport -db local -c pets -f type,name,color --csv -o c:\data\csc451\spreadsheet.csv
Comments
Post a Comment