I have started playing around a little bit more seriously with SQL 2008. One of the cool features of the new SQL Management Studio is the support for intellisense for the TSQL you type in the Query window. This is really good as it even picks up the tables and related structures based on the database you are working on and can save you a lot of keystrokes, especially if you are doing stored procs.
The problem is that this intellisense data seems to be built and cached. So it is no problem if you are working with an existing database, but is a real PIA if you are in the initial stage. This is when you are creating tables and then maybe renaming columns, table and generally changing things as you go. Because, when you change a table design, the intellisense cache does not seem to update itself.
So I did some searching and came upon Dan's post, Refreshing the IntelliSense Cache.
So if you find something wrong or missing with the options avbl in intellisense try Ctrl+Shift+R..:)

