Viewing 15 posts - 1,351 through 1,365 (of 6,026 total)
Where I work now, we use a SCRUM based project management and team model for developers and something more like Kanban for DBAs. I know that a couple of the...
July 13, 2017 at 9:32 am
July 13, 2017 at 7:52 am
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
Viewing 15 posts - 1,351 through 1,365 (of 6,026 total)