Function | Usage Example | Notes |
Declare & Initialise | DECLARE @iValue as integer = 100; | |
Compound Assignments | SET @iValue -= 50 | += -= *= /= %= |
Multi-Row Inserts Using VALUES | INSERT INTO dimProduct (Label, BusinessKey,LastUpdatedBy,LastUpdatedDate) VALUES | The insert is executed as a single transaction. |
MERGE | MERGE INTO dbo.dimProduct as d INSERT (ProductName,ProductCategory) VALUES (s.ProductName, s.ProductCategory) WHEN NOT MATCHED BY SOURCE THEN DELETE | |
Grouping Sets | SELECT Year(OrderDate) as OrderYear, ()); | () empty brackets represents an 'ALL' grouping |
Filtered Indexes | CREATE NONCLUSTERED INDEX idxOrders_Product | |
Change Data Capture |
| Tracks data changes into a table. |
Tuesday, 28 October 2008
What's New in SQL 2008 - Part 1 - Functionality
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment