ssis 寫檔案到資料庫
Dim filename As String
Dim contents As Byte()
Dim conn As SqlConnection
Dim cmd As SqlCommand
filename = Dts.Variables("filename").Value.ToString()
contents = File.ReadAllBytes(filename)
Dim fileinfo As New FileInfo(filename)
Dim name As String = fileinfo.Name
conn = New SqlConnection("server=(server);database=dbname;UID=abc;PWD=efg;")
cmd = conn.CreateCommand()
cmd.CommandText = "insert into doc_file(id,filename,contents) values (newid(),@filename,@contents)"
cmd.Parameters.AddWithValue("@filename", name)
cmd.Parameters.AddWithValue("@contents", contents)
conn.Open()
cmd.ExecuteNonQuery()
conn.Close()這段程式碼是放到指令碼任務中,建立一個叫做filename 的變數。
Dim contents As Byte()
Dim conn As SqlConnection
Dim cmd As SqlCommand
filename = Dts.Variables("filename").Value.ToString()
contents = File.ReadAllBytes(filename)
Dim fileinfo As New FileInfo(filename)
Dim name As String = fileinfo.Name
conn = New SqlConnection("server=(server);database=dbname;UID=abc;PWD=efg;")
cmd = conn.CreateCommand()
cmd.CommandText = "insert into doc_file(id,filename,contents) values (newid(),@filename,@contents)"
cmd.Parameters.AddWithValue("@filename", name)
cmd.Parameters.AddWithValue("@contents", contents)
conn.Open()
cmd.ExecuteNonQuery()
conn.Close()這段程式碼是放到指令碼任務中,建立一個叫做filename 的變數。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16436858/viewspace-620545/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SSIS 生成檔案
- 遷移資料庫檔案到ASM資料庫ASM
- Bak檔案恢復到資料庫資料庫
- 把資料庫控制檔案備份到跟蹤檔案資料庫
- 建立資料庫檔案-日誌檔案-次要資料庫檔案資料庫
- 把csv檔案的資料匯入到oracle資料庫中Oracle資料庫
- 資料庫課程作業筆記 - 編寫資料庫遷移檔案資料庫筆記
- 【資料遷移】RMAN遷移資料庫到ASM(二)切換資料檔案到ASM資料庫ASM
- 把影像檔案上傳到資料庫,並從資料庫讀出 (轉)資料庫
- 資料庫檔案和檔案組資料庫
- DBWR 寫資料檔案 (zt)
- 從網路裡面獲取資料寫入到檔案
- 【Python】將網格資料寫入到VTK檔案Python
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- MySql資料庫——檔案MySql資料庫
- 遷移資料庫的檔案到不同路徑(轉)資料庫
- 使用RMAN遷移檔案系統資料庫到ASM資料庫ASM
- 如何在ASP.NET中上傳檔案到資料庫ASP.NET資料庫
- SSIS 資料庫排序規則衝突問題資料庫排序
- SSIS 部署篇-如何部署SSIS包到SqlServerSQLServer
- java資料list寫入檔案Java
- oracle資料庫移動資料檔案、日誌檔案和控制檔案Oracle資料庫
- 觸發DBWR程式寫髒資料塊到資料檔案的幾個條件
- 資料庫課程作業筆記 - 編寫模型檔案資料庫筆記模型
- 織夢資料庫配置檔案-DedeCMS織夢資料庫檔案在哪裡資料庫
- 通過資料庫檔案還原資料庫資料庫
- 資料庫系統檔案啟動資料庫資料庫
- 文字檔案用sqlldr工具匯入到oracel資料庫中SQL資料庫
- 用rman從檔案系統遷移資料庫到asm資料庫ASM
- Hibernate 讀取檔案到資料庫的一個bug資料庫
- rename備庫資料檔案
- 移動資料檔案從ASM到檔案系統ASM
- 如何遷移ASM資料檔案到檔案系統ASM
- Sqlserver資料庫使用 .bak 檔案還原資料庫SQLServer資料庫
- 入門計劃->使用(C++庫)ofstream寫檔案資料 (轉)C++
- 直接複製資料檔案實現linux平臺資料庫複製到windows平臺資料庫Linux資料庫Windows
- 資料庫易混淆引數名以及引數檔案啟動資料庫到nomount狀態資料庫
- 教你如何將二進位制檔案匯入到資料庫資料庫