|
|
-
Naomi Posted 1 Years ago through Blogs | 10 Points
This blog shows a way to examine table's column values and drop columns that have nothing but NULL values in them....
|
-
Naomi Posted 2 Years ago through Blogs | 10 Points
This is a short blog post for the problem I solved today in MSDN forum. The task was to remove all bad chars from a string allowing only good characters (spaces, letters and numbers). I solved it using a PATINDEX function and wh...
|
-
Naomi Posted 2 Years ago through Blogs | 10 Points
0
BEGIN
SET @Rest = Substring(@String,@nBadChars + 1,Len(@String))
SET @S......
|
-
Naomi Posted 2 Years ago through Blogs | 10 Points
This blog post will present a T-SQL solution for a 'cleansing' problem. Suppose, we need to remove all commas, single and double quotes from all character fields in a table....
|
-
Naomi Posted 2 Years ago through Blogs | 10 Points
0 --......
|
-
Naomi Posted 2 Years ago through Blogs | 10 Points
This blog will show how to search for an integer value in all integer (smallint, tinyint, int, bigint) columns in all tables in the database....
|
-
Naomi Posted 2 Years ago through Blogs | 10 Points
A new MSDN thread question prompted me to write a new variation of my original blog post 'How to search a string value in all columns in all tables in a database'.
This blog will show how to search for an integer value in all integer (smallint, tinyint...
|
-
Naomi Posted 3 Years ago through Blogs | 10 Points
One of the common questions I encounter in the different SQL related forums is "How to search all columns in all tables in the database". My usual answer is to refer people to the Question #2 in th...
|
-
Naomi Posted 3 Years ago through Blogs | 10 Points
One of the common questions I encounter in the different SQL related forums is "How to search all columns in all tables in the database". My usual answer is to refer people to the Question #2 in this blog The ten most asked SQL Server questions. However...
|
-
Naomi Posted 3 Years ago through Blogs | 10 Points
When I wrote my first article with the same name here, Interesting T-SQL problems,&n...
|