感谢 domenicr 现在我看到,bcp键是大小写的。但是出现了另一个问题 - 每次运行脚本时,bcp都会询问我在文件中写入字段的类型 - 是否可以自动执行该操作?
Enter the file storage type of field Employee_ID [char]:
我需要将数据从视图导出到csv文件。最简单的方法,就像在我看来是BCP。我尝试阅读MSDN https://msdn.microsoft.com/en-us/library/ms162802.aspx以获取语法帮助,但我无法使bcp创建文件错误原因(从cmd运行bcp)。在此先感谢您对syntacsis的任何帮助。
bcp [base_name].[dbo].[all_users_for_ad] out 1.csv -t -c -u mylogin -p mypassword -s mysever
bcp: unknown option u
usage: bcp {dbtable | query} {in | out | queryout | format} datafile
[-m maxerrors] [-f formatfile] [-e errfile]
[-F firstrow] [-L lastrow] [-b batchsize]
[-n native type] [-c character type] [-w wide character type]
[-N keep non-text native] [-V file format version] [-q quoted identifier]
[-C code page specifier] [-t field terminator] [-r row terminator]
[-i inputfile] [-o outfile] [-a packetsize]
[-S server name] [-U username] [-P password]
[-T trusted connection] [-v version] [-R regional enable]
[-k keep null values] [-E keep identity values]
[-h "load hints"] [-x generate xml format file]
答案 0 :(得分:1)
BCP命令参数区分大小写。应该是-T和-S。对于可信连接,无需传递用户和密码。
使用-c指定字符数据类型或使用-f参数
提供格式文件请参阅有关如何创建格式文件的信息。 https://msdn.microsoft.com/en-CA/library/ms191516.aspx