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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -