Hi,
I would like to create a new partitioned table using this tables couple field will be patitioned function's range.
Like (1000+ID)+(YYYYMM of datecolumn)
So How can I create partitioned table with
CREATE
PARTITION
FUNCTION
range1 (int)
AS
RANGE
RIGHT
FOR
VALUES
(
(1000+ID)+(YYYYMM of datecolumn))
thanks,
Gok