使用sqlcmd读取txt文件?
是否可以使用 sqlcmd 读取 txt 文件,以避免需要手动键入每个单元格?
我收到了一个 txt 文件,其中每个表行都在一行上,并且每一列都用逗号分隔。 (一个 .cvs 文件)
我一直在尝试查找一些命令,但是......没有运气!
任何和所有的帮助将不胜感激!
Is it possible to read in a txt file using sqlcmd, to avoid needing to type every cell by hand?
I've been given a txt file with every table row on one line, and every column seperated by a comma. (a .cvs file)
I've been trying to look up some commands but ... no luck!
Any and all help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据要求: http://blog.sqlauthority.com/2008/02/06/sql-server-import-csv-file-into-sql-server-using-bulk-insert-load-comma-delimited-文件到sql-server/
As requested: http://blog.sqlauthority.com/2008/02/06/sql-server-import-csv-file-into-sql-server-using-bulk-insert-load-comma-delimited-file-into-sql-server/
您可以使用 Management Studio 将文件中的数据导入到表中。
You can use Management Studio to import the data in the file into a table.