Question

In a previous question I asked, the suggested answer was for me to partition my field onto another Filegroup, keeping the field in the same table.

I'm not sure how to do this.

I've tried to google for things like partition table, partition view, etc. Could anyone provide me with some links or some sample sql code?

DB Server is Sql 2008.

Table Schema

FooId  INT PK IDENTITY
Name   VARCHAR(100) NOT NULL
Boo    VARCHAR(100) NOT NULL
BlahId INT NOT NULL
Photo  VARBINARY(MAX)     <-- This field wants to go onto another filegroup.
                             Can be null.
Was it helpful?

Solution

You need to use the TEXTIMAGE ON clause in CREATE TABLE.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top