Answer Posted / arunyadav007
The fundamental unit of data storage in SQL Server in the
page. The disk space allocated to a data file (.mdf
or, .ndf) in a database is logically divided into pages
numbered form ā0ā to ānā. Disk I/O operation are performed
at page level.
In SQL server, the page is 8 kb. This means SQL Server
database have 128 pages per MB. Each page begins with a 96
byte header. That is used to store system information about
the page.
Page types used in the data files of the SQL Server
database.
1.) Data
2.) Index
3.) Text image
4.) Global allocation map, shared global allocation map
5.) Page free space.
6.) Index allocation map
7.) Bulk changed map
8.) Differential changed map
** Maximum amount of data and overload that is contained in
single row on a page is 8060 bytes ()8Kb.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to get a list of table columns using the "sp_columns" stored procedure in ms sql server?
Can you use order by when defining a view?
Will sql server 2005 allow you to reduce the size of a column?
what are the types of indexes? : Sql server database administration
What are the differences between triggers and stored procedures?
What is use of attribute hierarchy optimized state? : sql server analysis services, ssas
What are date and time data types in ms sql server?
Explain in details security in SQL azure?
How can i Relate Tables in SSIS
What are the advantages of partitioning?
What are different types of join?
Explain acid?
As per your opinion what are the five top responsibilities of a dba? : sql server database administration
What command would you use to create an index?
Explain the collation?