向Sql Server資料庫中匯入固定格式的txt文本資料,servertxt

來源:互聯網
上載者:User

向Sql Server資料庫中匯入固定格式的txt文本資料,servertxt

文本資料量比較大的時候,一條條的輸入基本不可能,寫個程式來中轉一下也是很麻煩,幸運的是sql server提供了比較簡潔的方法。

Bulk insert 表名 from 'C:\你的文字檔.txt' with (FieldterMinator ='以什麼符號分割資料', RowterMinator= '以什麼符號加\n結尾')  --\n是斷行符號的意思,就是斷行符號前面是什麼符號,如果沒符號直接單引號\n Bulk insert #temp from 'C:\test.txt' with (FieldterMinator =',', RowterMinator= '\n')--#temp是表名,c盤中的test.txt,FieldterMinator =','每個資料是以逗號分隔的,RowterMinator= '\n'每行資料以斷行符號結尾。

輕鬆搞定固定格式文本資料匯入,比mysql的sql代碼還要簡潔。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.