any SQL 2000 experts on here.. got a question

jfish

VIP Member
VIP Member
Joined
Sep 21, 2007
Messages
3,205
Reaction score
699
I have a table within a database on SQL 2000 SP4 and one of the columns holds the binary format of Word/PDF documents

I need to extract these files, how can it be done ?
 
For a small number of documents use ODBC, set up a DSN and insert the database field in Word then copy and paste the result before saving. For a larger number of documents, script it in VBA.

I'm sure there are other ways just this one sprung to mind first :)
 
thanks .. will look at the vbscript
 
right managed to get further, got a vbscript to pull in the data and write the file to the local disk, however when opening up the file be it pdf or word - it is corrupted so think the write process isnt doing it correctly so need to read more into this.
 
Back
Top