IAM页面是在统一区分配的还是在混合区分配的? IAM页面的作用这里就不说了,网上的资料很多 文章中用到的工具:查看SQLSERVER内部数据页面的小插件Internals Viewer 先建立四张表,堆表、聚集索引表、非聚集索引表、聚集索引和非聚集索引表 1 USE master IAM
IAM页面是在统一区分配的还是在混合区分配的?
IAM页面的作用这里就不说了,网上的资料很多
文章中用到的工具:查看SQLSERVER内部数据页面的小插件Internals Viewer
先建立四张表,堆表、聚集索引表、非聚集索引表、聚集索引和非聚集索引表
1 USE master IAMDB IAMDBheaptable(c1 INT IDENTITY(1,1), c2 VARCHAR (5000))clusteredtable(c1 INT IDENTITY(1,1), c2 VARCHAR (5000))nonclusteredtable(c1 INT IDENTITY(1,1), c2 VARCHAR (5000))clusteredandnonclusteredtable(c1 INT IDENTITY(1,1), c2 VARCHAR (5000))cix_clusteredtable )ix_nonclusteredtable )cix_clusteredandnonclusteredtable )ix_clusteredandnonclusteredtable );;)hea
ptable , 5000));;)clusteredtable , 5000));;)nonclusteredtable , 5000));;)clusteredandnonclusteredtable , 5000))heaptable clusteredtable nonclusteredtable clusteredandnonclusteredtable ,