Click here to Skip to main content
16,012,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i want to store video into database and at the time of retrieving it ask for path to store in pc.
Posted

1 solution

The best advice I can give is "Don't do it".

Video takes a lot of space, and SQL2005 is limited to a maximum database size of 1TB - that is not a lot of videos!

Instead, store videos on a HDD, and store the path to the video in the DB.

Even with later version of SQL server (which can hold much bigger databases) I would strongly recommend that this is a poor idea as insert and select operations will use serious amounts of bandwidth!
 
Share this answer
 

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