Collections:
What Is a SQL Server Partition
What Is a SQL Server Partition?
✍: FYIcenter.com
A SQL Server Partition represents a logical data storage space area that
is used to store data for a table or other data objects.
By default all records in a table are stored in a single Partition.
You may configure a table as Partitioned with use multiple partitions, This may help to improve performance for large tables.
A Partition is allocated in a single logical Filegroup.
A Partition may be stored in multiple physical Files, if the Filegroup is defined with multiple physical Files.
SQL Server Partition information is stored in a system table called sys.partitions. Each record in this table represents a single SQL Server Data Partition.
2019-07-09, 1901🔥, 0💬
Popular Posts:
How to find out my browser request headers? To help you to see your browser request headers, FYIcent...
How to validate Mod 10 (Luhn Algorithm) checksum? In order to help your programming or testing tasks...
How to perform UUDecode (Unix-to-Unix Decode)? UUEncode is Unix-to-Unix encoding used on Unix system...
How to generate date and time test values? Timestamp values are frequently needed in testing almost ...
How to valid IP addresses? In order to help your programming or testing tasks, FYIcenter.com has des...