MSSQLTips.com - your daily source for SQL Server tips

Google
 
Web mssqltips.com

ESSENTIALS: Home | Tips | Search | Categories | Top 10 | Products | Authors | Blogs | Forums | Webcasts | Advertise | About
Browse by Tags - MSSQLTips

MSSQLTips

MSSQLTips.com - your daily source for SQL Server tips
Welcome to MSSQLTips Sign in | Join | Help
in Search

Browse by Tags

All Tags » katmai » 2008 (RSS)
  • Estimating Data Compression ratios for all...

    One of my favorite features with SQL 2008 has been Data and Backup compression (which I discuss in more detail technically here ) - this is not only because of the actual functionality it brings to the table, but also because of all the technical intricacies that it involves and the impact it can have...
    Posted to Weblog by Chad Boyd on 09-22-2008
  • Katmai (Sql 2008) - MERGE - More than UPSERT (more advanced uses)

    So, more than likely almost everyone has already heard that Sql 2008 will introduce a MERGE syntax, making it much easier to deal with scenarios where you need to perform 'upsert' type logic (i.e., you have a source data set and you want to put records from that source set into a target set ...
    Posted to Weblog by Chad Boyd on 11-01-2007
  • Katmai (Sql 2008) - consume output from OUTPUT (directly)

    Most of you are aware that Sql Server 2005 introduced the OUTPUT clause, which provided functionality to stream records affected by a write-based statement (i.e. insert/update/delete) into a table variable, which you could then use for other purposes (perhaps to log, or to archive data from a non-partitioned...
    Posted to Weblog by Chad Boyd on 10-31-2007
  • Katmai (Sql 2008) - Group By Sets

    With Sql 2008 (in the current CTP you have in your hand), thanks to a new extension to the group by clause referred to as 'grouping sets', you now have the ability to use sets of grouping columns in your group by clauses, allowing you to define basically multiple groupings in the same single...
    Posted to Weblog by Chad Boyd on 10-15-2007
  • Katmai (Sql 2008) - The List of New Features

    So, I've been getting quite a few pings about providing a list of new features to look for in Katmai (Sql 2008) - well, I put together a list below, and this isn't even everything (though it's a lot of the major stuff) - I even tried to categorize it (and some things may appear in multiple...
    Posted to Weblog by Chad Boyd on 10-15-2007
  • Katmai (Sql 2008) - Data Compression (including Backup Compression)

    This post will cover an initial overview of the data compression feature that will be included in Sql Server 2008, and I'll also cover briefly some information on the Backup Compression feature as well (note that these are 2 totally separate and distinct features, since they are very different, as...
    Posted to Weblog by Chad Boyd on 10-15-2007
  • Katmai - Did you know? Inline variable initialization and Compound assignment

    In Sql 2008 (Katmai), a couple of the 'smaller' features that are currently in the latest CTP include inline variable initialization and compound assignment (something you App Dev folks have had for years). So, the following types of code now work in Sql 2008: declare @d datetime = getdate()...
    Posted to Weblog by Chad Boyd on 10-15-2007
Page 1 of 1 (7 items)