Most examples dealing with table partitions, create the table on the partition scheme.
For example:
create table SomeTable
(
Id int not null ,
DueDate DateTime not null
) on MyPartitionScheme(DueDate)
Where MyPartitionScheme is a predefined partition scheme.
If I have a table that already exists, possibly with data with it. Can I "alter" it to use the partition scheme?