<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Poor Disk IO - Techyaz.com</title>
	<atom:link href="https://techyaz.com/tag/poor-disk-io/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Tips, Tutorials and How-to Topics</description>
	<lastBuildDate>Fri, 01 Jun 2018 12:30:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8</generator>

<image>
	<url>https://techyaz.com/wp-content/uploads/2017/11/cropped-Site-icon-150x150.png</url>
	<title>Poor Disk IO - Techyaz.com</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Identify Disk Bottleneck in SQL Server using Perfmon Disk Counters</title>
		<link>https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/</link>
					<comments>https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/#comments</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Mon, 27 Nov 2017 10:24:45 +0000</pubDate>
				<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Disk Bottleneck]]></category>
		<category><![CDATA[Disk IO]]></category>
		<category><![CDATA[IO]]></category>
		<category><![CDATA[Perfmon Counters]]></category>
		<category><![CDATA[Perfmon Disk Counters]]></category>
		<category><![CDATA[performance tuning]]></category>
		<category><![CDATA[Poor Disk IO]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=1261</guid>

					<description><![CDATA[<p>Disk I/O problems are some of the most difficult problems to diagnose and to debug. Here I am going to discuss about perfmon disk counters that will help us in diagnosing the disk related issues. I will segregate the values&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/">Identify Disk Bottleneck in SQL Server using Perfmon Disk Counters</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Disk I/O problems are some of the most difficult problems to diagnose and to debug. Here I am going to discuss about perfmon disk counters that will help us in diagnosing the disk related issues. I will segregate the values for all disk counters into three categories, <strong>Excellent, Good </strong>and<strong> Poor</strong>. Get your values for these disk counters and compare with these three categories to know how your disk is performing whether your disk is performing excellent, good or it’s required your intervention to improve its performance.</p>
<ol>
<li><strong>Excellent –</strong> You Disk Subsystem is responding perfectly for respective counter.</li>
<li><strong>Good –</strong> You Disk Subsystem is responding fairly for respective counter and you can consider it good considering your workload and other resource utilization.</li>
<li><strong>Poor –</strong> You Disk Subsystem is not responding well for respective counter and it requires your intervention to drill down more to understand the reason behind slowness.</li>
</ol>
<p>If you want to read about CPU and Memory related performance counters then i would suggest you to go through with below attached articles.</p>
<ul>
<li><strong><a href="https://techyaz.com/sql-server/troubleshooting/top-perfmon-counters-to-identify-sql-server-cpu-bottleneck/" target="_blank" rel="noopener">Top Perfmon Counters to Identify SQL Server CPU Bottleneck</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/troubleshooting/top-10-performance-counters-to-identify-sql-server-memory-pressure/" target="_blank" rel="noopener">Top 10 Perfmon Counters to Identify SQL Server Memory Pressure</a></strong></li>
</ul>
<p>Below are the list of important perfmon disk counters that we will be discussing in this article.</p>
<ul>
<li>Average Disk Sec/Read</li>
<li>Average Disk Sec/Write</li>
<li>Average Disk Sec/Transfer</li>
<li>Average Disk Queue Length</li>
<li>Current Disk Queue Length</li>
<li>Disk Read/Sec and Disk Write/Sec</li>
<li>%Disk Time</li>
<li>%Idle Time</li>
</ul>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-1266" src="http://techyaz.com/wp-content/uploads/2017/11/Perfmon-Disk-IO-Counters.png" alt="Perfmon Disk IO Counters" width="560" height="315" srcset="https://techyaz.com/wp-content/uploads/2017/11/Perfmon-Disk-IO-Counters.png 560w, https://techyaz.com/wp-content/uploads/2017/11/Perfmon-Disk-IO-Counters-300x169.png 300w" sizes="(max-width: 560px) 100vw, 560px" /></p>
<h5><span style="color: #333399;"><strong>Average Disk Sec/Read</strong></span></h5>
<p><strong>Average Disk Sec/Read</strong> is important perfmon disk counter that shows the average time in seconds needed to read data from disk and better explain the disk latency. We can find these counters at the logical and physical disk object level. The value for this counter is generally the number of seconds it takes to do each read. The shorter the time needed to read or write data, the faster the system. If you constantly get this counter value more than 20ms then it means your disk is not performing well.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 6 milliseconds (0.006 sec)</li>
<li><strong>Good</strong>, if the value of this counter is up to 15 milliseconds (0.015 sec)</li>
<li><strong>Poor</strong>, if the value is constantly more than 15 milliseconds (0.015 sec)</li>
</ul>
<h5><span style="color: #333399;"><strong>Average Disk Sec/Write</strong></span></h5>
<p><strong>Average Disk Sec/Write </strong>is also an important counter that shows the average time in seconds needed to write data to disk. that can better explain the disk latency. This counter can be tracked at the logical and physical disk level. The value for this counter is generally the number of seconds it takes to do each read. The shorter the time needed to read or write data, the faster the system. If you constantly get this counter value more than 20ms then it means your disk is not performing well.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 6 milliseconds</li>
<li><strong>Good</strong>, if the value of this counter is up to 15 milliseconds</li>
<li><strong>Poor</strong>, if the value is constantly more than 15 milliseconds.</li>
</ul>
<h5><span style="color: #333399;"><strong>Average Disk Sec/Transfer</strong></span></h5>
<p><strong>Average Disk Sec/Transfer</strong> is a time that measures average latency for read or write operations. If the Average Disk Sec/Transfer value increases, this indicates that the I/O subsystem is not optimally keeping up with the I/O demand. This counter is available under Logical Disk and Physical Disk object. If you are keeping a watch on this counter make sure to have a look at above perfmon disk counters <strong>Average Disk Sec/ Read</strong> and <strong>Average Disk Sec/Write</strong> as well because Average Disk Sec/Transfer is the average of both read and write counters so you need to find out high value is due to read operation or write operation. Below are the values that will tell you whether your disk is performing excellent, good or it is performing slow and requires your intervention to improve its performance.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 6 milliseconds</li>
<li><strong>Good</strong>, if the value of this counter is up to 15 milliseconds</li>
<li><strong>Poor</strong>, if the value is constantly more than 15 milliseconds.</li>
</ul>
<h5><span style="color: #333399;"><strong>Average Disk Queue Length</strong></span></h5>
<p><strong>Average Disk Queue Length</strong> counter shows you the average number of read and write requests that were queued on the selected physical disk. If this value is exceeding its threshold frequently then we should also look at other perfmon disk counters <strong>Average Disk Read Queue Length</strong> and <strong>Average Disk Write Queue Length</strong>. This way you can diagnose whether Average Disk Queue Length is high due to high read or high write operation. The recommended value for this counter is less than 2 per individual disk so if you have multiple disks then your recommended value for Average disk queue length would be twice the no of disks.</p>
<p><strong>Be careful</strong> when using thresholds of 2 with SQL Server and SANs.  This value can be much higher than 2 if you have multiple disks.  Let’s say you have 6 drives and Average disk queue length counter is showing around 12, then you should consider your Average disk queue length value 9/6 = 1.5 not 9.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 1.5 per drive.</li>
<li><strong>Good</strong>, if the value of this counter is up to 2 per drive.</li>
<li><strong>Poor</strong>, if the value is constantly more than 2 per drive,</li>
</ul>
<h5><span style="color: #333399;"><strong>Current Disk Queue Length</strong></span></h5>
<p><strong>Current Disk Queue Length</strong> is the number of disk requests that are currently waiting as well as requests currently being serviced. The difference between average disk queue length and current queue length is CDQL tells current load whereas ADQL tells load during a given time frame. The Current Disk Queue Length metric in Windows Performance Monitor is available for both physical and logical disk. The Current Disk Queue Length value should be less than 2 per disk.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 1.5 per drive.</li>
<li><strong>Good</strong>, if the value of this counter is up to 2 per drive.</li>
<li><strong>Poor</strong>, if the value is constantly more than 2 per drive.</li>
</ul>
<h5><span style="color: #333399;"><strong>Disk Read/Sec and Disk Write/Sec</strong></span></h5>
<p><strong>Disk Reads/Sec</strong> and <strong>Disk Writes/Sec</strong> show you the number of read and write operations happening per second on the disk. If you want to set the benchmark for disk capacity then you can determine it by gradually increasing the load on the system.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 75% of total disk capacity.</li>
<li><strong>Good</strong>, if the value of this counter is up to 85% of total disk capacity.</li>
<li><strong>Poor</strong>, if the value is constantly more than 85% of total disk capacity.</li>
</ul>
<h5><span style="color: #333399;"><strong>%Disk Time</strong></span></h5>
<p><strong>%Disk Time</strong> counter tells how busy the disk is in performing read and write operations. You can see its values normal even your disk has serious disk performance issue. You should compare its value with current/average disk queue length before reaching on any conclusion about disk issue.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is less than 75% of total disk capacity.</li>
<li><strong>Good</strong>, if the value of this counter is up to 85% of total disk capacity.</li>
<li><strong>Poor</strong>, if the value is constantly more than 85% of total disk capacity.</li>
</ul>
<h5><span style="color: #333399;"><strong>%Idle Time</strong></span></h5>
<p><strong>%Idle Time</strong> measures the percentage of time the disk was idle during the sample interval. The disk is idle when it’s not processing read and write requests. If you are constantly getting its value less than 40% then you can either move some applications from your machine to another machine if you are running other applications as well apart from SQL Server or You can change the current disk system with a faster disk system.</p>
<p>Your disk performance is:</p>
<ul>
<li><strong>Excellent, </strong>if the value of this counter is greater than 60% of total disk capacity.</li>
<li><strong>Good</strong>, if the value of this counter is greater than 50% of total disk capacity.</li>
<li><strong>Poor</strong>, if the value is constantly less than 40% of total disk capacity.</li>
</ul>
<p><span style="color: #800000;"><strong><em>Related Articles:</em></strong></span></p>
<ul>
<li><strong><a href="https://techyaz.com/sql-server/performing-online-index-rebuild-operation/" target="_blank" rel="noopener">Disk and Performance Impact of running Online Index Rebuild Operation</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/troubleshooting/sql-server-encountered-32-occurrences-requests-taking-longer-15-seconds-complete/" target="_blank" rel="noopener">How to fix IO error: SQL Server has encountered N occurrence(s) of I/O requests taking longer than 15 seconds to complete.</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/improve-sql-server-bulk-data-import-performance/" target="_blank" rel="noopener">Improving Bulk Data Load Performance in SQL Server</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/async_io_completion-wait-type/" target="_blank" rel="noopener">Understanding ASYNC_IO_COMPLETION Wait Type</a></strong></li>
</ul>
<p>I hope you like this article. Please follow our <a href="https://www.facebook.com/Techyaz/" target="_blank" rel="noopener">Facebook</a> page and <a href="https://twitter.com/Tech_yaz">Twitter </a>handle to get latest updates.</p>
<p>The post <a href="https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/">Identify Disk Bottleneck in SQL Server using Perfmon Disk Counters</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Fix Event ID 833: SQL Server has encountered 32 occurrence(s) of I/O requests taking longer than 15 seconds to complete.</title>
		<link>https://techyaz.com/sql-server/performance-tuning/sql-server-encountered-32-occurrences-requests-taking-longer-15-seconds-complete/</link>
					<comments>https://techyaz.com/sql-server/performance-tuning/sql-server-encountered-32-occurrences-requests-taking-longer-15-seconds-complete/#respond</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Wed, 22 Nov 2017 13:44:54 +0000</pubDate>
				<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wait Types]]></category>
		<category><![CDATA[Disk IO]]></category>
		<category><![CDATA[IO]]></category>
		<category><![CDATA[performance tuning]]></category>
		<category><![CDATA[Poor Disk IO]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=1183</guid>

					<description><![CDATA[<p>Last week, we found some slowness in one of our database server. When we analyzed the database server, we found poor disk performance where I/O requests taking longer than 15 seconds to complete. Below messages were logged multiple times in error&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/sql-server/performance-tuning/sql-server-encountered-32-occurrences-requests-taking-longer-15-seconds-complete/">Fix Event ID 833: SQL Server has encountered 32 occurrence(s) of I/O requests taking longer than 15 seconds to complete.</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Last week, we found some slowness in one of our database server. When we analyzed the database server, we found <a href="https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/" target="_blank" rel="noopener">poor disk performance</a> where I/O requests taking longer than 15 seconds to complete. Below messages were logged multiple times in error log file under event id 833. Here i will describe about fixing Microsoft SQL Server Error 833.</p>
<p><span style="color: #ff0000;">SQL Server has encountered 32 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [E:\MSSQL\Data\database_file.mdf] in database [Database_Name] (%d). The OS file handle is 0x000000F543. The offset of the latest long I/O is: 0x000000004h583. </span></p>
<p>This message indicates that SQL Server has issued a read or write request from disk, and the I/O requests taking longer than 15 seconds to return. Microsoft SQL Server reports Event Id 833 to the event log, and above text in the ERRORLOG file along with other symptoms like high wait times for PAGEIOLATCH waits or other disk IO related wait types in SQL Server.</p>
<p><img decoding="async" class="wp-image-1187 aligncenter" src="https://techyaz.com/wp-content/uploads/2017/11/event-id-833-e1527855680849-1024x420.jpg" alt="event id 833" width="664" height="272" srcset="https://techyaz.com/wp-content/uploads/2017/11/event-id-833-e1527855680849-1024x420.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/11/event-id-833-e1527855680849-300x123.jpg 300w, https://techyaz.com/wp-content/uploads/2017/11/event-id-833-e1527855680849-768x315.jpg 768w, https://techyaz.com/wp-content/uploads/2017/11/event-id-833-e1527855680849.jpg 1147w" sizes="(max-width: 664px) 100vw, 664px" /></p>
<h5><span style="color: #333399;">Why we get this issue/warning?</span></h5>
<p>SQL Server database is designed to perform intensive disk I/O operations. An I/O operation may be either a read or a write operation and the standard disk speed to perform these operations is around 10 milliseconds or less. If any of the read or write operation takes more time to perform their activity and generally disk speed reaches or exceeds 15 seconds of time, then database engine reports event id 833 along with above log information in error log file.</p>
<p>If you receive such messages, it does not mean problems with SQL Server. They are reported to let DBAs and system administrator know about poor storage performance and help them to investigate why the I/O request took so long. Long I/Os often indicate a SQL Server workload that is too intense for the disk subsystem. Disk Subsystems perform poorly/slowly because of either stuck or stalled IO operations. Before going ahead let’s first understand about stuck and stalled IO operation.</p>
<h6><span style="color: #333399;"><strong>Stuck I/O</strong></span></h6>
<p>Stuck I/O is defined as an I/O request that does not finish.  To resolve a stuck I/O condition, you must usually restart the computer or perform a similar action. A stuck I/O condition typically indicates one of the following:</p>
<ul>
<li>Faulty hardware</li>
<li>A bug in an I/O path component</li>
</ul>
<h6><span style="color: #333399;"><strong>Stalled I/O</strong></span></h6>
<p>Stalled I/O is defined as an I/O request that does finish or that takes excessive time to finish. Stalled I/O behavior typically occurs because of one of the following reasons:</p>
<ul>
<li>The hardware configuration</li>
<li>The firmware settings</li>
</ul>
<p>Below is the list of items that can cause stuck or stalled I/O operations on disk subsystem that can adversely affect SQL Server performance.</p>
<ul>
<li>Faulty hardware</li>
<li>Incorrectly configured hardware</li>
<li>Firmware settings</li>
<li>Filter drivers</li>
<li>Compression</li>
<li>Bugs</li>
<li>All transactions are in one drive like (backup, live database updates)</li>
<li>Blocking</li>
<li>Latch contentions</li>
<li>Missing Indexes in databases</li>
</ul>
<h5><span style="color: #333399;">Resolution</span></h5>
<p>Disk I/O problems are one of the most difficult problems to diagnose and to find the root cause. There might be multiple reasons due to which your disk subsystems perform slow. First step towards fixing such issue is to examining the event logs for any hardware related error messages and then proceed towards fix accordingly. Follow below steps to reduce the IO overheads on your database server if I/O requests taking longer than 15 seconds or perfoming slow.</p>
<ol start="1">
<li>Check &amp; update all missing device drivers and firmware with the latest updates.</li>
</ol>
<ol start="2">
<li>Analyze memory pressure and CPU usages trends as well because if you will run with CPU or memory pressure, there might be possibility slow disk performance.</li>
</ol>
<ol start="3">
<li>Monitor <a href="https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/" target="_blank" rel="noopener">disk I/O performance counters either using Performance Monitor</a> or using DMVs to examine your disk subsystem workload. Read attached article to get the optimum values for all given counters. It’s highly recommended to monitor these counters for a while, and then compare it to your disk baselines value that you had captured during stress testing or load testing exercise.</li>
</ol>
<ul>
<li><em>Average Disk Sec/Transfer</em></li>
<li><em>Average Disk Sec/Read</em></li>
<li><em>Average Disk Sec/Write</em></li>
<li><em>Average Disk Queue Length</em></li>
<li><em>Current Disk Queue Length</em></li>
<li><em>Disk Read/Sec</em></li>
<li><em>Disk Write/Sec</em></li>
<li><em>%Disk Time</em></li>
</ul>
<ol start="4">
<li>Microsoft suggests being careful when you use the performance counters because SQL Server takes full advantage of asynchronous I/O capabilities that push the disk queue lengths heavily. Therefore, longer disk queue lengths alone do not indicate a problem. So, compare every counter with their baseline and then analyze the trend.</li>
</ol>
<ol start="5">
<li>Monitor <a href="https://techyaz.com/sql-server/what-is-sql-server-wait-type-or-how-to-get-wait-type-info-in-sql-server/" target="_blank" rel="noopener">SQL Server Wait Types</a>, If the disk is slowing all the times then you will get wait types PAGEIOLATCH, WRITELOG or LOGBUFFER with high wait time.</li>
</ol>
<ol start="6">
<li>Exclude SQL Server Data and Log files from antivirus software scans. If your <a href="https://techyaz.com/sql-server/understanding-sql-server-data-files-pages-extents/" target="_blank" rel="noopener">database files</a> are configured to be scanned by antivirus software then this will have slowed your disk performance.</li>
</ol>
<ol start="7">
<li>If you are getting this issue on a specific time then I would suggest checking the conflict between your SQL Server Agent Jobs? There might be some data load/Disk IO intensive query or database maintenance activities will be running parallelly at the same time. Change the Agent jobs schedule time carefully so that they should not conflict to each other.</li>
</ol>
<ol start="8">
<li>Don’t place database files and backups on single drive. Always place data file, <a href="https://techyaz.com/sql-server/understanding-transaction-log-architecture/" target="_blank" rel="noopener">log files</a> and tempdb files on separate drives to reduce disk IO overhead. Also, it is highly recommended to run backups on separate drive because if you run backups on data drives then this can reduce disk performance.</li>
</ol>
<ol start="9">
<li>Check your database files property for which you are getting this error. The size of database files should not be limited to fixed size with auto growth disabled. Enabling the auto growth of all the data files with appropriate value can fix this issue if you have put limits of database files growth. Read the attached article to <a href="https://techyaz.com/sql-server/understanding-database-autogrowth-sql-server/" target="_blank" rel="noopener">understand the best value for database file autogrowth</a>.</li>
</ol>
<ol start="10">
<li>Disk I/O can perform poorly if there is no proper indexing on your tables. You can use Index Turning Wizard to resolve I/O pressure on the system. You can find missing indexes from most used or accessed tables and create appropriate indexes to reduce query time and resources overhead.</li>
</ol>
<h5><span style="color: #333399;">Disable this Error to Log using Trace flag 830</span></h5>
<p>Microsoft has given us an option to disable stalled or stuck I/O detection by using trace flag 830, although we do not recommend that you do this.</p>
<p>To disable detection when SQL Server starts, use the <strong>-T830</strong> startup parameter to disable detection every time that SQL Server is started. To disable detection for an instance of SQL Server that is currently running, use the following statement:</p>
<pre><strong><span style="color: #0000ff;">dbcc traceoff(830, -1)
</span></strong></pre>
<p>This setting is effective only for the life of the SQL Server process.</p>
<p><em><span style="color: #800000;"><strong>Related Articles:</strong></span></em></p>
<ul>
<li><strong><a href="https://techyaz.com/sql-server/identify-disk-bottleneck-using-perfmon-counters/" target="_blank" rel="noopener">Identify Disk Bottleneck in SQL Server using Perfmon Disk Counters</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/improve-sql-server-bulk-data-import-performance/" target="_blank" rel="noopener">How to Improve Bulk Data Load Performance?</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/async_io_completion-wait-type/" target="_blank" rel="noopener">What is ASYNC_IO_COMPLETION wait type?</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/backupbuffer-wait-type/" target="_blank" rel="noopener">Understanding BACKUPBUFFER wait type</a></strong></li>
</ul>
<p>I hope you like this article. Please follow our <a href="https://www.facebook.com/Techyaz/">Facebook</a> and <a href="https://twitter.com/Tech_yaz">Twitter</a> handle to get latest updates.</p>
<p>The post <a href="https://techyaz.com/sql-server/performance-tuning/sql-server-encountered-32-occurrences-requests-taking-longer-15-seconds-complete/">Fix Event ID 833: SQL Server has encountered 32 occurrence(s) of I/O requests taking longer than 15 seconds to complete.</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/sql-server/performance-tuning/sql-server-encountered-32-occurrences-requests-taking-longer-15-seconds-complete/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
