<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>InternalsViewer Discussions Rss Feed</title><link>http://www.codeplex.com/InternalsViewer/Thread/List.aspx</link><description>InternalsViewer Discussions Rss Description</description><item><title>New Post: SQL Server 2012 support</title><link>http://internalsviewer.codeplex.com/discussions/432006</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Is sql 2012 going to be supported and when ?&lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;
&lt;/div&gt;</description><author>TheGodfather</author><pubDate>Tue, 05 Feb 2013 11:06:49 GMT</pubDate><guid isPermaLink="false">New Post: SQL Server 2012 support 20130205110649A</guid></item><item><title>New Post: Updated version for 2008 R2.</title><link>http://internalsviewer.codeplex.com/discussions/356480</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I loaded the revised version (SQL 2008R2 version) and within a short time recieved and unhandled exception.&amp;nbsp; I have SQL 2008R2 with SP2 on Windows 7 Pro (32 Bit).&lt;/p&gt;
&lt;p&gt;I was connected to a remote database on Windows 2008R2 with SQL 2008R2 SP2 EE.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>VaSquirrel</author><pubDate>Tue, 20 Nov 2012 16:06:23 GMT</pubDate><guid isPermaLink="false">New Post: Updated version for 2008 R2. 20121120040623P</guid></item><item><title>New Post: Updated version for 2008 R2.</title><link>http://internalsviewer.codeplex.com/discussions/356480</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I've created a fork of this project that has been updated for 2008 R2 over at:&lt;/p&gt;
&lt;p&gt;&lt;a title="http://intview2.codeplex.com" href="http://intview2.codeplex.com"&gt;http://intview2.codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>norganna</author><pubDate>Mon, 21 May 2012 00:39:28 GMT</pubDate><guid isPermaLink="false">New Post: Updated version for 2008 R2. 20120521123928A</guid></item><item><title>New Post: Is this Compatible with SSMS 2008R2?</title><link>http://internalsviewer.codeplex.com/discussions/274195</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;It's not compatible. They changed a few things. I followed some instructions here, and others I found on the net and spent about a day downloading things and SDKs and stuff to compile a version that is compatible with SSMS 2008R2.&lt;/p&gt;
&lt;p&gt;You could also probably do this too if you were desperate (like I was) but if you want to just use mine, I've uploaded it here:&amp;nbsp;http://dlftw.com/4p96k3t&lt;/p&gt;&lt;/div&gt;</description><author>norganna</author><pubDate>Sat, 19 May 2012 06:42:41 GMT</pubDate><guid isPermaLink="false">New Post: Is this Compatible with SSMS 2008R2? 20120519064241A</guid></item><item><title>New Post: Is this Compatible with SSMS 2008R2?</title><link>http://internalsviewer.codeplex.com/discussions/274195</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I tried installing and running with SSMS 2008R2 and it did not work. Sounds fascinating, though.&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Bert6623</author><pubDate>Wed, 08 Feb 2012 20:35:09 GMT</pubDate><guid isPermaLink="false">New Post: Is this Compatible with SSMS 2008R2? 20120208083509P</guid></item><item><title>New Post: Is this Compatible with SSMS 2008R2?</title><link>http://internalsviewer.codeplex.com/discussions/274195</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Is this Compatible with SSMS 2008R2?&lt;/p&gt;
&lt;/div&gt;</description><author>sbandarla</author><pubDate>Thu, 29 Sep 2011 04:59:15 GMT</pubDate><guid isPermaLink="false">New Post: Is this Compatible with SSMS 2008R2? 20110929045915A</guid></item><item><title>New Post: 'Class not registered' with addin</title><link>http://internalsviewer.codeplex.com/discussions/213006</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I get same error on Windows 7 SQL 2008 R2 too.&lt;/p&gt;
&lt;p&gt;Please help.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;/div&gt;</description><author>sanme98</author><pubDate>Sat, 18 Jun 2011 09:11:57 GMT</pubDate><guid isPermaLink="false">New Post: 'Class not registered' with addin 20110618091157A</guid></item><item><title>New Post: Possible error in column index type</title><link>http://internalsviewer.codeplex.com/discussions/59994</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Enum used is the same for pages and indexes. Int values are wrong for indexes.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;    [Flags]
    &lt;span style="color: blue;"&gt;public&lt;/span&gt; &lt;span style="color: blue;"&gt;enum&lt;/span&gt; IndexTypes
    {
        Heap = 1,
        Clustered = 2,
        NonClustered = 4,
        Leaf = 8,
        Node = 16,
        TableClustered = 32,
        NonClusteredLeaf = NonClustered | Leaf
    }
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;I changed in source code the mapping in AllocationUnitLayer.cs&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: blue;"&gt;int&lt;/span&gt; index_type = Convert.ToInt32(row[&lt;span style="color: #a31515;"&gt;"index_type"&lt;/span&gt;]);
                        &lt;span style="color: blue;"&gt;if&lt;/span&gt; (index_type == 0)
                            layer.IndexType = IndexTypes.Heap;
                        &lt;span style="color: blue;"&gt;else&lt;/span&gt; &lt;span style="color: blue;"&gt;if&lt;/span&gt; (index_type == 1)
                            layer.IndexType = IndexTypes.Clustered;
                        &lt;span style="color: blue;"&gt;else&lt;/span&gt; &lt;span style="color: blue;"&gt;if&lt;/span&gt; (index_type == 2)
                            layer.IndexType = IndexTypes.NonClustered;
                        &lt;span style="color: blue;"&gt;else&lt;/span&gt;
                            &lt;span style="color: green;"&gt;//the previous code I've found here&lt;/span&gt;
                            layer.IndexType = (IndexTypes)index_type; 
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description><author>djeepy1</author><pubDate>Mon, 25 Apr 2011 08:36:56 GMT</pubDate><guid isPermaLink="false">New Post: Possible error in column index type 20110425083656A</guid></item><item><title>New Post: Windows 7 - SQL Server 2008 R2 - ERROR</title><link>http://internalsviewer.codeplex.com/discussions/228861</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;strong&gt;There are breaking changes in SQL Server 2008 R2.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Download source code and comment those lines :&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: green;"&gt;/*
 * Legacy Code (SQL 2005 et 2008)
 */&lt;/span&gt;
