Tag: syndicated

  • Daily Coping 24 Mar 2021

    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 stop, breathe, and sit quietly for a minute. Repeat a few times.

    I breathe often in yoga. It’s helped me to think about my breath at other times in life. However, I often find the workday hectic, with lots of different tasks for me to deal with. I like to power though the day, taking breaks exercise, cook, or maybe play guitar. Often these are “working” breaks.

    My task today, and really more days, is to find a way to take a short break multiple times and be. Sit outside, do nothing, just appreciate life.

  • The Data Saturday Logo Contest

    I’ve been helping with the Data Saturdays project, in addition to trying to get SQL Saturday to grow again. Data Saturdays is looking for a logo, as the site has been a little plain so far.

    The admins have set up a design contest, and you can read about this at Monica’s blog. She really did a ton of work to review submissions, ask for our feedback, and deal with designers. Everyone that supports this project owes her a huge debt of gratitude. Please thank her when you see her next.

    The design contest is at 99designs, and I think there are some good choices. We picked 4, and you can vote until Friday, 26 March 2021. I grabbed the four designs here, without the extra stuff that might be included. Leave comments and you vote, and let others know.

    2021-03-22 16_55_35-Help me choose my new design!2021-03-22 16_55_26-Help me choose my new design!2021-03-22 16_55_13-Help me choose my new design!2021-03-22 16_55_09-Help me choose my new design!

    I won’t talk about my favorite, but I like all of these to some extent.

  • Daily Coping 23 Mar 2021

    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 find enjoyment in some manual task today, outside of work.

    I live on a horse ranch, but I’m not really a horse person. I’m a reluctant stable man and ride, mostly at the request of my wife. Taking care of the horses isn’t something I do often, but it does happen regularly, especially as the kids are gone.

    We had a historic snowstorm the last week, which resulted in lots of extra work to try and care for horses. My wife did some, but I helped out, taking some breaks from work. One day we had to get hay into nets, which helps the horses pace their eating. Normally this is process of putting a net partially on, flipping the bale, pulling the other side, repeat. When I do this myself, this is how it looks at the end.

    20201017_103814

    Because of the melting snow, the mud, and snow piled up, we couldn’t flip the bales. The nets were also full of mud, so while I got a little snow moved and loaded a bale on the tractor. I then unloaded it on a trailer and got a large round container. My wife, her employee, and I all then moved hay into the net manually, which is less fun than it sounds.

    However, it’s necessary, it saves some money, it’s hard, but it’s satisfying. Whenever I have to do horse chores, I try to appreciate the benefits. The physical effort, the tangible accomplishment of seeing something getting done, and the appreciation from others.

  • Filtering SQL Compare to a Schema

    One of the things that numerous clients have some to Redgate about is allowing a team of developers to work on a single shared database without creating conflicts. While this isn’t necessarily a simple thing to do, it is easy if you structure the projects appropriately. This post looks at one of those ways, with schema filtering.

    In a recent case, a customer had multiple schemas, and they wanted a SQL Change Automation project scoped to a single schema. Easy enough to do, as a new project gives you a place to pick your filter, but in order to do that, you need to create it first in SQL Compare. This post looks at how to do that.

    The Scenario

    I created a demo database with a couple schemas inside, and a few objects inside. I had a blank database to simulate a new QA environment. I opened SQL Compare and created a new project, pointing to these two databases. From here, I want the initial comparison. you can see this below, with a number of objects listed in different schemas.

    2021-03-12 17_09_13-SQL Compare - E__Documents_SQL Compare_SharedProjects_(local)_SQL2017.SimpleTalk

    On the left is the filter pane, and near the top is a “Custom filter rules” link. I clicked this to open up the filter dialog. In here, I see a default set with no rules.

    2021-03-12 17_10_21-Edit filter rules

    I added a new rule to set the schema name equal to “Sales”, to filter all objects away that do not exist in Sales. This is to give me a “Sales” project that developers can use in this schema.

    2021-03-12 17_10_30-Edit filter rules

    I click OK, and then I refreshed the comparison. I saw this:

    2021-03-12 17_11_48-SQL Compare - E__Documents_SQL Compare_SharedProjects_(local)_SQL2017.SimpleTalk

    I still have the Inventory schema listed. That’s not ideal, as this could be confusing to juniors developers. Also, depending on the comparison options, this could allow dependent objects to leak into this project.

    Filtering Schemas

    Schemas are not owned by themselves, and are separate. As a result, I need an additional item in this filter. If I scroll down the left side, there is a “schema” checkbox. If I put my mouse on this, I can see that there is an “edit” link.

    2021-03-12 17_13_24-SQL Compare - E__Documents_SQL Compare_SharedProjects_(local)_SQL2017.SimpleTalk

    I click that and then create my filter rule. In this case, I want the “Object name” to equal Sales. The object is the schema.

    2021-03-12 17_14_22-Edit filter rules

    Once I click OK, the Inventory schema disappears.

    2021-03-12 17_15_08-SQL Compare - E__Documents_SQL Compare_SharedProjects_(local)_SQL2017.SimpleTalk

    I need to repeat this for each schema that I want to build a filter for. Note that there isn’t a “save as” for filter files, so I need to manually copy each one in the file system when it is complete, or create a new SQL Compare project.

    Summary

    Once I have the filter files, I can load the appropriate one into each SCA project, allowing me to have projects that only see a small portion of the objects in a database.

    One other thing I often do here is remove global type objects, like users, from the project as well by unchecking those boxes in the filter pane.

    SQL Compare is an amazing tool that underpins much of what makes DevOps tools and automation work well with Redgate tools. I’d urge you to give it a try if you never have. You’ll be amazed as how much is helps you get work done quickly.