将数据库的所有值保存到文本文件?
我想知道是否有一种方法可以提取列的所有值,然后将每个值保存到单独的文本文件中(标记为任何内容,1-100 都可以)。
我知道如何通过另一种语言来完成此操作,但我正在将 SQL Server 2008 与 Microsoft SQL Server Manager 结合使用,这样可以节省我一些时间来弄清楚如何通过 C# 来完成此操作。
I was wondering if there was a way to extract all the values of a column, and then save each value into separate text files (labeled ANYTHING, 1-100 works fine).
I know how to do this through another language, but I'm using SQL Server 2008 with Microsoft SQL Server Manager and it would save me some time from figuring out how to do it through C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开数据读取器并循环浏览每条记录
http://msdn.microsoft.com/en-us/library/haa3afyz。 aspx
对于每条记录,打开该列并将其写入新的文本文件
http://msdn.microsoft.com/en-us/ Library/system.io.streamwriter.aspx
(如果链接中的示例不清楚,请告诉我,我可以拼凑一个示例)
Open a Data Reader and loop through each record
http://msdn.microsoft.com/en-us/library/haa3afyz.aspx
For each record, open up and write the column to a new text file
http://msdn.microsoft.com/en-us/library/system.io.streamwriter.aspx
(If the samples in the links are unclear let me know and I can knock together an example)