Forum Replies Created

Viewing 15 posts - 61 through 75 (of 548 total)

  • RE: Password checker automation

    Adam Bean (1/30/2014)


    Michael Meierruth (1/30/2014)


    Adam, just out of curiosity, how many servers and logins are you dealing with?

    Fluctuates daily; however based on current inventory ... 242 instances, 6,974 logins.

    So I...

  • RE: Password checker automation

    Adam, just out of curiosity, how many servers and logins are you dealing with?

  • RE: Password checker automation

    Nadrek,

    So you're saying to extract the hashes of the passwords (sys.sql_logins.password_hash which requires administrator privileges) and feed them into this oclHashcat. I presume that the way to calculate the hash...

  • RE: Password checker automation

    You cannot use the extra or-clause and have both '0001' and '1000' in the password list.

    Do one or the other, but not both.

    The query below does what you are doing...

  • RE: Software Patents

    EricEyster (1/30/2014)


    I cannot imagine our world if Codd had a patent on 3rd normal form and blocked others from creating the modern database engine.

    Uuuhhh, that would be scary!

  • RE: Software Patents

    I suppose Amazon's 1-click technology is more of an idea and cute name than a technology. And maybe Amazon really wants to hold on to that term '1-click' so that...

  • RE: Get Databases with no backup

    It's a simple and effective tool!

    I would change it to include any databases whose last backup is older than X days.

    It's also intesresting to see how restoring a database from...

  • RE: Software Patents

    Well, that 1-click patent by Amazon really ticks me. I'm a passionate customer of Amazon and I think I'll let them know my opinion on this absurd patent.

    Where things have...

  • RE: delete dublicate rows

    As Adi said:

    delete a

    from @a1 a

    left join (select phone,min(id) id from @a1 group by phone) d on a.id=d.id

    where d.phone is null

  • RE: Password checker automation

    Why don't you simply use 'Enforce password policy' of SQL Server?

    So what you're saying is that this software makes attempts to login using some sort of dictionary of bad passwords...

  • RE: How to display minimum values only in table?

    Chris, what you say in your last sentence really intrigues me. Thus query below could, in theory, return one or more rows?

    with

    c1 as (select name from sys.databases),

    c2 as (select name...

  • RE: Too Much Choice

    The last time I went to http://www.iegallery.com and clicked on search providers/all there were 855 choices.

    And all I wanted was a simple 'pasta con ragu'. In Italy that's spaghetti with...

  • RE: Replacing recurring characters in a string with single character

    This problem was heavily discussed back in 2009. It only delt with multiple blanks and at the time I had proposed the best SQL solution. Naturally there were CLR solutions...

  • RE: Redundant Redundancy

    No matter how well you automate things there comes a time when SQL Agent gets stuck and just hangs and no jobs would start. This happened to me fairly recently....

Viewing 15 posts - 61 through 75 (of 548 total)