我的文字文件就像这样。
name :Settings, id :1, preference :Mail
name:test ,id:2,preference :testMail
我需要读取该文本文件并将其作为记录放在sqlserver数据库中。
name id preference
settings 1 Mail
test 2 testMail
如何像上面那样解析该文本文件。请告诉我
答案 0 :(得分:0)
使用SQL Management Studio“导入数据”任务生成SSIS包。
答案 1 :(得分:0)
使用C#.net的SQLbulkcopy方法将文本文件数据插入到sql server表中。
选中此LINK