2015-09-10
285 reads
2015-09-10
285 reads
Every Monday night on the week of the PASS Summit. Andy Warren and I host a networking dinner. This year...
2015-09-10
636 reads
2015-09-10
1,683 reads
2015-09-09
1,525 reads
2015-09-08
162 reads
2015-09-08
1,636 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-09-07
642 reads
This week Steve Jones looks at the idea of combining some NoSQL concepts inside of SQL Server.
2015-09-07
298 reads
I was excited to hear about the v12 Azure databases supporting CLR assemblies. Mainly because I’ve been doing testing work...
2015-09-07 (first published: 2015-08-27)
4,107 reads
2015-09-07
1,933 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