0

Just a question regarding the Filestream in SQL Server 2008: does the size of the file itself contribute to the total size of the database, or because the Filestream stores in the file in the NTFS, and stores the relative path in the database (this is what I believe is what is happening with Filestream), only the string length of filepath matters?

I know that the max VARBINARY size doesn't matter only the size of the NTFS. I am asking this in regards to SQL Server Express with a 10gb size limit. Let's assume you are going to store a 500mb file does the 500mb file eat up 500 mb of the max size available to the Express version, or only the size of the file path being stored?

Thanks All

Sorry if the question is a bit round about :/

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Heinrich
  • 2,144
  • 3
  • 23
  • 39

1 Answers1

4

No it does not count towards the size http://blogs.msdn.com/b/brian_swan/archive/2010/06/03/sql-server-express-size-limit-filestream-excepted.aspx

mosesfetters
  • 1,688
  • 16
  • 25