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 10: Integrating <strong>FILESTREAM</strong> with other <strong>SQL</strong> <strong>Server</strong> Featuressp_configure 'show advanced options', 1;GORECONFIGURE;GOsp_configure 'max text repl size', -1;GORECONFIGURE;GOListing 10-1:Using T-<strong>SQL</strong> to change the maximum replication data size.<strong>FILESTREAM</strong> replication and theUNIQUEIDENTIFIER columnIn Chapter 2, we discussed the fact that <strong>FILESTREAM</strong> columns can be added to atable only if it has a UNIQUEIDENTIFIER column that is marked as a ROWGUIDCOLwith a UNIQUE constraint. When replicating <strong>FILESTREAM</strong> columns with the<strong>FILESTREAM</strong> attribute, we must ensure that the UNIQUEIDENTIFIER column isalso selected for replication and that the UNIQUE constraint replicated along withthe UNIQUEIDENTIFIER column.If we remove the UNIQUEIDENTIFIER column from the publication, or decide not toreplicate the UNIQUE constraint, the <strong>FILESTREAM</strong> attribute will not be replicated to thesubscriber; it will be replicated as a VARBINARY(MAX) column, even if we set the Convert<strong>FILESTREAM</strong> to MAX data types to FALSE.When a replication requirement exists, it is especially important to consider how togenerate the values for the UNIQUEIDENTIFIER column <strong>of</strong> <strong>FILESTREAM</strong> tables. Anew GUID value can be generated using either NEWID() or NEWSEQUENTIALID().Using NEWSEQUENTIALID() is recommended over NEWID() because it provides betterreplication performance and less fragmentation <strong>of</strong> the data. It should be noted that usingNEWSEQUENTIALID() is only supported in a DEFAULT constraint and this may not beappropriate for a particular scenario.357

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

Saved successfully!

Ooh no, something went wrong!