I'm confused with the requirement for a ROWGUID column on a table with FILESTREAM. How is this column going to be used?
Would it be okay if I used a different primary key (clustered) on the same table while letting that ROWGUID column "just be there" without a clustered index?
Like this:
CREATE TABLE Sample
{
-- This is going to be clustered
[Id] int NOT NULL,
-- What shall I do with it index-wise?
[RowGuid] uniqueidentifier ROWGUIDCOL NOT NULL UNIQUE
}