PartitionFunction.SplitRangePartition Method (Object)

 

Applies To: SQL Server 2016 Preview

Splits an existing range partition into two parts based on a supplied boundary value.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public void SplitRangePartition(
    object boundaryValue
)
public:
void SplitRangePartition(
    Object^ boundaryValue
)
member SplitRangePartition : 
        boundaryValue:Object -> unit
Public Sub SplitRangePartition (
    boundaryValue As Object
)

Parameters

  • boundaryValue
    Type: System.Object

    An Object system object that specifies the boundary value that will be used to demarcate the two partitions resulting from the split.

Examples

Legacy Code Example

Using Filegroups and Files to Store Data

See Also

PartitionFunction Class
Microsoft.SqlServer.Management.Smo Namespace
CREATE PARTITION FUNCTION (Transact-SQL)

Return to top