filegroups and tables.

  • How can I see which tables belong to a filegroup ?

    (A selection which gives me all tables belonging to a single filegroup).

    Thanks for your time and attention,

    Ben brugman

  • SELECT OBJECT_NAME(object_id) AS TableName ,

    i.name AS IndexName ,

    ds.name AS FileGroupName

    FROM sys.data_spaces AS ds

    INNER JOIN sys.indexes AS i ON ds.data_space_id = i.data_space_id

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

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

You must be logged in to reply to this topic. Login to reply