17.07.2015 Views

The Art of SQL Server FILESTREAM - Red Gate Software

The Art of SQL Server FILESTREAM - Red Gate Software

The Art of SQL Server FILESTREAM - Red Gate Software

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Chapter 7: <strong>FILESTREAM</strong> Database AdministrationConnect to your instance using DAC and run the query in Listing 7-10, which will retrievethe list <strong>of</strong> garbage files in the current database. If you have followed the example, thequery will return details <strong>of</strong> two garbage files.SELECTphysical_name AS <strong>FILESTREAM</strong>Folder,rowset_guid AS TableFolder,column_guid AS ColumnFolder,<strong>FILESTREAM</strong>_value_name AS <strong>FILESTREAM</strong>FileFROM sys.filestream_tombstone_2073058421 ftINNER JOIN sys.database_files dfON df.file_id = ft.file_id/*<strong>FILESTREAM</strong>Folder TableFolder ColumnFolder <strong>FILESTREAM</strong>File----------------------- ------------- ------------- ---------------C:\Demos\FS\NorthPoleFS 448BFCA8-6... 91DFDC80-E... 00000018-000...C:\Demos\FS\NorthPoleFS 448BFCA8-6... 2A7202BA-4... 00000018-000...*/Listing 7-10:Retrieving the list <strong>of</strong> garbage files.<strong>FILESTREAM</strong> Data Corruption and DBCC ChecksOne <strong>of</strong> the most undesirable situations for a database administrator is databasecorruption. In most cases, regular database checks and maintenance activities will help adatabase administrator to ensure that the databases are healthy and free from corruption.A common cause <strong>of</strong> a corrupted <strong>FILESTREAM</strong> database is an "over-enthusiastic" administrativeuser who wants to play with the <strong>FILESTREAM</strong> data files directly. Remember thatall access to the <strong>FILESTREAM</strong> data should be made through <strong>SQL</strong> <strong>Server</strong>. Direct access tothe <strong>FILESTREAM</strong> data using the file system tools may corrupt your database.284

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!