SSIS: 把儲存在資料庫中的圖片匯出來

weixin_34015860發表於2015-04-11
原文:SSIS: 把儲存在資料庫中的圖片匯出來

Data Flow Task

image

Step 1

獲取二進位制圖片資料

declare @path varchar(100)='C:\labs\Images\'

SELECT ThumbNailPhoto,@path+ThumbnailPhotoFileName as Path
from Production.ProductPhoto

image

Step 2

在Export Column裡面設定  Extract Column和 File Path

image

相關文章