Forum Replies Created

Viewing 15 posts - 2,836 through 2,850 (of 3,221 total)

  • RE: More Data Security Issues

    Eric M Russell (6/25/2013)


    By and large, employees are granted more access to data than they really need to perform their job functions. I'm surprised when people talk about a database...

  • RE: SQL Server Should Work for Us

    kevaburg (6/19/2013)


    ...As a professional administrator of Oracle and SQL Server databases...

    And that is the crux of the matter.

    There are lots of people out there who are responsible for looking after...

  • RE: SQL Server Should Work for Us

    kevaburg (6/19/2013)


    What bothers me is the need to have a product that the accidental and/or average DBA can use. DB Servers are maintained by people that have been trained...

  • RE: SQL Server Should Work for Us

    I wholeheartedly agree. A small team (even much smaller than 50) could go through loads of small issues which when combined will make SQL Server a much slicker provision. It...

  • RE: Write PowerShell Output to SQL Server Table

    Hi Jeff,

    You are most welcome. I am sure I speak for all of us when I say it was a privilege to help you especially considering the huge input you...

  • RE: The Best Programmers

    DavidL (6/18/2013)


    paul.knibbs (6/18/2013)


    There are other reasons for not moving on from a job. My main reason is that I absolutely hate looking for new jobs--I don't like the disruption, I...

  • RE: The Best Programmers

    I struggled to find somewhere as interested in doing a thoroughly decent job of developing quality software that I ended up contracting (year 15 now). The irony was that my...

  • RE: Trust

    All fair points. Maybe I am being a little naive and idealistic.

  • RE: Trust

    I find that not always to be the case. Some people could use some decent processes and a little control. I guess it depends on the scenario. More so on...

  • RE: Do You Want a Meritocracy at Work?

    Craig-315134 (6/17/2013)


    Perhaps that was Steve Jones' intent, but it could easily be interpreted as a slam against older workers.

    Why was age specifically used as an example? Would it have...

  • RE: Do You Want a Meritocracy at Work?

    Craig-315134 (6/17/2013)


    Steve Jones wrote:

    It may mean that the newest, youngest person at your company might rise much faster than you simply because they're a better DBA or developer.

    Sounds a...

  • RE: Trust

    Steve Jones - SSC Editor (6/17/2013)


    But we are immature. Even thought we've been doing this for decades, we run as an unregulated, seat of the pants industry, with little standardization...

  • RE: Write PowerShell Output to SQL Server Table

    Ah yes, good spot:

    .GetValue(0) returns the first logical disk requested. Please see the looping above to see that you can ignore this call now.

  • RE: Write PowerShell Output to SQL Server Table

    As for the number of executions you have two choices:

    1) Loop through adding multiple inserts to a single command.

    $isFirst = $true

    $commandText = "INSERT DiskSpace"

    $wmiObject = Get-WmiObject Win32_LogicalDisk -computer 'SomeComputerName'

    Foreach ($logicalDisk...

  • RE: Write PowerShell Output to SQL Server Table

    Almost, unless I am mistaken you have missed single quotes either side of the comma i.e.

    $wmiObject.GetValue(0)["SystemName"] + "','" + $wmiObject.GetValue(0)["DeviceID"]+ "')"

    I am sure that you will have come across the...

Viewing 15 posts - 2,836 through 2,850 (of 3,221 total)