回答:
これは私が思いついた解決策です:
有効xp_cmdshell
で
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
GO
必要に応じてxp_cmdshell
、必要な権限を取得するためのディレクトリを作成します。
EXEC master..xp_cmdshell 'mkdir C:\exportdir'
queryoutでBCPを使用する
EXEC master..xp_cmdshell 'BCP "SELECT column_of_type_image FROM **your_db WHERE id = 1 " queryout "C:\exportdir\yourfile.pdf" -T -N'
** your_dbは完全修飾テーブル名、つまり[Yourdb]。[YourSchema]。[YourTable]でなければなりません
2B 90 01 00
同様に、すべてのファイルの先頭に追加の4バイトが追加されるという問題がありました。bcpコマンドで-Nオプションを使用する代わりに、-C RAWに変更しました。これを行うと、bcpに次の質問が表示されます。
フィールドFileData [image]のファイルストレージタイプを入力します。 フィールドFileData [4]のプレフィックス長を入力します。 フィールドFileData [0]の長さを入力してください: フィールドターミネータを入力[なし]: この形式情報をファイルに保存しますか?[Y / n]
これを修正するために、SQLサーバーのルートにテキストファイル(i.txt)を作成しました。このファイルには、これらのそれぞれに答える次の行が含まれています。
私 0 0 n
次に、EXEC bcp行が次のようになりました。
EXEC master..xp_cmdshell 'BCP "SELECT column_of_type_image FROM ** your_db WHERE id = 1" queryout "C:\ exportdir \ yourfile.pdf" -T -C RAW <C:\ i.txt'
これにより、余分な文字を一切含まないファイルがエクスポートされました。
さまざまな種類のファイル(pdf、xls、doc、xmlなど)が保存されているIMAGE列をエクスポートするソリューションを探していました。
回答のアプローチは、pdfファイルに対してのみ有効でした。あらゆる種類のファイルをエクスポートするには、次のようにソリューションを調整する必要がありました。
(1.)フォーマットテンプレートファイルを作成します。
Declare @sql varchar(500);
Declare @sql varchar(500);
SET @sql = 'bcp db.dbo.ImgTable format nul -T -n -f C:\tmp\export.fmt -S ' + @@SERVERNAME;
select @sql;
EXEC master.dbo.xp_CmdShell @sql;
(2.)作成されたエクスポート形式ファイルを開き、そのように編集します:
10.0
1
1 SQLIMAGE 0 0 "" 1 img_col ""
次に、エクスポートコマンドを実行します。
EXEC master..xp_cmdshell 'BCP "SELECT IMG_COL FROM db.dbo.ImgTable WHERE id = ''CAB240C0-0068-4041-AA34-0000ECB42DDD'' " queryout "C:\tmp\myFile.xml" -T -f C:\tmp\export.fmt -S '
(3.)このエラーに遭遇した場合(私がしたように):
「[Microsoft] [SQL Native Client] Host-file列は、サーバーにコピーするときのみスキップできます」
以下を確認してください。
この後、エラーなしでIMAGE列ファイルの単語をエクスポートします。
1.および2.のオマージュは、すべて次の質問の答えに進みます。https : //stackoverflow.com/questions/1366544/how-to-export-image-field-to-file/24006947#24006947
EXEC master..xp_cmdshell 'mkdir D:\Project\Member\Images'
コマンドを1行で保持する-シングルライン!!!
SET @Command = 'bcp "SELECT Member_Picture FROM dbserver.[Member_Image] WHERE memberId = 1 " queryout "D:\Project\Member\Images\member1.jpg" -T -N '
PRINT @Command -- debugging
EXEC xp_cmdshell @Command
GO
SQL Server blocked access to procedure 'sys.xp_cmdshell' of component 'xp_cmdshell' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'xp_cmdshell' by using sp_configure. For more information about enabling 'xp_cmdshell', search for 'xp_cmdshell' in SQL Server Books Online.
USE [POC]
DECLARE @outPutPath varchar(50) = 'C:\Extract_Photos'
, @i bigint
, @init int
, @data varbinary(max)
, @fPath varchar(max)
, @folderPath varchar(max)
--Get Data into temp Table variable so that we can iterate over it
DECLARE @Doctable TABLE (id int identity(1,1), [Doc_Num] varchar(100) , [FileName] varchar(100), [Doc_Content] varBinary(max) )
INSERT INTO @Doctable([Doc_Num] , [FileName],[Doc_Content])
Select [STUDENTNO] , [STUDENTNAME],[STUDENTPHOTO] FROM [dbo].[STUDENTPHOTOS]
--SELECT * FROM @table
SELECT @i = COUNT(1) FROM @Doctable
WHILE @i >= 1
BEGIN
SELECT
@data = [Doc_Content],
@fPath = @outPutPath + '\'+ [Doc_Num] + '\' +[FileName],
@folderPath = @outPutPath + '\'+ [Doc_Num]
FROM @Doctable WHERE id = @i
--Create folder first
EXEC [dbo].[CreateFolder] @folderPath
EXEC sp_OACreate 'ADODB.Stream', @init OUTPUT; -- An instace created
EXEC sp_OASetProperty @init, 'Type', 1;
EXEC sp_OAMethod @init, 'Open'; -- Calling a method
EXEC sp_OAMethod @init, 'Write', NULL, @data; -- Calling a method
EXEC sp_OAMethod @init, 'SaveToFile', NULL, @fPath, 2; -- Calling a method
EXEC sp_OAMethod @init, 'Close'; -- Calling a method
EXEC sp_OADestroy @init; -- Closed the resources
print 'Document Generated at - '+ @fPath
--Reset the variables for next use
SELECT @data = NULL
, @init = NULL
, @fPath = NULL
, @folderPath = NULL
SET @i -= 1
END