tags:

views:

2252

answers:

3

Hello,

can anyone say how to insert the pdf file into sqlserver 2005 and read the pdf file from sqlserver...

Thanks in advace

+2  A: 

If you are interested into using database for file storage, look at this 4guysfromrolla article. It's web oriented, but there should be no problem finding what you need.

PiRX
A: 

Essentially, you are just talking about BLOB storage and retrieval (of image or varbinary(max) data). See this question: Streaming directly to a database

Marc Gravell
A: 
MGOwen