How to find all the Stored Procedures having a given text in it?
Recently, I was needed to search for all the Stored Procedures having a given text in its definition. So, as usual did the g gling, most of the top results returned were suggesting to use...
View ArticleGO Statement can also be used to excute batch of T-Sql statement multiple times
Till recently, I was under the impression that GO statement’s sole purpose is to convey to the Sql Server the end of a batch of T-Sql Statements. But recently while searching for some Sql feature...
View ArticleDifference between Sql Server Char and Varchar Data Type
Everyone knows about the basic difference between CHAR and VARCHAR data types. In this article apart from the basic difference, will discuss on one more interesting difference which I have observed...
View ArticleSimple Quiz On Sql Server Select statement
If we execute a statement like below, it will throw error: SELECT xyz Result: Msg 207, Level 16, State 1, Line 1 Invalid column name 'xyz'. Can you guess what the below statement execution will result...
View Article