Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,

I am facing a problem,

Will you please let me know how to save and view the attachment in the database the backend is oracle
Posted

1 solution

There are two approaches to store attachments in database and one needs to decide on the hardware availability, data retention period and maintainance policy.

1. Store the files as blobs in the database.This approach would take advantage of database backup and recovery. (Lots of examples are available on web to store files as an attachment in the database)

2. Store pointers to the files in the database.The files would reside in a File System. This would reduce database size however there is a separate file server requirement.
 
Share this answer
 
Comments
SushilDharmar 5-Jun-13 8:59am    
hi Sudhakar.
I got the solution.

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900