Hi,
I understand how to do this with a data range or int , but how can I logically split a table by surname? I only want about 10 max partitions.
by date
create partition function pf_orderdate (datetime)
as RANGE RIGHT
for values
('01 jan 2004','01 jan 2005')
go
How to do it for a-d,e-g etc?
many thanks