TSQL Tuesday – Why DBA skills are important

 

Paul's hosting the T-SQL Tuesday theme this month and the theme revolves around DBA skills. Specifically, "why are DBA skills necessary?" His specific post is here: Invitation to participate in T-SQL Tuesday #12 – Why are DBA skills necessary?.

This is a topic near and dear to me and one that I've found myself debating with others many times. If I were to cut to the chase and try to sum it up in one simple statement I'd say that you need to know and understand any tool in order to make it work effectively. Just as with any other tool… if I were to go and buy a chainsaw (having never touched one before in my life and this is probably a very good thing) and then bring it home and try to work it without reading the instructions, very bad things would probably happen. Maybe I could get it working but if I didn’t and I tried to mess with it, it might end up very badly for me.

Don’t get me wrong, you probably :) won’t lose any limbs while working with SQL Server but inefficiencies can be created in many area if/when database developers and database architectrs don’t have some DBA skills (and vice versa IMO). And, I can think of numerous scenarios in which this has happened not only with in-house applications but also with ISV applications. With an in-house application only your internal customers have problems. This is bad enough but imagine having customers that have paid for your software only to find out that there are shortcomings that could have been avoided through better design?

For this post, I certainly won’t name names but I will list a couple of gotchas that could have minimized (potentially eliminated in some cases) application downtime or if avoided would have improved performance. And, these are the skills that a DBA would have provided…

Online Operations

Yes, this is an Enterprise Edition feature but many enterprises have paid for it only to find out that they can’t leverage it on some of their more critical tables… why? Because the tables were created with LOB columns defined as part of the base table. While this doesn’t seem like it’d be a big problem and many developers would tend to have all attributes within a single table (for a single entity), SQL Server has a limitation for online operations that they cannot be done if the index has a LOB column in it. While nonclustered indexes should never have LOB columns the clustered index will naturally include all columns of the table. As a result, *ANY* table that has even 1 LOB column in it cannot support a clustered index create or rebuild as an online operation. The table will have to be taken completely offline (no inserts, update, deletes OR selects – NO OPERATIONS WHATSOEVER) while the table goes through sometimes frequently necessary maintenance. So, this isn't just a one time problem – it can last for the lifetime of the design/application.

Indexes

I delivered a RunAs Radio interview on indexes a while back and a comment that I’ll never forget was the following: “I have to say that I'm not a database guy. Not even a little tiny bit. But I found the show very interesting so I opened up the enterprise manager and started pokin around. (Just lookin, no touchin) Using the Query Analyzer I discovered that our main database doesn't have a single index. Apparently the devs decided that they wanted the option of putting the tables on any kind of database server so they did not include a single index or key. I was told "all that is done in 'The System'." Good grief.”This “involuntary DBA” was already starting to get some of his DBA skills even though it wasn’t really his job or goal. But, he’s already starting to learn that there are often misconceptions about how database work. And with regard to indexes, this can be very problematic. Indexes are at the center of good database performance and health. However, it’s not just the existence of indexes but knowing the right indexes. This isn’t something that’s easy to know within only a few minutes but there are tools that can help.

To get you started, here are a few links:

To be honest, even experienced DBAs often struggle with indexes. However, there are key choices that must be made early and indexes that really need to be created – in order for a database to be healthy. These are definitely things that a good DBA will know.

And, I guess the list could go on for some time. How about plan cache problems and problems with adhoc access to SQL Server? Or, statement recompilation choices? There are plenty of myths and misconceptions – in fact, check out Paul's blog series that was turned into a 60 page whitepaper here: https://www.sqlskills.com/blogs/PAUL/post/Myths-and-misconceptions-60-page-PDF-of-blog-posts.aspx. The good part about experienced DBAs is that they have often seen these problems and can work with developers/architects to create designs that might not be as prone to these problems. But, it's definitely a good debate – whose job is it anyway? And, I posted exactly this question awhile back here: Whose job is it anyway? and I also did a RunAs Radio interview on this as well: RunAsRadio Interview about Developers and DBAs – whose job is it?.

I think this is a debate that will go on for quite some time AND I do think that developers need some DBA skills and I think that DBAs need some developmemt skills. In some companies these job roles overlap to a point but in some companies they feel that these skills are unnecessary. In the latter, I can already sense problems in performance and scalability and even worse – potential failure.

Someone needs these skills if you want to succeed. SQL Server does NOT do everything for you. NO RDBMS DOES!!! Remember, SQL Server is a general purpose relational database management system. You can do anything with it (which is why I love it but also why so many of my answers start with… well… It depends…).

You must understand the tool and then you can/will use it properly!

Thanks for reading!
kt

One thought on “TSQL Tuesday – Why DBA skills are important

  1. Hear! Hear!
    If you are a developer creating business applications, then having SQL Skills that help you create a better overall solution is essential (and what I consider a fundamental hiring requirement).

    Sure we might call it DBA skills, but I regard the ability to:
    * select appropriate transaction isolation;
    * how to write SPROCs;
    * what is a deadlock and how to design to avoid ’em;
    * specify appropriate indexes;
    * idendity where clustering is best for the greater application;
    * when to use SQL CLR and when NOT;
    * interpret an actual execution plan;
    * compare two variations of a query to determine the better of the two;
    * knowing that FK’s should generally be indexed;
    * etc.
    as basic SQL skills any good business application developer needs. Sure this is maybe closer to architect or lead developer roles, but no matter what your role, you should know more about this. The guys that do, generally are also the guys that advance further quicker.

    It goes beyond just the database in that such knowledge would help you design your application to solve the problem in a better way, and THAT is what we are ultimately doing.

    Do disrespect to the "formal" DBA role – sure you should know these things too and more, but I always (and ignorantly) thought the DBA is the one to make sure the hardware is configured, backups are restorable, users and security is appropriate, maintenance jobs are written and run. The rest I expect from a developer.

    Perhaps too much to ask? All I know is it made my career as a professional developer and helped us win quite a few customers from previous developer woes.

    Just my 2c

Leave a Reply

Your email address will not be published. Required fields are marked *

Other articles

Wow! Wow! Wow! THANK YOU!

I announced my retirement from SQL/tech here and your comments on my blog, on LinkedIn, and on Facebook were overwhelming and humbling! I’m so touched

Explore

Imagine feeling confident enough to handle whatever your database throws at you.

With training and consulting from SQLskills, you’ll be able to solve big problems, elevate your team’s capacity, and take control of your data career.