Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 6,026 total)

  • RE: Unlimited PTO

    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...

  • RE: Unlimited PTO

    Beatrix Kiddo - Thursday, July 13, 2017 8:56 AM

    killer.turtle13 - Wednesday, July 12, 2017 4:36 PM

    July 13, 2017 at 9:14 am

    #1950767

  • RE: Unlimited PTO

    killer.turtle13 - Wednesday, July 12, 2017 4:36 PM

    As someone working in the UK, it's kind of jarring when you're saying a job...

  • RE: Unlimited PTO

    Ed Wagner - Wednesday, July 12, 2017 1:19 PM

    It sounds like a winner to me.  When I heard of a company talk...

  • RE: Unlimited PTO

    Does then PTO policy apply to everyone in the company or only executive management?

  • RE: Unlimited PTO

    ZZartin - Wednesday, July 12, 2017 11:54 AM

    I doubt it's really as free form as take off whenever you want, unless you're...

  • RE: Unlimited PTO

    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...

  • RE: Unlimited PTO

    Andy, just to confirm you're talking about "PTO" which is Paid Time Off and not something like un-paid leave of absence?

  • RE: Learning Data Modeling

    Sean Redmond - Monday, July 10, 2017 12:34 AM

    I have two points:

     1. I wish that developers (at least, our developers anyway) would...

  • RE: The Panjandrum Conundrum

    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...

  • RE: Birds of a Feather

    bernard black - Monday, July 10, 2017 11:07 AM

    I'm a member  of the Prohibition Party. (yes there is one) .  Where does...

  • RE: The Panjandrum Conundrum

    Careful challenging the wisdom of the gods.

  • RE: Change SSN in textbox

    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)...

  • RE: Change SSN in textbox

    You'll need to post T-SQL for RemoveNumericCharacters() function, that's where the coding will go.

  • RE: Change SSN in textbox

    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...

Viewing 15 posts - 1,351 through 1,365 (of 6,026 total)