Category: Blog

  • Daily Coping 27 Jan 2022

    I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m adding my responses for each day here. All my coping tips are under this tag.

    Today’s tip is to plan something fun and invite others.

    It might not seem that way, but I am not that social most of the time. So planning things and bringing along others is usually reserved f0r family.

    My wife and I did this over the holidays, and I’m sharing here because I think it’s a good idea for others to think about.

    Just after Thanksgiving, a friend noted that they couldn’t get their adult son to come home for the holidays from Texas, so they ended up renting an AirBnB in Miami, buying a ticket for the adult, and bringing their current family down to Miami for the holiday weekend. An expensive weekend, but one that brought them together.

    My wife and I decided to do that with our family. Two of our three adult kids have partners, and we don’t see them as often as we’d like. We looked around and decided we could afford to rent a house in Las Vegas and fly the kids and their partners in for a week after Christmas.

    We had a great time, sharing time together, playing games, seeing a few shows, some hiking, but mostly just getting time with our extended family in a way that’s been difficult.

    I don’t know that we’d do it every year, but it was fun to invite others and do it this year.

  • Checking if a database has a master key–#SQLNewBlogger

    Another post for me that is simple and hopefully serves as an example for people trying to get blogging as #SQLNewBloggers.

    I’ve been working with encryption in SQL Server for a long time, and have delivered quite a few presentations on the topic. Recently I was updating some code and wanted to check if a database had a master key created in it. This post shows how to do that.

    The DMK (Database Master Key) is a construct that lives inside a database and provides the basis for encrypting other keys. It is a symmetric key, but created with the CREATE MASTER KEY DDL.

    Information about this key is stored in a couple of places. First, it appears in sys.symmetric_keys, with the name “##MS_DatabaseMasterKey##”. You hsould see this with the AES_256 algorithm.

    You can also query the sys.databases DMV for the is_master_key_encrypted_by_server c0lumn, if you keep the defaults. If you run this

    ALTER MASTER KEY DROP ENCRYPTION BY SERVICE MASTER KEY

    then the sys.databases DMV will show 0, even though you still have a master key, as shown below.

    2022-01-25 12_08_37-SQLQuery2.sql - ARISTOTLE.EncryptionPrimer (ARISTOTLE_Steve (55))_ - Microsoft S

    SQLNewBlogger

    A quick post. I was updating code to make it cleaner and realized I needed to add a check for the key. In the past, I’ve just ignored the error, but I took the chance here to refactor things and also produce a quick post.

  • Daily Coping 26 Jan 2022

    I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m adding my responses for each day here. All my coping tips are under this tag.

    Today’s tip is to focus on what’s good on a tough day.

    Most of my days are pretty good, but there are some difficult days. As I tell my kids, every job is a job some days, no matter how much you love it.

    Last week I had a hard day. I wasn’t feeling well, fighting a cold (or maybe breakthrough COVID, but I don’t think so). I needed to get a few things done, I wanted to work out, and I needed rest.

    I decided to focus on the fact that I felt well enough to do something, and cut back where I could. I postponed some work, did a very light yoga workout in my bedroom, and took care of the one critical thing that needed to be done.

    By the end of the day, I felt better. I shortened the day and went to bed early, but I did enough to appreciate that it turned out to be a good one.

  • Daily Coping 25 Jan 2022

    I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m adding my responses for each day here. All my coping tips are under this tag.

    Today’s tip is to get back in touch with an old friend.

    Actually, I had an old friend get in touch with me. Someone I worked with years ago reached out and I responded. We actually scheduled lunch together and it was great. A very nice chance to catch up with each other’s lives and careers.

    Worth the time and effort.