Reputation: 7557
I am using AppHarbor for hosting my website and currently it offers only 20MB free space. I want to store PDF files using SQL Server's FileStream column. Would using FileStream increase the database size because FileStream basically stores on hard disk as I know.
Any help would be appreciated.
Upvotes: 1
Views: 632
Reputation: 1
No it does not increase the size of the database as the files are not stored in the Database. Please read the following "FILESTREAM Design and Implementation Considerations" --google is your best friend
Upvotes: 0
Reputation: 5316
Because the FILESTREAM
data becomes part of the database, in the sense that it has its own FILEGROUP
(s) and can (should be) be backed up through SQL backups - I would answer yes.
Upvotes: 1