I want to store videos, images and long text in SQL Server 2005. Which datatype is the best suit for videos, images and long text?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Store data like that in the filesystem, and store a path in the database. Much easier to scale , much easier to manage and backup, and much faster.
If you must store it in the DB,
VARBINARY(MAX)will work (but, seriously, do the filesystem thing)