Click here to Skip to main content
15,867,308 members
Articles / Database Development / SQL Server / SQL Server 2008

How To Store Any File into SQL Database

Rate me:
Please Sign up or sign in to vote.
4.67/5 (44 votes)
22 May 2009CPOL2 min read 203.9K   8.6K   63   26
An easy technique to store any file into SQL database

Introduction

This is just a simple article to store any file format into a SQL server database.

Background

Recently I completed a project where I need to store various files, i.e. Microsoft Office file formats, PDF, Images, etc.). When I started writing code, I wrote a function to store binary, after that I thought why not use direct bulk insert from a StoredProcedure.

Using the Code

I am going to discuss the ways in which you can directly store binary data into a SQL table by using a simple stored procedure as given below:

SQL
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO

-- =============================================
-- Author:		Author,,Md. Marufuzzaman
-- Create date: 
-- Description:	Description,, Insert the Binary data 
-- =============================================
-- EXEC dbo.spStoreBinaryFiles 'C:\eFaxFiles\eFaxPromo.pdf;D:\eFaxFiles\eFaxPromo.pdf;'
CREATE PROCEDURE [dbo].[spStoreBinaryFiles]
 @FILE_PATH	VARCHAR(MAX)
AS
BEGIN
	SET NOCOUNT ON;
	DECLARE @FILE_LENGTH  BIGINT
	DECLARE @FILE_DATA    VARBINARY(MAX)
	DECLARE @FILE_NAME	  VARCHAR(100)
	DECLARE @DOCUMENT_NAME VARCHAR(100) 
	DECLARE @DOCUMENT_NATURE VARCHAR(5)  

	DECLARE @VAL1 VARCHAR(100)
	DECLARE @VAL2 VARCHAR(100)

DECLARE curDOCUMENTS CURSOR FOR SELECT *  FROM dbo.SPLIT ( ';', @FILE_PATH )
OPEN curDOCUMENTS
FETCH NEXT FROM curDOCUMENTS 
INTO @VAL1,@VAL2

WHILE @@FETCH_STATUS = 0
BEGIN

	IF OBJECT_ID('#ORStable') IS NULL 
		BEGIN
			CREATE TABLE #ORStable _
				(Length BIGINT, vDocument VARBINARY(MAX))
			
			DECLARE @SQL_QUERY	  NVARCHAR(1000)

			SET @SQL_QUERY= '
			INSERT INTO #ORStable
			SELECT len(bulkcolumn), *
			FROM OPENROWSET(BULK '''+@VAL2+''', _
					SINGLE_BLOB) AS BinaryData'
			exec SP_executesql @SQL_QUERY
 
		END
	
		EXEC dbo.spGetDocumentNature @VAL2, @DOCUMENT_NATURE  OUTPUT
		EXEC dbo.spGetDocumentName @VAL2, @DOCUMENT_NAME  OUTPUT
        
      SELECT TOP 1 @FILE_LENGTH = Length, @FILE_DATA = vDocument FROM #ORStable
	  INSERT INTO dbo.tblBinaryFiles
			(
				 [File]
				,[Path]	
				,[Ext]
				,[Size]
				,[Binary]
			)

	  VALUES(
				 @DOCUMENT_NAME
				,@VAL2
				,@DOCUMENT_NATURE
				,@FILE_LENGTH
				,@FILE_DATA
			)
     
     DROP TABLE dbo.#ORStable

    FETCH NEXT FROM curDOCUMENTS 
    INTO @VAL1,@VAL2

END

CLOSE curDOCUMENTS
DEALLOCATE curDOCUMENTS 

END

OPENROWSET: Includes all connection information necessary to access remote data from an OLE DB data source. This method is an alternative to accessing tables in a linked server and is a one-time, ad hoc method of connecting and accessing remote data using OLE DB. The OPENROWSET function can be referenced in the FROM clause of a query as though it is a table name. The OPENROWSET function can also be referenced as the target table of an INSERT, UPDATE, or DELETE statement, subject to the capabilities of the OLE DB provider. Although the query may return multiple result sets, OPENROWSET returns only the first one.

Binary Large Objects (BLOBs): BLOB data type to store any data that a program can generate: graphic images, satellite images, video clips, audio clips, ...

BulkColumn: The BulkColumn referenced in the query represents the varbinary value to be inserted.

Sample Bulk Insert SQL Statement

