Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: VLFs in Log Files

    Good question!

    I learned something new. 🙂

    Thanks!

  • RE: Partition key should be part of Primary key

    Hi,

    try this:

    --- Create Partition Range Function

    CREATE PARTITION FUNCTION TestDB_PartitionRange (datetime)

    AS RANGE LEFT FOR

    VALUES ('2010-10-21');

    GO

    --- Attach Partition Scheme to FileGroups

    CREATE PARTITION SCHEME TestDB_PartitionScheme

    AS PARTITION TestDB_PartitionRange

    TO ([PRIMARY], [Secondary]);

    GO

    --Create table on partition scheme

    CREATE...

Viewing 2 posts - 1 through 2 (of 2 total)