&lt;span style="color: green;"&gt;//IObjectExplorerEventProvider provider = ServiceCache.GetObjectExplorer().GetService(typeof(IObjectExplorerEventProvider)) as IObjectExplorerEventProvider;&lt;/span&gt;
&lt;span style="color: green;"&gt;//provider.NodesRefreshed += new NodesChangedEventHandler(Provider_NodesRefreshed);&lt;/span&gt;
&lt;span style="color: green;"&gt;//provider.NodesAdded += new NodesChangedEventHandler(Provider_NodesRefreshed);&lt;/span&gt;
&lt;span style="color: green;"&gt;//provider.BufferedNodesAdded += new NodesChangedEventHandler(Provider_NodesRefreshed);&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;ServiceCache no longer exists in R2 and some ways to subscribe to these events found on internet do not work everytime (not on my laptop for example).&lt;br /&gt;I do not know the real effects but addin works on my SQL Server 2008 R2 instance.&lt;/p&gt;
&lt;p&gt;Note : you might need to change some references (in x86 folder if you are in 64 bits) and SMOEnum doesn't longer exist too (SMOExtended and/or SQLEnum) before rebuild.&lt;/p&gt;&lt;/div&gt;</description><author>djeepy1</author><pubDate>Mon, 25 Apr 2011 07:11:29 GMT</pubDate><guid isPermaLink="false">New Post: Windows 7 - SQL Server 2008 R2 - ERROR 20110425071129A</guid></item><item><title>New Post: Windows 7 - SQL Server 2008 R2 - ERROR</title><link>http://internalsviewer.codeplex.com/discussions/228861</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I get the same too&lt;/p&gt;&lt;/div&gt;</description><author>djeepy1</author><pubDate>Sat, 23 Apr 2011 17:00:44 GMT</pubDate><guid isPermaLink="false">New Post: Windows 7 - SQL Server 2008 R2 - ERROR 20110423050044P</guid></item><item><title>New Post: Windows 7 - SQL Server 2008 R2 - ERROR</title><link>http://internalsviewer.codeplex.com/discussions/228861</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I get the same.&lt;/p&gt;&lt;/div&gt;</description><author>christianbolton</author><pubDate>Fri, 25 Feb 2011 16:45:29 GMT</pubDate><guid isPermaLink="false">New Post: Windows 7 - SQL Server 2008 R2 - ERROR 20110225044529P</guid></item><item><title>New Post: Difficulty loading finding DLLS</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=231239</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Difficulty loading finding DLLS&lt;/p&gt;
&lt;p&gt;Project : &amp;nbsp;InternalsViewer.SSMSAddIn&lt;/p&gt;
&lt;p&gt;Looking for following dlls not found&lt;/p&gt;
&lt;p&gt;1 ConnectionDlg&lt;/p&gt;
&lt;p&gt;2 Microsoft.SqlServer.SqlTools.VSIntegration&lt;/p&gt;
&lt;p&gt;3 Microsoft.SqlServer.SqlTools.VSIntegration&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Can you please help me, where i should look for these dlls ? ??&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>abhay777</author><pubDate>Sun, 17 Oct 2010 20:56:42 GMT</pubDate><guid isPermaLink="false">New Post: Difficulty loading finding DLLS 20101017085642P</guid></item><item><title>New Post: Windows 7 - SQL Server 2008 R2 - ERROR</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=228861</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am getting follwing error when trying to launch sql server management studio after successfull install of internals viewer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Error Message&lt;/strong&gt;: The system cannot find the file specified&lt;br&gt;&lt;strong&gt;Error #:&lt;/strong&gt; 80070002&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ali.&lt;/p&gt;&lt;/div&gt;</description><author>safderalimd</author><pubDate>Tue, 28 Sep 2010 14:10:37 GMT</pubDate><guid isPermaLink="false">New Post: Windows 7 - SQL Server 2008 R2 - ERROR 20100928021037P</guid></item><item><title>New Post: 'Class not registered' with addin</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=213006</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;I am trying to use the current version for SQL 2008 but multiple attempts to install (even the REG key hack was attempted) yield the following message when I launch SSMS:&lt;/p&gt;
&lt;p&gt;The Add-in 'InternalsViewer.SSMSAddIn.Connect' failed to load or caused an exception.&lt;br&gt;Would you like to remove this Add-in?&lt;br&gt;If you choose yes, you will need to reinstall the Add-in to use it again.&lt;/p&gt;
&lt;p&gt;Error Message: Class not registered&lt;/p&gt;
&lt;p&gt;Error number: 80040154&lt;/p&gt;
&lt;p&gt;I have double-checked the paths in the registry and they all seem OK. Any idea what class it is referring to?&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;/div&gt;</description><author>arvindsh</author><pubDate>Tue, 18 May 2010 11:15:16 GMT</pubDate><guid isPermaLink="false">New Post: 'Class not registered' with addin 20100518111516A</guid></item><item><title>New Post: Fails to run!</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=81719</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I having the same problem!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I Install the Internals Viewer for SQL Server 2005 in a machine with Windows Vista 23 Bits. The problem begin because i can see the icon in the SSMS.&lt;/p&gt;
&lt;p&gt;After that I Install the 'SQL Server 2005 - &lt;a&gt;InternalsViewer20081228-90.reg'&amp;nbsp; &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;and after this i try to do a connection with my SSMS and i get the error&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The Add-In 'InternalsViewer.SSMSAddIn.Connect' failed to load or caused an exception.&amp;nbsp; Would you like to remove this Add-In? Error Message: The system cannot find the specified file.&amp;nbsp; Error Number: 80070002&lt;/p&gt;
&lt;p&gt;Help?&lt;/p&gt;
&lt;p&gt;But First Congratulations for the product seems so good!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>LuanMoreno</author><pubDate>Fri, 19 Mar 2010 15:10:56 GMT</pubDate><guid isPermaLink="false">New Post: Fails to run! 20100319031056P</guid></item><item><title>New Post: Multiple Filegroups</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=155991</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi - I like the Internals Viewer but when I connect to a database with a large number of tables in multiple files (1200+ tables in 40 files), the allocation pages and File Details end up compressed. So each appears as a single line in SSMS and I can find any way to expand a filegroup so I can see all the details.&lt;/p&gt;
&lt;p&gt;Is there a way to expand a file or the tool just not ready for multiple filegroups?&lt;/p&gt;
&lt;p&gt;David Anderson&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>dlander525</author><pubDate>Wed, 24 Feb 2010 19:45:23 GMT</pubDate><guid isPermaLink="false">New Post: Multiple Filegroups 20100224074523P</guid></item><item><title>New Post: Fails to run!</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=81719</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm running MS Windows Server 2003 SP2 with SSMS 2008 [10.0.1600.22 ((SQL_PreRelease).080709-1414 )] and having just installed the product I get the following error upon running SSMS:&lt;/p&gt;
&lt;p&gt;The Add-In 'InternalsViewer.SSMSAddIn.Connect' failed to load or caused an exception.&amp;nbsp; Would you like to remove this Add-In? Error Message: The system cannot find the specified file.&amp;nbsp; Error Number: 80070002&lt;/p&gt;
&lt;p&gt;help?&lt;/p&gt;
&lt;p&gt;thanks - erick&lt;/p&gt;&lt;/div&gt;</description><author>zenekkis</author><pubDate>Fri, 22 Jan 2010 16:11:24 GMT</pubDate><guid isPermaLink="false">New Post: Fails to run! 20100122041124P</guid></item><item><title>New Post: Version to 2005 and 2008</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=75974</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I install the 2008 version and I think it doesn't work on 2005. I know that this sounds obvious, but what could I do when I have SQL 2005 and 2008 on my environment?&lt;/p&gt;&lt;/div&gt;</description><author>sacris</author><pubDate>Mon, 23 Nov 2009 17:04:05 GMT</pubDate><guid isPermaLink="false">New Post: Version to 2005 and 2008 20091123050405P</guid></item><item><title>New Post: System.IO.FileNotFoundException</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=72803</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;After install on Win 7 32bit&amp;nbsp;I get immidiately the following exception upon start up:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:xx-small"&gt;Problem Event Name: CLR20r3
&lt;p&gt;Problem Signature 01: sqlinternalsviewer.exe&lt;/p&gt;
&lt;p&gt;Problem Signature 02: 1.0.2.37137&lt;/p&gt;
&lt;p&gt;Problem Signature 03: 485ac3a2&lt;/p&gt;
&lt;p&gt;Problem Signature 04: System.Windows.Forms&lt;/p&gt;
&lt;p&gt;Problem Signature 05: 2.0.0.0&lt;/p&gt;
&lt;p&gt;Problem Signature 06: 4a275ebd&lt;/p&gt;
&lt;p&gt;Problem Signature 07: 1326&lt;/p&gt;
&lt;p&gt;Problem Signature 08: 2b&lt;/p&gt;
&lt;p&gt;Problem Signature 09: System.IO.FileNotFoundException&lt;/p&gt;
&lt;p&gt;OS Version: 6.1.7600.2.0.0.256.4&lt;/p&gt;
&lt;p&gt;Locale ID: 1033&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>lucius</author><pubDate>Thu, 22 Oct 2009 16:25:52 GMT</pubDate><guid isPermaLink="false">New Post: System.IO.FileNotFoundException 20091022042552P</guid></item><item><title>New Post: Possible error in column index type</title><link>http://internalsviewer.codeplex.com/Thread/View.aspx?ThreadId=59994</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Internals viewer reports clustered index as 'Heap' in the key grid. For example, in the AdventureWorks2008 database, table dbo.DatabaseLog, index PK_DatabaseLog_DatabaseLogID is non-clustered. In the key grid appears labeled as 'Clustered'. Conversely, in table HumanResources.Department, index PK_Department_DepartmentID is clustered and is labeled as 'Heap'.&lt;/p&gt;
&lt;p&gt;Thanks (wonderful tool! :-)).&lt;/p&gt;
&lt;p&gt;Xos&amp;eacute; Antonio Rubal&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>xarubal</author><pubDate>Thu, 18 Jun 2009 20:07:14 GMT</pubDate><guid isPermaLink="false">New Post: Possible error in column index type 20090618080714P</guid></item></channel></rss>