Differences between User Defined Functions and Stored Procedures
First lets look at the two briefly and why they are useful. Stored Procedures can contain a single SQL statement or a group of SQL statements with data flow control logic containing IF-ELSE, WHILE loop...
View ArticleWrapping a table into Html Table in SQL Server 2005-2008
Wrapping a table into Html Table in SQL Server 2005-2008: Say you like to wrap the query to check last back dates on a SQL instance into a html table below: select name,...
View ArticleEstimating the Size of a Table in SQL Server
A Developers needs to know the calculation involved in Estimating the Size of a Table: The following steps can be useful for a developer to estimate the amount of space required to store the data in a...
View ArticleUsing Raise Error in SQL Server Error Handling
When developing codes in SQL Server using Tsql, one has to use error handling mechanism, SQL Server has its own Error Handling mechanism where @@Error is used to trap the errors and we can get the...
View ArticleSQL Server Partitioned View vs Partition Table
SQL Server Partitioned View vs Partition Table Small Demo Code for Creating Partition Table Another Small Demo Code for Creating Partition View Now with below queries, we can find use of partitions in...
View Article