SQL
			DECLARE @SQL_QUERY	  NVARCHAR(1000)

			SET @SQL_QUERY= '
			INSERT INTO #ORStable
			SELECT len(bulkcolumn), *
			FROM OPENROWSET(BULK '''+@VAL2+''', _
					SINGLE_BLOB) AS BinaryData'
			exec SP_executesql @SQL_QUERY

--Here variable VAL2 contains the single file path information.
--Example VAL2 = "\\192.168.1.1\myFiles\myFile.pdf"
--        VAL2 = "C:\myFiles\myFile.pdf" 

I wrote some other storedProcedure to get file name, file nature and a function for splitting the files path. I did not include this code because I do not want to lose focus on the main objective of this article. I hope that it will be helpful to you. Enjoy.

Points of Interest

If you use any network path, please confirm that your SQL login user is permitted to perform bulk load on the Operating System.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralMy vote of 5 Pin
hassan wasef29-Mar-13 10:03
hassan wasef29-Mar-13 10:03 
GeneralRe: My vote of 5 Pin
Md. Marufuzzaman29-Mar-13 10:17
professionalMd. Marufuzzaman29-Mar-13 10:17 
QuestionThis works! WS2k8, SqlSrvr2k8, .pdf as input ... Pin
RedDk9-Oct-12 10:39
RedDk9-Oct-12 10:39 
GeneralMy vote of 5 Pin
trivedijignesh7-Mar-12 4:48
trivedijignesh7-Mar-12 4:48 
QuestionRetrieval Pin
nick hull16-Feb-12 10:06
nick hull16-Feb-12 10:06 
GeneralMy vote of 5 Pin
Member 105108227-Feb-12 18:52
professionalMember 105108227-Feb-12 18:52 
I think This is helpful post for everybody
QuestionDatabase Restore from Backup Pin
abigio19-Aug-11 5:08
abigio19-Aug-11 5:08 
AnswerRe: Database Restore from Backup Pin
Md. Marufuzzaman19-Aug-11 7:21
professionalMd. Marufuzzaman19-Aug-11 7:21 
GeneralRe: Database Restore from Backup Pin
abigio19-Aug-11 9:13
abigio19-Aug-11 9:13 
QuestionRe: Database Restore from Backup Pin
emrdesign25-Jan-12 22:17
emrdesign25-Jan-12 22:17 
AnswerRe: Database Restore from Backup Pin
miamikk1-Aug-12 13:01
miamikk1-Aug-12 13:01 
GeneralRe: Database Restore from Backup Pin
Md. Marufuzzaman6-Aug-12 10:23
professionalMd. Marufuzzaman6-Aug-12 10:23 
GeneralOff topic but relative question ... storeMyFiles.bak Pin
RedDk25-May-11 8:12
RedDk25-May-11 8:12 
GeneralRe: Off topic but relative question ... storeMyFiles.bak Pin
Md. Marufuzzaman25-May-11 12:47
professionalMd. Marufuzzaman25-May-11 12:47 
GeneralThanks Message Pin
D.Sendhilkumar1-Apr-10 21:17
D.Sendhilkumar1-Apr-10 21:17 
GeneralRe: Thanks Message Pin
Md. Marufuzzaman2-Apr-10 5:08
professionalMd. Marufuzzaman2-Apr-10 5:08 
GeneralMy vote of 1 Pin
VMykyt13-Jul-09 23:31
VMykyt13-Jul-09 23:31 
GeneralMy vote of 1 Pin
Dave Kreskowiak23-May-09 5:57
mveDave Kreskowiak23-May-09 5:57 
GeneralRe: My vote of 1 Pin
Md. Marufuzzaman26-May-09 18:43
professionalMd. Marufuzzaman26-May-09 18:43 
GeneralRe: My vote of 1 Pin
Member 274379428-Jul-09 4:56
Member 274379428-Jul-09 4:56 
GeneralRe: My vote of 1 Pin
Md. Marufuzzaman28-Jul-09 7:12
professionalMd. Marufuzzaman28-Jul-09 7:12 
GeneralConsidering in loca area network , It’s cool. Pin
Taslima Bagum22-May-09 19:26
Taslima Bagum22-May-09 19:26 
GeneralRe: Considering in loca area network , It’s cool. Pin
Md. Marufuzzaman5-Jul-09 18:31
professionalMd. Marufuzzaman5-Jul-09 18:31 
GeneralWorking for small file. Pin
BDMaruf22-May-09 18:48
BDMaruf22-May-09 18:48 
GeneralThis wont work Pin
icestatue22-May-09 5:39
icestatue22-May-09 5:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.