Viewing 15 posts - 1,366 through 1,380 (of 6,033 total)
1. I wish that developers (at least, our developers anyway) would...
July 12, 2017 at 8:48 am
SQL is a lot like HTML, I'm sure they don't want to get too far ahead of the ANSI standards and end up with a lot of proprietary extensions in...
July 10, 2017 at 12:35 pm
July 10, 2017 at 11:48 am
This should basically be it.
ALTER Function [dbo].[RemoveNumericCharacters](@Temp VarChar(1000))
Returns VarChar(1000)
AS
Begin
Declare @NumRange as varchar(1000);
SET @NumRange = '%[^0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9][^0-9]%';
While PatIndex(@NumRange, @Temp)...
July 7, 2017 at 12:57 pm
You'll need to post T-SQL for RemoveNumericCharacters() function, that's where the coding will go.
July 7, 2017 at 12:42 pm
You can leverage the PATINDEX and SUBSTRING functions for this.
DECLARE @s-2 VARCHAR(500)= 'The quick brown foxes ssn is 111111111 or 111-11-1111 for your info';
DECLARE...
July 7, 2017 at 11:37 am
What's interesting is how these misguided policies actually encourage bad SQL programming practices.
"A SELECT statement can not have more than two tables joined together..."
Hey, boss-man, when...
July 7, 2017 at 11:12 am
Typical programming books like "Database Programming with C#" may cover data modeling to come extent, but it's more of an afterthought and rather sparse.
Ralph Kimball has some excellent...
July 7, 2017 at 9:33 am
Perhaps the best way to proliferate a process is to make tools for the process ubiquitous. There is a rudimentary Database Diagram tool in SSMS, but it hasn't changed in...
July 7, 2017 at 7:34 am
July 6, 2017 at 8:48 am
I do believe that predictive analytics (non domain specific) can be leveraged to improve the optimization of databases and data storage systems, and do some extent that's been around for...
July 6, 2017 at 7:56 am
July 5, 2017 at 7:31 am
JavaScript and LINQ are just window dressing for SQL, just like in the construction industry stucco is dressing for (not a replacement for) solid brick.
July 3, 2017 at 3:03 pm
Viewing 15 posts - 1,366 through 1,380 (of 6,033 total)