2016-12-21
1,053 reads
2016-12-21
1,053 reads
We don't test software well enough. Obviously we don't write high enough quality software, but testing should catch more issues. Steve Jones talks about how you can perform better T-SQL testing.
2016-12-20 (first published: 2013-11-12)
270 reads
The way we write code impacts our users, but it can also impact our wallet, especially in cloud computing. Steve Jones wonders how many people bother to profile and test their code.
2016-12-19 (first published: 2013-05-13)
383 reads
2016-12-19
930 reads
With the holiday season here, Steve Jones wonders what you'll do for fun away from work.
2016-12-16
119 reads
Awhile back I was working in SSMS and saw this window.
It threw me off since I was trying to write...
2016-12-16 (first published: 2016-11-30)
1,830 reads
2016-12-16
927 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-12-15
633 reads
Here’s a shot from our engineer, behind the scenes of my live talk today.
Tom Austin and @way0utwest live at #sqlinthecity...
2016-12-15
645 reads
2016-12-15
1,352 reads
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
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