Report Development Cycle
To develop a proper standard reports one should follow the proper method of Report development cycle where possible. The First Step is always Information Gathering. This is the important part to...
View ArticleRandom Data Generation
Sometimes we will be needing to generate random number, alphabets for various development, security purposes. Random number generator which should be put in Do …While statement: select...
View ArticleUsing Temporary tables and Temporary variables instead of Cursors
Mostly in production you might want to consider using a temp table is to avoid having to use a cursor. SQL Server cursors have huge overhead and slow SQL Server’s performance. One alternative of using...
View ArticleUsing Proper indexes to Optimize SQL Performance
Using Proper indexes to Optimize SQL Performance is very important when it comes to development of a Application/Reports. Indexes can improve performance of a query to a very high level by using what...
View Article