Welcome to MSDN Blogs Sign in | Join | Help

Ok so not everything for SQL Server 2008 is available yet, Report Builder is going to have a lag, you can find RC 1 here. This should work with RTM SQL 2008. Here are some of the changes from the last RC;

  • Easy to use wizards for creating table, matrix and chart data regions.
  • Support for directly opening and editing reports stored on the report server.
  • Support for using server resources such as shared data sources.
  • A query designer for Microsoft SQL Server data sources.
  • Enhancements to the Report Builder 2.0 ribbon.

Get it here.

That should not be all the pieces of SQL Server 2008 available.

Get it here. No tools or advanced services yet, but they will be here shortly. Good info on this page but beware its download link points to 2005 still.

In short there is a "rolling thunder" plan to both release bits and update all the sites.

Yesterday the MSDN subscriber sites were updated, also the MVP and TAP sites.

Today Eval Edition and Feature Pack became available

Ok lots of folks are confused and are having their installations bounced. There is some info in the release notes but this is the definitive KB http://support.microsoft.com/kb/956139

Let me try and explain;

SQL Server 2008 has dependencies on (and includes) VS 2008 SP1 and its components (BIDS is just VS 2008, SSMS uses components), plus NetFx 3.5sp1. SQL includes the RTM versions of both of these, HOWEVER they are not broadly released yet. There is a check in SQL Server Setup that if you have an old version (Beta, RC, whatever) it will bounce the install and ask you to upgrade to the RTM bits...which of course are not yet available independent of SQL.

KB lays out the options but for now here they basically are;

1/ Don't install the components that need SP1 of VS (basically the tools) yet, install the services and then install the tools later when Sp1 is out.

2/ Use a clean machine that does not have previous versions of VS 2008 (and I think Netfx 3.5) on it.

Of course this begs the question when are these bits going to be available for VS independent of SQL, well given the RTM bits are part of SQL you can imagine its not going to be long. And as Express is released by VS and SQL at the same time, thats when Express should also come out.

 

Clear as Mud? I try...

 

UPDATE: Thanks to a question from Dave it looks like option 2 above is going to make life VERY difficult for you if you want a box that has SQL 2008 RTM and VS 2008 Pro/Team SP1. I've pinged several folks in SQL and VS setup teams to see if there is a problem, my advice for now would be to wait until VS SP1 ships if you want an easy route to have everything on the box.

I'm forward dating this, but as you read this the bits should start becoming available. Congrats to the team on a focused release < 3 years since the last release.

The various SKUs and supplimental bits such as the Feature Pack are going to be coming available over the next few weeks.

Once all the links go live I'll update this post with the links.

Enjoy

 

Update: http://msdn.microsoft.com/en-us/subscriptions/downloads/default.aspx Has Ent, Dev, Std, Web and Workgroup for subscriber downloads, can't see Express or Ent Trial yet on the non subscriber pages.

Update: Today Eval Edition and Feature Pack became available

Details are here http://blogs.technet.com/dataplatforminsider/archive/2008/06/07/sql-server-2008-rc0-now-available-for-subscribers.aspx

More info once I have mine downloaded and installed under Hyper V

Read all about it here http://blogs.technet.com/dataplatforminsider/archive/2008/06/04/new-logo-for-sql-server-2008.aspx

Remind me to write a long and painfu post about the battle with Central Marketing during SQL 2000 as to why it was better(or NOT) to have a picture of a building on the box than the Red Braid that had been on many of the previous boxes

Somehow I managed to miss this one (thanks to Erland for the pointer). Folks have been asking for access to docs on TDS since before I was involved in SQL Server, well now you can peruse(all 124 pages) to your hearts content.

http://msdn.microsoft.com/en-us/library/cc448435.aspx

Ever had to take over the code for a system you did not define?

Ever found the documentation for such an app, to be ahemmm lacking?

 

Its  a fairly common ask from new app developers/ DBAs to find out if certain code is still being used for apps that have evolved over  a number of years. In SQL 2005 we added a DMV that allows you to work out if an index is being used or not. However the question still comes up about tables.

 

This came up recently on our internal SQL 2008 alias in the context of using sp_trace_setfilter, but Jack came up with  a better solution using audit.

 

create server audit unused_tables to file (‘c:\temp’)

go

alter server audit unused_tables with (state = on)

go

use database pubs

go

create database audit specification unused_tables for server audit unused_tables

add(select on authors by public),

add(insert on authors by public),

add(update on authors by public),

add(delete on authors by public)

go

alter database audit specification unused_tables with (state = on)

go

 

Then to check on it:

select * from sys.fn_get_audit_file(‘c:\temp\*.aud’, NULL, NULL)

go

Of course having found out that a bunch of tables are not being used what do you do? If you delete them the above data helps you feel pretty confident that they are not being used but its not perfect (classic example is the end of month, end of year reports...).

 

Hence I'll leave this as an exercise for the reader :-)

Jeff has a follow up post to the demos from Mix here. The silverlight unit test framework is based on a special build of mstest's infrastructure, targetted at CoreCLR.

 

How cool is that :-)

The SQL 2008, VS2008, Windows Sever 2008 launch event in the US happened this week. Dan Jones has some highlight features that were announced;

  • T-SQL Debugger is back
  • Object Search is back
  • Activity Monitor has effectively been rewritten to improve perf and usefulness

Apparently there is an issue in the CTPs of SQL Server 2008 related to leap year.  Although there is no known impact on SQL Server 2005 or prior versions at this time. The result of this issue is that SQL Server 2008 services will not start during the 24 hours of Feb 29 GMT.

Action: Do NOT stop or restart any SQL Server 2008 services during those 24 hours.

. Modifying the system time is not a work-around, may cause side-effects, and is strongly discouraged.
. At this time, there is no known customer impact on SQL Server 2005 or prior versions
. There is no known danger of data corruption or security exposure
. This is on all editions of SQL Server 2008
. This is on all operating systems

http://www.microsoft.com/sql/2008/prodinfo/download.mspx

Update: While this http://msdn2.microsoft.com/en-us/bb851668.aspx page still says Nov it actually takes you to a page that is Feb, or says it is Feb. I'm downloading at home right now, if its the wrong version I will know in 20 mins.

If you were at Seattle Code Camp this morning and heard me mention the new WCF load testing work that our Ranger team has been doing, Jeff has a great summary post here.

More Posts Next page »
 
Page view tracker