<?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>SQL Missing Index &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/sql-missing-index/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Sun, 31 May 2015 14:34:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>SQL Missing Index &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Find Out the Missing Indexes in SQL</title>
		<link>https://www.sibeeshpassion.com/find-out-the-missing-indexes-in-sql/</link>
					<comments>https://www.sibeeshpassion.com/find-out-the-missing-indexes-in-sql/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 14:34:35 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Missing Index]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3781</guid>

					<description><![CDATA[This code helps you to find out the missing Indexes in SQL [sql] SELECT d.[object_id], s = OBJECT_SCHEMA_NAME(d.[object_id]), o = OBJECT_NAME(d.[object_id]), d.equality_columns, d.inequality_columns, d.included_columns, s.unique_compiles, s.user_seeks, s.last_user_seek, s.user_scans, s.last_user_scan INTO #missingindexes FROM sys.dm_db_missing_index_details AS d INNER JOIN sys.dm_db_missing_index_groups AS g ON d.index_handle = g.index_handle INNER JOIN sys.dm_db_missing_index_group_stats AS s ON g.index_group_handle = s.group_handle WHERE d.database_id = DB_ID() AND OBJECTPROPERTY(d.[object_id], &#8216;IsMsShipped&#8217;) = 0; select * from #missingindexes [/sql]]]></description>
										<content:encoded><![CDATA[<p>This code helps you to find out the missing Indexes in SQL<br />
[sql]<br />
SELECT<br />
  d.[object_id],<br />
  s = OBJECT_SCHEMA_NAME(d.[object_id]),<br />
  o = OBJECT_NAME(d.[object_id]),<br />
  d.equality_columns,<br />
  d.inequality_columns,<br />
  d.included_columns,<br />
  s.unique_compiles,<br />
  s.user_seeks, s.last_user_seek,<br />
  s.user_scans, s.last_user_scan<br />
INTO #missingindexes<br />
FROM sys.dm_db_missing_index_details AS d<br />
INNER JOIN sys.dm_db_missing_index_groups AS g<br />
ON d.index_handle = g.index_handle<br />
INNER JOIN sys.dm_db_missing_index_group_stats AS s<br />
ON g.index_group_handle = s.group_handle<br />
WHERE d.database_id = DB_ID()<br />
AND OBJECTPROPERTY(d.[object_id], &#8216;IsMsShipped&#8217;) = 0;  </p>
<p>select * from #missingindexes<br />
[/sql]</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/find-out-the-missing-indexes-in-sql/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
