Server Side Paging simplified in SQL Server “Denali”
SQL Server “Denali” is the new upcoming version of SQL Server, it has numerous new features Let us review the new built-in Paging feature “FETCH FIRST”, “FETCH NEXT” –How to Fetch 1st Page of 10 Rows...
View ArticleCatch ‘n Throw Errors in SQL Server “Denali”
SQL Server “Denali” adds a new feature in Error Handling called “THROW” Current version already has RAISERROR, which you can already use to raise Error from your procedures, then why do we need this...
View ArticleMeta Data Discovery Enhancements in SQL Server “Denali”
In Previous versions of SQL Server, to get the output format of a query or stored procedure, we should use SET FMTONLY ON/OFF Let us see how SET FMTONLY works USE AdventureWorks2008R2; GO SET FMTONLY...
View ArticleHow to identify what features has been installed in your SQL Server ?
One of my friend recently asked me a question, How to view the list of features installed in the SQL Server easily without going through “Programs and Features” or “Services”. Yes, there is an easy way...
View ArticleSEQUENCE–How to create Identity Key across tables in SQL Server “Denali” ?
SQL Server “Denali” introduces a new feature called “SEQUENCE”. SEQUENCE is a user-defined object that generates a sequence of numeric values according to specified options. Its not bound to a table...
View ArticleSQL Server “Denali”– SEQUENCEs–Continued…
After reading my previous article about SEQUENCE one of my friend asked a question about the performance of using Sequence for quick and continuous generation and whether there is a way to create and...
View ArticleSQL Server “Denali” CTP1 Expired…
Today when I started using SQL Server “Denali” CTP1 Management Studio, I wasn’t able to connect to the SQL Server, When I checked the SQL Server Service it wasn’t running. I opened Event Viewer and...
View Article