Forum Replies Created

Viewing 15 posts - 211 through 225 (of 3,221 total)

  • RE: Jump In

    This site is unique. What makes it unique is that people, more often than not, allow for differing viewpoints in a discussion in order to see where that discussion will...

  • RE: Continuous Delivery In Real Life

    Currently assisting a client to achieve this. They are years in but only in the last 12 months have they reaped great rewards from their efforts and can see that...

  • RE: The (Former) Complexity of PowerShell

    suparSteve - Thursday, January 19, 2017 1:28 PM

    Steve Jones - SSC Editor - Thursday, January 19, 2017 11:21...

  • RE: The (Former) Complexity of PowerShell

    Steve Jones - SSC Editor - Thursday, January 19, 2017 11:21 AM

    Eric M Russell - Thursday, January 19,...

  • RE: Looking Back at 2016

    TomThomson - Thursday, January 19, 2017 9:39 AM

    I am sick of people claiming that it...

  • RE: Securing Your Instances

    GeorgeCopeland - Thursday, January 19, 2017 7:51 AM

    I always advise my fellow technologists to avoid providing advice in areas where they have...

  • RE: parsing records with empty spaces

    Do not remove spaces with the -replace i.e. replace:

    $x_row = ($x_row -replace '\s+', ' ')
    $col1 = $x_row.split()[0]
    $col2 = $x_row.split()[1]

    With:
    $col1 =...

  • RE: parsing records with empty spaces

    First, to improve efficiency and, in my opinion, clarity change:

    $x_row = ($x_row -replace '\s+', ' ')
    $col1 = $x_row.split()[0]
    $col2 = $x_row.split()[1]

    To:

    [code...

  • RE: Finally, Create or Alter

    Nelson Petersen - Wednesday, January 18, 2017 12:31 PM

    Steve,
            To expand this slightly, metadata, code and data could all...

  • RE: Looking Back at 2016

    TomThomson - Wednesday, January 18, 2017 1:49 PM

    ...I suppose that you will say there is no connection, it's just coincidence.

    Nope. The percentage...

  • RE: The (Former) Complexity of PowerShell

    The PowerShell of today is almost unrecognisable to the PowerShell I was using commercially in 2007. There has been so much simplification without dumbing it down. It is a great...

  • RE: Writing the Correct Query is Important

    paul s-306273 - Wednesday, January 18, 2017 4:20 AM

    I once worked with an arrogant developer who nulled out a column on thousands...

  • RE: Half Baked Features

    ThomasRushton - Wednesday, January 18, 2017 1:51 AM

    The "half-baked" feature that always annoyed me was "[Partially] Contained Databases" when they came out...

  • RE: Half Baked Features

    I'd rather a completely functional feature that could be improved was delivered rather than wait for a completed feature (e.g. simplified or various advanced aspects added). This way multiple features...

  • RE: Byte Me: SOS

    mjh 45389 - Wednesday, May 18, 2016 7:06 AM

    Word and e-mail are very much to blame for the deluge of memos (paper...

Viewing 15 posts - 211 through 225 (of 3,221 total)