Hi folks, 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.
cheers!