2015-08-20
1,611 reads
2015-08-20
1,611 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-19
1,021 reads
2015-08-19
1,249 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-18
992 reads
Putting together a portfolio allows you the chance to showcase what you're good at doing. Steve Jones thinks this might be a good thing for technical people.
2015-08-18
138 reads
2015-08-18
1,400 reads
At Redgate Software, we have a progression of the stages of a database development pipeline. These are the various ways...
2015-08-17 (first published: 2015-08-06)
2,123 reads
Is a software deployment responsible for a plane crash? That's a scary thought.
2015-08-17
128 reads
This weekend I’ll be attending SQL Saturday #403 in Louisville, KY. If you’re in the area, think about taking a...
2015-08-17
876 reads
2015-08-17
1,604 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