![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, I have MS Access 2002. I want to make create a table with a blob field but I don't see that option when creating a table. I want to store text in the blob field. How do I do this? Thanks, Lee G. |
#3
| |||
| |||
|
|
I have MS Access 2002. I want to make create a table with a blob field but I don't see that option when creating a table. I want to store text in the blob field. |
#4
| |||
| |||
|
|
As Wayne said, a Memo Field will work; so will an OLE field. There's an example of using a BLOB in Access in the Imaging Examples you'll find at http://accdevel.tripod.com -- note those examples and article have not yet been updated for Access 2007. |
#5
| |||
| |||
|
|
For reasons I can't recall, the last few times I had to track various kinds of documents via a JET back end, I elected to store only the DOS path addresses of the documents and keep them in a dedicated folder. Obvious downside of that is data integrity - we'll never know if a doc goes missing until we try to open it. I store Word docs in a separate folder as you cite. I have a procedure that |
#6
| |||
| |||
|
|
For reasons I can't recall, the last few times I had to track various kinds of documents via a JET back end, I elected to store only the DOS path addresses of the documents and keep them in a dedicated folder. Obvious downside of that is data integrity - we'll never know if a doc goes missing until we try to open it. |
#7
| |||
| |||
|
|
I've been meaning to write a simple routine that 1) clears a flag on the document table 2) runs down each file mentioned in the document table verifying that it exists on the hard drive. 2a) It might be nice to store date/time and size of file to see if there were any changes since the time the file was initially saved 3) display any that are missed. Then do the same thing the other way. Go down the list of files looking for the file in the table. |
#8
| |||
| |||
|
|
Per Tony Toews [MVP]: I've been meaning to write a simple routine that 1) clears a flag on the document table 2) runs down each file mentioned in the document table verifying that it exists on the hard drive. 2a) It might be nice to store date/time and size of file to see if there were any changes since the time the file was initially saved 3) display any that are missed. Then do the same thing the other way. Go down the list of files looking for the file in the table. That seems to address the original question to some degree: sounds like even the stars store their docs in the file system rather than JET.... How about SQL Server? Same deal? Or is it workable? |
|
I've got an agenda here.... got my guys talked into moving to SQL Server if testing shows a performance increase and I'm wondering if I should change my document storage strategy. |
#9
| |||
| |||
|
|
Per Tony Toews [MVP]: I've been meaning to write a simple routine that 1) clears a flag on the document table 2) runs down each file mentioned in the document table verifying that it exists on the hard drive. 2a) It might be nice to store date/time and size of file to see if there were any changes since the time the file was initially saved 3) display any that are missed. Then do the same thing the other way. Go down the list of files looking for the file in the table. That seems to address the original question to some degree: sounds like even the stars store their docs in the file system rather than JET.... How about SQL Server? Same deal? Or is it workable? I've got an agenda here.... got my guys talked into moving to SQL Server if testing shows a performance increase and I'm wondering if I should change my document storage strategy. |
#10
| |||
| |||
|
|
"(PeteCresswell)" <x@y.Invalid> wrote in news:guv3t396hs6jpsdbdpck334qd6humdofvv (AT) 4ax (DOT) com: Per Tony Toews [MVP]: I've been meaning to write a simple routine that 1) clears a flag on the document table 2) runs down each file mentioned in the document table verifying that it exists on the hard drive. 2a) It might be nice to store date/time and size of file to see if there were any changes since the time the file was initially saved 3) display any that are missed. Then do the same thing the other way. Go down the list of files looking for the file in the table. That seems to address the original question to some degree: sounds like even the stars store their docs in the file system rather than JET.... How about SQL Server? Same deal? Or is it workable? I've got an agenda here.... got my guys talked into moving to SQL Server if testing shows a performance increase and I'm wondering if I should change my document storage strategy. I actually copy the file to an attachments subdirectory on the server, renaming it to the primary key of the attachment's record, then set it (the copy) to read-only. I did one application where the attachments table did originally include the ole field, and was not impressed. The DBA admin at work won't allow blobs in SQL Server. |
![]() |
| Thread Tools | |
| Display Modes | |
| |