June 2015
Intermediate to advanced
1800 pages
70h 6m
English
After you enable FILESTREAM for the SQL Server instance, you can store FILESTREAM data in a database by creating a FILESTREAM filegroup. You can do this when creating the database or by adding a new filegroup to an existing database. The filegroup designated for FILESTREAM storage must include the CONTAINS FILESTREAM clause and be defined. The code in Listing 21.23 creates the Customer database and then adds a FILESTREAM filegroup.
LISTING 21.23 Setting Up a Database for FILESTREAM Storage
Use Master;goCREATE DATABASE CustomerON ( NAME='Customer_Data', FILENAME='C:\MSSQL\Data\Customer_Data1.mdf', SIZE=50, MAXSIZE=100, FILEGROWTH=10)LOG ON ( NAME='Customer_Log', ...
Read now
Unlock full access