> > Hi. I'm using SQL Server 2005. I'd like to know if anyone has any
> > reference on how to allow users to upload a file **onto a database**.
[quoted text clipped - 17 lines]
>
> - Show quoted text -
If you are asking whether file data should be stored in a database, that's
really up to you. Many people store the files on the filesystem and only have
a database entry that points to the file location. Regarding "bloat" that
should not be an issue as long as the table(s) are properly indexed.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
> > > Hi. I'm using SQL Server 2005. I'd like to know if anyone has any
> > > reference on how to allow users to upload a file **onto a database**.
[quoted text clipped - 29 lines]
>
> Cindy
Alexey Smirnov - 10 Mar 2008 09:33 GMT
On Mar 8, 8:51 pm, Peter Bromberg [C# MVP]
<pbromb...@yahoo.NoSpamMaam.com> wrote:
> If you are asking whether file data should be stored in a database, that's
> really up to you. Many people store the files on the filesystem and only have
[quoted text clipped - 41 lines]
>
> - Show quoted text -
I agree with Peter.
Sharepoint / WSS stores the files in SQL Server (can this be an answer
to the question about proper way? :-) I'm also working at the moment
on a similar application that keeps files saved in the database. I
decided to do this because of easy backup, synchronization and role-
based security.