Does SQL Server 2017, including older versions, support 8K disk sector sizes?Use Older Versions Of SQL Server...
Why is it that Bernie Sanders is always called a "socialist"?
How should I handle players who ignore the session zero agreement?
Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?
If I delete my router's history can my ISP still provide it to my parents?
How can I deliver in-universe written lore to players without it being dry exposition?
Publishing research using outdated methods
What is the wife of a henpecked husband called?
Replacement expressions
Intern applicant asking for compensation equivalent to that of permanent employee
In Linux what happens if 1000 files in a directory are moved to another location while another 300 files were added to the source directory?
How can animals be objects of ethics without being subjects as well?
Cookies - Should the toggles be on?
Why has the mole been redefined for 2019?
Writing a character who is going through a civilizing process without overdoing it?
Is a new Boolean field better than a null reference when a value can be meaningfully absent?
Does paint affect EMI of enclosure
Is boss over stepping boundary/micromanaging?
My cat mixes up the floors in my building. How can I help him?
Can you share a component pouch with another creature?
Why would space fleets be aligned?
Is the set of language decidable by some Turing machine computing in some given computable time bound decidable
Can an insurance company drop you after receiving a bill and refusing to pay?
How long is the D&D Starter Set campaign?
Citing paywalled articles accessed via illegal web sharing
Does SQL Server 2017, including older versions, support 8K disk sector sizes?
Use Older Versions Of SQL Server Databases With 2012?SQL Server 2012 Availability group disk configuration optionsSQL Server 2008R2 minimum RAID/Disk configsql server disk I/o questionReplicating to Older Versions of MS SQL ServerInstalling instances of older versions of SQL ServerAre older versions of MS SQL Server DEVELOPER edition now free?Does SQL Server support custom DOMAINs?Run SQL Server 2016 side-by-side with older versions?Disk Architecture on SQL Server
Disk (loosely worded to include not only rotational media but non-rotational media [SSD, NVMe, etc.]) drives are continuing to evolve in their underlying formats and hardware. Part of this was an "enhancement" from 512 byte physical sector sizes to 4k physical sector sizes, which changes the on disk layout (512n, 512e, 4kn).
This next evolution is in using 8k physical sector sizes, which some manufacturers are starting to produce and setup in production. Given this next step is the 8k sector size disk supported in Windows? Does SQL Server care about sector sizes?
sql-server hardware
add a comment |
Disk (loosely worded to include not only rotational media but non-rotational media [SSD, NVMe, etc.]) drives are continuing to evolve in their underlying formats and hardware. Part of this was an "enhancement" from 512 byte physical sector sizes to 4k physical sector sizes, which changes the on disk layout (512n, 512e, 4kn).
This next evolution is in using 8k physical sector sizes, which some manufacturers are starting to produce and setup in production. Given this next step is the 8k sector size disk supported in Windows? Does SQL Server care about sector sizes?
sql-server hardware
add a comment |
Disk (loosely worded to include not only rotational media but non-rotational media [SSD, NVMe, etc.]) drives are continuing to evolve in their underlying formats and hardware. Part of this was an "enhancement" from 512 byte physical sector sizes to 4k physical sector sizes, which changes the on disk layout (512n, 512e, 4kn).
This next evolution is in using 8k physical sector sizes, which some manufacturers are starting to produce and setup in production. Given this next step is the 8k sector size disk supported in Windows? Does SQL Server care about sector sizes?
sql-server hardware
Disk (loosely worded to include not only rotational media but non-rotational media [SSD, NVMe, etc.]) drives are continuing to evolve in their underlying formats and hardware. Part of this was an "enhancement" from 512 byte physical sector sizes to 4k physical sector sizes, which changes the on disk layout (512n, 512e, 4kn).
This next evolution is in using 8k physical sector sizes, which some manufacturers are starting to produce and setup in production. Given this next step is the 8k sector size disk supported in Windows? Does SQL Server care about sector sizes?
sql-server hardware
sql-server hardware
asked 2 hours ago
Sean GallardySean Gallardy
16.4k22651
16.4k22651
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Is the 8k sector size disk supported in Windows?
Currently, no, it is not supported by Windows and has been documented.
Does SQL Server care about sector sizes?
Yes, SQL Server does care about sector sizes. In fact, SQL Server checks the underlying physical disk information as it has data structures and algorithms that work with current disk sector sizes for various reasons (data integrity, optimizations, etc.).
If you attempt to use a physical sector size above 4k (4096) you'll receive an error:
Msg 5179, Level 16, State 1, Line 1 Cannot use file 'S:FolderTestDB.mdf ', because it is on a volume with sector size
8192. SQL Server supports a maximum sector size of 4096 bytes. Move the file to a volume with a compatible sector size.
In this case, you can see that the error message is specifically telling you that the maximum sector size is 4096 (4k). This means that volume can't be used for SQL Server, and as noted above it wouldn't be supported in Windows either.
Solution
If you're receiving this error/issue, unfortunately you'll need to use a supported disk sector size such as 512 bytes or 4k. Other formats are unsupported and can't be used. You'll need to contact your hardware vendor for the Disk subsystem used and ask if there are any other options.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f230973%2fdoes-sql-server-2017-including-older-versions-support-8k-disk-sector-sizes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is the 8k sector size disk supported in Windows?
Currently, no, it is not supported by Windows and has been documented.
Does SQL Server care about sector sizes?
Yes, SQL Server does care about sector sizes. In fact, SQL Server checks the underlying physical disk information as it has data structures and algorithms that work with current disk sector sizes for various reasons (data integrity, optimizations, etc.).
If you attempt to use a physical sector size above 4k (4096) you'll receive an error:
Msg 5179, Level 16, State 1, Line 1 Cannot use file 'S:FolderTestDB.mdf ', because it is on a volume with sector size
8192. SQL Server supports a maximum sector size of 4096 bytes. Move the file to a volume with a compatible sector size.
In this case, you can see that the error message is specifically telling you that the maximum sector size is 4096 (4k). This means that volume can't be used for SQL Server, and as noted above it wouldn't be supported in Windows either.
Solution
If you're receiving this error/issue, unfortunately you'll need to use a supported disk sector size such as 512 bytes or 4k. Other formats are unsupported and can't be used. You'll need to contact your hardware vendor for the Disk subsystem used and ask if there are any other options.
add a comment |
Is the 8k sector size disk supported in Windows?
Currently, no, it is not supported by Windows and has been documented.
Does SQL Server care about sector sizes?
Yes, SQL Server does care about sector sizes. In fact, SQL Server checks the underlying physical disk information as it has data structures and algorithms that work with current disk sector sizes for various reasons (data integrity, optimizations, etc.).
If you attempt to use a physical sector size above 4k (4096) you'll receive an error:
Msg 5179, Level 16, State 1, Line 1 Cannot use file 'S:FolderTestDB.mdf ', because it is on a volume with sector size
8192. SQL Server supports a maximum sector size of 4096 bytes. Move the file to a volume with a compatible sector size.
In this case, you can see that the error message is specifically telling you that the maximum sector size is 4096 (4k). This means that volume can't be used for SQL Server, and as noted above it wouldn't be supported in Windows either.
Solution
If you're receiving this error/issue, unfortunately you'll need to use a supported disk sector size such as 512 bytes or 4k. Other formats are unsupported and can't be used. You'll need to contact your hardware vendor for the Disk subsystem used and ask if there are any other options.
add a comment |
Is the 8k sector size disk supported in Windows?
Currently, no, it is not supported by Windows and has been documented.
Does SQL Server care about sector sizes?
Yes, SQL Server does care about sector sizes. In fact, SQL Server checks the underlying physical disk information as it has data structures and algorithms that work with current disk sector sizes for various reasons (data integrity, optimizations, etc.).
If you attempt to use a physical sector size above 4k (4096) you'll receive an error:
Msg 5179, Level 16, State 1, Line 1 Cannot use file 'S:FolderTestDB.mdf ', because it is on a volume with sector size
8192. SQL Server supports a maximum sector size of 4096 bytes. Move the file to a volume with a compatible sector size.
In this case, you can see that the error message is specifically telling you that the maximum sector size is 4096 (4k). This means that volume can't be used for SQL Server, and as noted above it wouldn't be supported in Windows either.
Solution
If you're receiving this error/issue, unfortunately you'll need to use a supported disk sector size such as 512 bytes or 4k. Other formats are unsupported and can't be used. You'll need to contact your hardware vendor for the Disk subsystem used and ask if there are any other options.
Is the 8k sector size disk supported in Windows?
Currently, no, it is not supported by Windows and has been documented.
Does SQL Server care about sector sizes?
Yes, SQL Server does care about sector sizes. In fact, SQL Server checks the underlying physical disk information as it has data structures and algorithms that work with current disk sector sizes for various reasons (data integrity, optimizations, etc.).
If you attempt to use a physical sector size above 4k (4096) you'll receive an error:
Msg 5179, Level 16, State 1, Line 1 Cannot use file 'S:FolderTestDB.mdf ', because it is on a volume with sector size
8192. SQL Server supports a maximum sector size of 4096 bytes. Move the file to a volume with a compatible sector size.
In this case, you can see that the error message is specifically telling you that the maximum sector size is 4096 (4k). This means that volume can't be used for SQL Server, and as noted above it wouldn't be supported in Windows either.
Solution
If you're receiving this error/issue, unfortunately you'll need to use a supported disk sector size such as 512 bytes or 4k. Other formats are unsupported and can't be used. You'll need to contact your hardware vendor for the Disk subsystem used and ask if there are any other options.
answered 2 hours ago
Sean GallardySean Gallardy
16.4k22651
16.4k22651
add a comment |
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f230973%2fdoes-sql-server-2017-including-older-versions-support-8k-disk-sector-sizes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown