Problems displaying this newsletter? View online.
SQL Server Central
Featured Contents
Question of the Day
The Voice of the DBA
 

Balancing Hard and Soft Skills

Many of us would prefer that the technology industry were a meritocracy. One there we get opportunities and are compensated according to our skills. We learn to code better, or manage more systems, and we're seen as more valuable (and rewarded appropriately). Or maybe many of us would prefer that things stay the same, since we might worry that we'd be paid less because our skills aren't as sharp as our co-workers.

In any case, we don't work in a meritocracy, but if we did, we might recognize that it's not just your programming skills that are being measured. In this piece on hard and soft skills, the author notes that the importance of soft skills is both more and less serious than we might imagine. If that sounds contradictory, it is, but read the article and you'll see that this is a complex issue.

The main point from the author is one that we've realized at Redgate for some time, and it's why we're refocusing our efforts on teamwork. Most modern systems are too complex to be built by one person, which means a group of people need to work together. DevOps asks us to build a culture of collaboration and communication, which are critical soft skills. It matters less and less if you're an amazing developer that can't work with others for some reason.

I do think that the more you advance in your career, the more important these skills become as your job is not just code. It's also helping shape the direction of software, teaching others, and sharing what you know. If you don't have the skills to interact well with others, then I suspect your ceiling may be lower than you like. Or worse, your tenure shorter than you'd prefer.

At Redgate, we do embed a lot of customer research, discussions, and more inside development teams.  At times, I think too much, but I often stop and think about the teams I've worked with that didn't do this. They don't necessarily code quicker, certainly lack understanding and empathy, and certainly don't make more customers happy. We're trying to adopt more soft skills inside the company, while learning to build better software.

To build a team, we need to value those in the team, and work with them, not against them. Those are skills that can certainly help us in our career, as well as skills that help any organization learn to operate more smoothly, with more retention. At least, more retention of those that have strong soft skills.

Steve Jones - SSC Editor

Join the debate, and respond to today's editorial on the forums

 
 Featured Contents

A Step by Step Guide to the Availability Group (AG) Listener

rathishkb from SQLServerCentral

Availability databases hosted on SQL Server Always On Availability Groups (AG) can be connected using a unique Virtual Network Name (VNN), called the Availability Group Listener. When an Availability Group is enabled, clients can connect to databases in both primary and secondary replicas without explicitly specifying the SQL Server instance name. You don’t even need […]

Database Delivery with Docker and SQL Change Automation

Additional Articles from Redgate

Phil Factor demonstrates the basics of how to automate database builds into a Linux SQL Server container running on Windows, and then backup the containerized database and restore it into dedicated containerized development copies for each developer and tester.

Filtering Object Explorer Detailed Information in SSMS

Additional Articles from Database Journal

Need to know how to use the “Filter” item in the SSMS Object Explorer Details window to show a specific list of tables that contain a specific string of characters? If so, then read on!

From the SQL Server Central Blogs - Power BI Interview Questions – Volume 02 – Data Shaping

Devin Knight from Devin Knight

Welcome to a brand new series that I have started with with Erin Ostrowsky [Blog | Twitter] that will focus on interviewing for a Power

From the SQL Server Central Blogs - Cool Stuff in Snowflake – Part 9: ILIKE

Koen Verbeeck from Koen Verbeeck

I’m doing a little series on some of the nice features/capabilities in Snowflake (the cloud data warehouse). In each part, I’ll highlight something that I think it’s interesting enough to...

 

 Question of the Day

Today's question (by Steve Jones - SSC Editor):

 

The Client Key

Which key is stored on the client, or accessed by the client, and used for the encryption/decryption operations in Always Encrypted?

Think you know the answer? Click here, and find out if you are right.

 

Redgate Webinars
 

 

 Yesterday's Question of the Day (by Steve Jones - SSC Editor)

Clearing Backup History

If I want to clear the backup history for only the Scratch database from my instance, and not remove history for the Sales database, how do I do this?

Answer: Run sp_delete_database_backuphistory with a parameter of 'Scratch' in the msdb database

Explanation: sp_delete_backuphistory only takes a date parameter to trim history for all database backups. sp_delete_database_backuphistory allows you to specify a database, but this must be run from msdb. Ref: sp_delete_database_backuphistory - https://docs.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/sp-delete-database-backuphistory-transact-sql?view=sql-server-2017

Discuss this question and answer on the forums

 

 

 

Database Pros Who Need Your Help

Here's a few of the new posts today on the forums. To see more, visit the forums.


