dbTalk Databases Forums  

Electronic Document Storage

comp.databases.ms-access comp.databases.ms-access


Discuss Electronic Document Storage in the comp.databases.ms-access forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Gary
 
Posts: n/a

Default Electronic Document Storage - 01-21-2009 , 06:21 AM






Hi

I have a database with an MS SQL back end and now have a requirement
to store electronic copies of documents within the database.

I know SQL can store electronic copies of documents as we have another
- quite seperate - off the shelf package that does this.

However, is it possible to do it from an MS Access Front End, and if
so, how?

Thanks

Gary

Reply With Quote
  #2  
Old   
Salad
 
Posts: n/a

Default Re: Electronic Document Storage - 01-21-2009 , 07:46 AM






Gary wrote:

Quote:
Hi

I have a database with an MS SQL back end and now have a requirement
to store electronic copies of documents within the database.

I know SQL can store electronic copies of documents as we have another
- quite seperate - off the shelf package that does this.

However, is it possible to do it from an MS Access Front End, and if
so, how?

Thanks

Gary
Sounds like some database bloat. Can you store the file to a folder and
store a hyperlink to the file in a table (with a hyperlink field) in
Access? Using HyperlinkPart(), extract and call the link

'creates a hyperlink
a = "TestFile#C:\Test"
? hyperlinkpart(a,1)
TestFile
? hyperlinkpart(a,2)
C:\Test

With the filename, then use the code at
http://www.mvps.org/access/api/api0018.htm to open the file.



Reply With Quote
  #3  
Old   
robert.waters
 
Posts: n/a

Default Re: Electronic Document Storage - 01-21-2009 , 11:34 AM



On Jan 21, 8:46*am, Salad <o... (AT) vinegar (DOT) com> wrote:
Quote:
Gary wrote:
Hi

I have a database with an MS SQL back end and now have a requirement
to store electronic copies of documents within the database.

I know SQL can store electronic copies of documents as we have another
- quite seperate - off the shelf package that does this.

However, is it possible to do it from an MS Access Front End, and if
so, how?

Thanks


You could use Access as only a front-end, having a server product
(mssql, mysql) storing the documents as blobs.
To reduce 'bloat', you could even compress or encode the files first,
using compress() in your inserts and uncompress() in your selects.

I personally manage a mass document storage app, and I store a UNC
path to each document as well as a searchable text or ocr
representation, using mysql.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.