A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Hi, @Arshad Nazeer
Based on the information you provided. I don't think it's a good way to store large files into SQL database.
- Storing large files such as video and audio in the database will take up a lot of space and cause the database to expand. Also makes reading and querying files in the database slower.
- It will make your database backups slower and take up more bandwidth. Fetching data from the database will take more time.
As already mentioned by community member( @AgaveJoe ), I also recommend that you use file system to store these source files. Store the file name and storage path in SQL database. File system is already optimized for storing, retrieving, and indexing files. You just need to look up the filename and storage path into the database. Obtain the file path by querying the database through the browser.
Best regards,
TengFei Xie
If the answer is the right solution, please click "Accept Answer" and kindly upvote. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.