Home  >  Article  >  Database  >  IAM页面是在统一区分配的还是在混合区分配的?

IAM页面是在统一区分配的还是在混合区分配的?

WBOY
WBOYOriginal
2016-06-07 17:39:06936browse

IAM页面是在统一区分配的还是在混合区分配的? IAM页面的作用这里就不说了,网上的资料很多 文章中用到的工具:查看SQLSERVER内部数据页面的小插件Internals Viewer 先建立四张表,堆表、聚集索引表、非聚集索引表、聚集索引和非聚集索引表 1 USE master IAM

IAM页面是在统一区分配的还是在混合区分配的?

IAM页面的作用这里就不说了,网上的资料很多

文章中用到的工具:查看SQLSERVER内部数据页面的小插件Internals Viewer

先建立四张表,堆表、聚集索引表、非聚集索引表、聚集索引和非聚集索引表

1 USE master IAMDB IAMDB heaptable(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 ) ; ; ) heaptable , 5000)) ; ; ) clusteredtable , 5000)) ; ; ) nonclusteredtable , 5000)) ; ; ) clusteredandnonclusteredtable , 5000)) heaptable clusteredtable nonclusteredtable clusteredandnonclusteredtable ,

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn