SQL Server Management Studio 2008 Intellisense - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T09:10:04Zhttp://stackoverflow.com/feeds/question/250127http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense7SQL Server Management Studio 2008 IntellisenseRobert Vuković2008-10-30T13:12:02Z2009-07-01T22:40:13Z
<p>I just installed SQL Server Express 2008 because of intellisense feature. It worked at first but than it stopped working. Looking for the option to check and later consulting Google I have found that it looks like <strong>Microsoft disabled intellisense if you connect to SQL Server 2005 databases.</strong></p>
<p>Is this absolutely correct ?<br/>
Is there any solution for this (some registry "switch") ? </p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/250156#2501565Answer by DilbertDave for SQL Server Management Studio 2008 IntellisenseDilbertDave2008-10-30T13:23:24Z2008-10-30T13:28:54Z<p>I don;t think that there is a way around this (although I could be wrong) but <a href="http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=341872" rel="nofollow">this</a> may help in your quest for the truth ;-)</p>
<p>Looks like intellisense was suggesting 'incorrect' syntax for pre-2008 databases during CTP and was removed in the RTM.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/250167#2501671Answer by Joel Coehoorn for SQL Server Management Studio 2008 IntellisenseJoel Coehoorn2008-10-30T13:27:41Z2008-10-30T13:27:41Z<p>Don't think of it so much that they <em>disabled</em> intellisense in SQL Server 2005 so much as that SQL Server 2005 wasn't built with intellisense support in mind; there is code in the SQL Server 2008 database engine that supports the intellisense feature in Management Studio 2008.</p>
<p>Yes, I know it <em>seemed</em> to work in the later CTP previews, but some googling (and DilbertDave's link) reveals that there were a number of ways in which the CTP behavior was broken.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/250215#2502150Answer by atpires for SQL Server Management Studio 2008 Intellisenseatpires2008-10-30T13:43:54Z2008-10-30T13:43:54Z<p>Just use toad, waaaaay better than any Microsoft tool. There's a freeware version.</p>
<p><a href="http://www.toadsoft.com/" rel="nofollow">Toad Soft</a></p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/252068#2520682Answer by Guy for SQL Server Management Studio 2008 IntellisenseGuy2008-10-30T23:02:01Z2008-10-30T23:11:26Z<p>A co-worker and I have both installed SQL Server Management Studio 2008 and we both connect to the same SQL Server 2005 and 2008 databases. He gets intellisense for both 2005 and 2008. I just get it for 2008. We cannot work out why this is.</p>
<p>CORRECTION: Turns out that my co-worker thought that he was connecting to a 2005 server but it was in fact a 2008 server.</p>
<p>Conclusion: After consulting with our DBA's it does not appear to be possible. They've also done extensive research on this.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/252111#2521114Answer by Dave for SQL Server Management Studio 2008 IntellisenseDave2008-10-30T23:14:32Z2008-10-30T23:14:32Z<p>SQLPrompt by Red-Gate does the job quite nicely, across all versions (2000, 2005 and 2008), as well as operating inside VS and even some text editors.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/252122#25212210Answer by Craig Nicholson for SQL Server Management Studio 2008 IntellisenseCraig Nicholson2008-10-30T23:20:24Z2008-10-30T23:27:16Z<p>If you'd like to see the feature added, vote for the request on <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=341872" rel="nofollow">Connect</a>. Here is feedback from the team regarding why it was dropped:</p>
<blockquote>
<p>Let me share product team’s
information about the version support
of IntelliSense. This was a truly
by-design from the beginning of
IntelliSense project and it was a part
of business decision. Implementation
of IntelliSense requires a full
fidelity of engine parser
reconstruction in client side using
managed code base. Support of multiple
server versions means design and
implementation of multiple versions of
parsers and related infra in parallel.
This multiplies time and cost to
develop, test and support. At the same
time, the core module is an important
product base that enables not only
IntelliSense feature but also other
products including Upgrade Advisor to
analyze scripts; in the long term, it
is potentially any feature that needs
syntactic and semantic understanding
of Transact-SQL language.</p>
<p>In CTP5 and CTP6, IntelliSense had a
known issue that it did not correctly
check the server version so CTP users
could connect any version of SQL
Server with IntelliSense. While some
users didn't notice it, IntelliSense
was not correctly working as desired.
The impact was that IntelliSense had a
high potential to guide users to
script incorrect Transact-SQL or to
false-negatively indicate that a
script has errors while it is
perfectly valid in those versions.</p>
<p>Considering the number one goal of
IntelliSense is to increase
productivity of authoring complex
query or stored procedure (or simply
Transact-SQL scripts), this issue was
regarded as a factor to <em>decrease
productivity</em> which is a huge negative
impact from a new feature.</p>
<p>In RC0, this known issue was corrected
that IntelliSense checks the server
version and provides its feature on
supported version which is SQL Server
2008.</p>
<p>As a version one, IntelliSense is
enabled on a subset of Transact-SQL
language. It is because the large
scope of work to implement lexer,
parser, binder and script document
object model in managed code for
entire language scope. The product
team is moving forward with a focus on
expanding the language support scope.</p>
<p>I hope this information provides the
background information at minimum why
the target version was selected on SQL
Server 2008 only.</p>
</blockquote>
<p>Anyone using the RTM build should consider the CU1 (Cumulative Update 1) build available <a href="http://support.microsoft.com/kb/956717" rel="nofollow">here</a> as quite a few IntelliSense bugs were addressed.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/413324#4133243Answer by Jimbo Jones for SQL Server Management Studio 2008 IntellisenseJimbo Jones2009-01-05T14:49:23Z2009-01-05T14:49:23Z<blockquote>
<p>there is code in the SQL Server 2008 database engine that supports the intellisense feature in Management Studio 2008.</p>
</blockquote>
<p>No there isn't. You're entirely wrong, and should be slapped with a wet fish.</p>
<p>All it is doing is interrogating the various INFORMATION_SCHEMA virtual tables to do discovery. The reason they disabled it against prior versions is that theoretically it might encourage you to use a syntax that is only valid against 2005, but lots of people were using it with 100% success. Of course the <em>real</em> reason they disabled it is that it reduced one advantage of upgrading your servers to 2008 (which is where they make the real money).</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/1071703#10717031Answer by Dejan Grujic for SQL Server Management Studio 2008 IntellisenseDejan Grujic2009-07-01T22:40:13Z2009-07-01T22:40:13Z<p>You can use intellisense in DbOctopus - works with SQL Server 2005 and 2000 too. It's currently free, but only until 1st September 2009.</p>
<p>You can find it here:</p>
<p><a href="http://www.cogin.com/dboctopus/" rel="nofollow">http://www.cogin.com/dboctopus/</a></p>