2015-08-28
1,569 reads
2015-08-28
1,569 reads
T-SQL Tuesday is a monthly blog party where we get an invitation the first week of the month to write...
2015-08-25 (first published: 2015-08-14)
2,882 reads
I ran across a question recently from someone that received a similar message to the one showed in this image:
In...
2015-08-25
1,265 reads
2015-08-25
1,457 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-24
732 reads
Steve Jones has a story about what it's like to work with, and without, Version Control Systems.
2015-08-24
176 reads
2015-08-24
1,622 reads
2015-08-21
1,504 reads
Slightly off topic, but since I use a cell phone so much for data transfer and work, it’s important that...
2015-08-20
838 reads
2015-08-20
190 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...
WA:08218154393 Jl. Paus No.81, RT.1/RW.8, Wil, Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
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