Category: Blog

  • DevOps Days Minneapolis

    Once again, I’m off to a conference next week. This time it is DevOps Days Minneapolis. I haven’t been to a DevOps Days event, though I always enjoy DevOps events because the attendees and speakers are very passionate about building better software faster. Some of them have great stories and experiences (and successes), while many also struggle with the same restrictions, priorities, and lack of attention to quality that most of us do.

    In any case, this is a fairly small event, but I like Minneapolis and I’m looking forward to the trip.

    If you’re coming to the event, say hi. If you can’t, there are lots of other DevOps days events coming up.

  • SQL Saturday Baton Rouge 2024–Resources

    For my talk at SQL Saturday Baton Rouge 2024, here are the resources.

    Slides: Architecting Zero Downtime.pptx

    GitHub: https://github.com/way0utwest/ZeroDowntime

    If you have questions, reach out.

  • A New Word: Vicarous

    vicarous – adj. curious to know what someone else would do if they were in your shoes, eager to watch another actor put their own spin on the character of YOU – carrying your body differently, speaking in a tone you never use, saying and doing things you didn’t even know were an option – a performance that might well end in disaster but would at least remind you that there are many different ways to play this role, even though you tend to assume you’re just reading the lines as written.

    I am not an actor. I haven’t participated in theater or movies, though I have learned a bit about what it’s like from various presentations, promotions, and interviews I’ve done. While I’m always me, I don’t always feel as happy as I may appear.

    That being said, I do think that I am just reading my lines by being me. My approach to life and work changes over time, somewhat like a rewrite of a character in a show, but these are the choices I make for a better life, career, relationship, whatever.

    I don’t usually wonder how someone else might approach my life, though certainly I do wonder if others might perform better in things I do at work. Or coaching. I think about how another presenter might deliver my talk, or

    I sometimes wish I were a better character in my personal life, but I don’t ever think about someone else would play my role. That feels too weird.

    I mostly think about how I could learn to be better by watching someone else play their role.

    From the Dictionary of Obscure Sorrows

  • Updating dbatools–Fixing the Certificate Failure

    I was trying to update my dbatools install to test something and go this error.

    2024-06-27 13_23_12-C__Users_Steve (Admin)

    I fixed it with a little help.

    The Fix

    The short answer from Chrissy LeMaire is to run this:

    install-module dbatools  -Force –SkipPublisherCheck

    That worked.

    2024-06-27 13_35_36-C__Users_Steve (Admin)

    Why?

    Chrissy explained this, but essentially it’s a certificate approval thing. Certificates work by verifying each other in a chain. One cert checks another, which checks another, etc.

    In this case, Microsoft changed some things and while the dbatools goes through some of these things, the update-module is doing extra checks. Supposedly MS will fix this.

    In any case, if you need an update, you need to bypass things for now.