Viewing 15 posts - 1,366 through 1,380 (of 6,038 total)
July 12, 2017 at 1:44 pm
Does then PTO policy apply to everyone in the company or only executive management?
July 12, 2017 at 12:09 pm
July 12, 2017 at 12:02 pm
I actually rather see a system where additional PTO is earned. For example, if a team meet their deliverable, then everyone on the team gets an extra three days of...
July 12, 2017 at 11:59 am
Andy, just to confirm you're talking about "PTO" which is Paid Time Off and not something like un-paid leave of absence?
July 12, 2017 at 11:43 am
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
Viewing 15 posts - 1,366 through 1,380 (of 6,038 total)