<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tags 'SQL Server 2012', 'SQL Server &amp;quot;Denali&amp;quot;', 'dynamic management objects', and 'metadata'</title><link>http://sqlblog.com/search/SearchResults.aspx?o=DateDescending&amp;tag=SQL+Server+2012,SQL+Server+%26quot%3BDenali%26quot%3B,dynamic+management+objects,metadata&amp;orTags=0</link><description>Search results matching tags 'SQL Server 2012', 'SQL Server &amp;quot;Denali&amp;quot;', 'dynamic management objects', and 'metadata'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>SQL Server 2012 : Changes to system objects in RC0</title><link>http://sqlblog.com/blogs/aaron_bertrand/archive/2011/11/18/sql-server-2012-changes-to-system-objects-in-rc0.aspx</link><pubDate>Fri, 18 Nov 2011 22:07:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:39873</guid><dc:creator>AaronBertrand</dc:creator><description>&lt;p&gt;As with every new major milestone, one of the first things I do is check out what has changed under the covers. Since RC0 was released yesterday, I've been poking around at some of the DMV and other system changes. Here is what I have noticed:&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;font size="4"&gt;New objects in RC0 that weren't in CTP3&lt;/font&gt;&lt;br&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/11/rc0_a.png" border="1" height="460" width="564"&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Quick summary: &lt;br&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;We see a bunch of new aggregates for use with geography and geometry. I've stayed away from that area of programming so I'm not going to dig into them.&lt;/li&gt;&lt;li&gt;There is a new extended procedure called sp_showmemo_xml. The name could send me all over the place guessing whether it has something to do with Access, straight XML handling, or something else. This one doesn't seem to be documented in Books Online so, for now, I'm going to leave it alone.&lt;br&gt;&lt;/li&gt;&lt;li&gt;The undocumented stored procedure sp_MSgetversion has returned. I &lt;a href="http://sqlblog.com/blogs/aaron_bertrand/archive/2011/08/07/sql-server-v-next-denali-changes-to-system-objects-in-ctp3.aspx" title="http://sqlblog.com/blogs/aaron_bertrand/archive/2011/08/07/sql-server-v-next-denali-changes-to-system-objects-in-ctp3.aspx" target="_blank"&gt;observed previously&lt;/a&gt; that this procedure had been dropped, and brushed it aside - being undocumented and unsupported, it shouldn't be all that prevalent. Who knew that &lt;a href="http://connect.microsoft.com/SQLServer/feedback/details/695792/merge-replication-fails-on-missing-sproc-sp-msgetversion" title="http://connect.microsoft.com/SQLServer/feedback/details/695792/merge-replication-fails-on-missing-sproc-sp-msgetversion" target="_blank"&gt;Microsoft's own replication code relied on it&lt;/a&gt;? &lt;br&gt;&lt;/li&gt;&lt;li&gt;There are some new AlwaysOn DMVs and a validation stored procedure.&lt;/li&gt;&lt;li&gt;There is a new DMV and catalog view around Resource Governor, reflecting one of the &lt;a href="http://sqlblog.com/blogs/aaron_bertrand/archive/2011/10/10/sql-server-v-next-denali-changes-to-resource-governor.aspx" title="http://sqlblog.com/blogs/aaron_bertrand/archive/2011/10/10/sql-server-v-next-denali-changes-to-resource-governor.aspx" target="_blank"&gt;changes I outlined last month&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;By far the most interesting to me are the extended stored procedures around parallel nested transactions. Thus far these are undocumented and I would not be shocked if they remain so for the time being. I would hazard a guess as to what these are for but I don't want to sound like a fortune teller so, again, I'll leave them alone - for now.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br&gt;&lt;font size="4"&gt;New columns in existing DMVs&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Some relatively self-explanatory new columns for the AlwaysOn and Resource Governor DMVs:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/11/rc0_b.png" border="1" height="293" width="529"&gt;&amp;nbsp;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br&gt;&lt;font size="4"&gt;Columns that have changed definition&lt;/font&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Several DMV columns have been expanded in size, except in the case of one, which was made smaller. These are all NVARCHAR columns:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&amp;nbsp;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/11/rc0_c.png" border="1" height="335" width="769"&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br&gt;&lt;font size="4"&gt;Modules that have been modified&lt;/font&gt;&lt;/p&gt;&lt;p&gt;It's impossible to tell which modules have been modified since the previous CTP, since all but a few system and internal objects get a new create_date when a new build is produced. But at least for objects represented in sys.sql_modules, we can obtain a list of objects where the size of the definition has changed, meaning there may be some meaningful changes we want to investigate further. I definitely spot a few that I am going to check out more thoroughly: &lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;img src="http://bertrandaaron.files.wordpress.com/2011/11/rc0_d.png" border="1" height="754" width="715"&gt;&lt;br&gt;&lt;br&gt;Hope this information is useful. Let me know if you spot any under-the-cover changes I haven't noticed.&amp;nbsp; &lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>