SQL Server 2017 - Administration
USERSTORE_TOKENPERM growing very fast - Hi folks, I'm experiencing a very weird problem with userstore_tokenperm clerk recently. We have an environment with some databases in contained mode executing in version SQL Server 2017. Anyway i'm facing this problem since the SQL Server 2016. At a certain moment this cache starts to grow at a rate of 6GB by day. When […]
SQL Server 2017 - Development
Problem writing a query to handle dynamic field usage - I have been presented with some source data and mapping tables where the source data is stored as : MyData Type Id Field1 Field2 Field3 1 1 MR John Smith 1 2 MRS Jane Doe 2 3 Bloggs Betty Miss what I would like to ideally be able to do is produce a view for […]
SQL Server 2016 - Administration
SQL logins with AD - I have a separate script for SQL Logins with the permissions db data reader etc and a separate script that reads AD to see if the user is terminated. I am looking to see if this can all be in one script.   Thanks  
compatibily Level 130 and traceflag 4199 - Hello everyone I migrated my server SQL SERVER 2008R2 to 2016 I changed the compatibility level of my database to 130 USE [master] GO ALTER DATABASE [MyDatabase] SET COMPATIBILITY_LEVEL = 130 GO Is it necessary after this activation? Activated traceflag 4199 is It automatically included when you change the COMPATIBILY LEVEL to 130 ? thanks […]
Solid State Drives and Fragmentation - Are there benefits to be had from defragging clustered indexes that reside on SSDs?  Or is it true that since SSD's data is addressed via electronic switching on the SSD address bus there is no performance penalty due to fragmentation?
SQL Server 2016 - Development and T-SQL
StoredProc insert and update multiuser issue - Happy to day to all, I am looking into an issue with a stored procedure where are where there are multiple users the code does the select but the update may fail:  (as well i want to be educated on the solution so please push into a direction of learning as well) SET ANSI_NULLS ON […]
Administration - SQL Server 2014
Failover in FCI SQL with command SQL - Hello everyone on an FCI Failover cluster instance how can I failover  to the second node without restarting the main node is there an SQL command or Powershell that allows me to do the failover thank you
Development - SQL Server 2014
Compare Dates - Hello All, create table #app1 ( custID INT, Seqs INT, eff_dt datetime, term_dt datetime ) insert into #app1 select 123, 100, '07/01/2017', '12/31/2017' union all select 123, 200, '01/01/2018', NULL union all select 456, 021, '08/01/2017', '11/30/2017' union all select 456, 021, '12/01/2018', '02/28/2019' union all select 456, 031, '03/01/2019', NULL union all select 789, […]
XACT_ABORT with ROLLBACK - I have come across some stored procedures in our company database that follow this format: SET XACT_ABORT ON BEGIN TRY BEGIN TRAN -- Do some stuff here -- Do some more stuff here COMMIT END TRY BEGIN CATCH ROLLBACK; THROW; END CATCH Am I correct in thinking that the CATCH code block will never run […]
Best way to find if string is whitespace - I appreciate it is a trifling question and yet. One of our sites organises its customers in small groups. Those groups are used for various purposes, including customer's address. When I generate invoice (many thousands a day) I check if the customer belongs to a certain group and then query if that group has an […]
SQL Server 2012 - T-SQL
Get list Stored procedure dependency on legacy database without FK - Good Day, I need advice and solution how to get Get list Stored procedure dependency from root stored procedure because this is legacy database without FK so i can not identify relation for each table without FK. any advice or solution are welcome. thanks for advance.  
Building a table based on another one(s) - Hi, We have 3 people that answer the phones to help our customer with questions. As a result, we get a call report that shows who was on a phone and when, and for how long; which I put in a table; and this report, it also shows missed calls. I made the table below, showing […]
SQL Server Newbies
New to SQL - difficulties in SUMing only certain rows of a column, other misc. - This is for SQL Server 8.0 and I'm using MySQL Workbench on this.   I have a table called 'business_ledger' and the following fields: employee_name (various string values to denote employees - not used in this query but it's part of the database), title (with values: Novice, Journeyman, Master), Earnings (various int values), certification (with […]
SSRS 2016
How to set up user permission at report content level - We're planning to deploy a report to SSRS 2017 with data for multiple projects.  We'd like to know if there is a way to set up permission at report content level, i.e. one user can only view data for Project-A, and the another user can only view Project-B data.  I'm new to SSRS, but used […]
Certification
uk training providers for dba or dev certs. - Hi guys, I was considering firebrand for an accelerated MCSA cert.  I have years of experience, just haven't got around to getting certified yet.  They are expensive but accelerated.  I'm not sure I have the patience to self study for this.  I feel like I would like the confidence from certification because, even though I've […]
 

 

RSS FeedTwitter

This email has been sent to {email}. To be removed from this list, please click here. If you have any problems leaving the list, please contact the webmaster@sqlservercentral.com. This newsletter was sent to you because you signed up at SQLServerCentral.com.
©2019 Redgate Software Ltd, Newnham House, Cambridge Business Park, Cambridge, CB4 0WZ, United Kingdom. All rights reserved.
webmaster@sqlservercentral.com

 

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -