MERGE is a new feature that provides an efficient way to perform multiple DML operations. In previous versions of SQL Server, we had to write separate statements to INSERT, UPDATE, or DELETE data based on certain conditions, but now, using MERGE statement we can include the logic of such data modifications in one statement that even checks when the data is matched then just update it and when unmatched then insert it.
SQLAuthority News – Microsoft SQL Server 2008 R2 Report Builder 3.0
Microsoft SQL Server 2008 Reporting Services Report Builder 2.0 supports the full capabilities of SQL Server 2008 Reporting Services including flexible report layout, data visualizations and richly formatted text. The download includes the following functionality above the RC0 release of Report Builder:
SQL SERVER – XML – Split a Delimited String – Generate a Delimited String
SQL Server MVP and my very good friend Jacob Sebastian has written two wonderful articles about SQL Server and XML. I encourage to read this two articles to anybody who are interested in learning SQL and XML. Let us see how to Split a Delimited String.
SQL SERVER – 2008 – Introduction to Online Indexing Operation
SQL SERVER – Get Date Time in Any Format – UDF – User Defined Functions
One of the reader Nanda of SQLAuthority.com has posted very detailed script of converting any date time in desired format. I suggest every reader of this blog to save this script in your permanent code bookmark and use it when you need it. Let us learn about User Defined Functions.
SQL SERVER – Effect of Order of Join In Query
SQL SERVER – 2008 – Get Current System Date Time
How to get current system date time in SQL Server?