Why Devops? For Better Security
DevOps is supposed to help us build better software, faster. Steve Jones looks at one of the other benefits: security.
2017-02-09
107 reads
DevOps is supposed to help us build better software, faster. Steve Jones looks at one of the other benefits: security.
2017-02-09
107 reads
2017-02-08
167 reads
I saw a question recently about how to allow some users to see the logins on a server without being...
2017-02-08
829 reads
2017-02-07
797 reads
Today Steve Jones looks at how we can better build software by considering the cloud.
2017-02-06
78 reads
2017-02-06
970 reads
There are lots of tasks that are easily accomplished with bot h PowerShell and T-SQL.
Get-SqlServerKey is a command that...
2017-02-03
4,476 reads
The encryption mechanisms in SQL Server are interesting, and they work well, but they are somewhat poorly named. I ran...
2017-02-03 (first published: 2017-01-26)
1,741 reads
This week Steve Jones asks what parts of SQL Server would you improve and why.
2017-02-03
81 reads
2017-02-03
887 reads
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers