Defining Foreign Keys at Table Create Time
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-13 (first published: 2015-07-02)
2,394 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-13 (first published: 2015-07-02)
2,394 reads
2015-07-13
170 reads
Steve Jones thinks that we are not doing a great job of harnessing the brain power of our entire teams.
2015-07-13 (first published: 2011-01-06)
318 reads
2015-07-13
1,566 reads
This Friday Steve Jones has a DR poll. He asks what might be more important to you in a disaster and why.
2015-07-10 (first published: 2011-01-07)
249 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-08
3,771 reads
Today Steve Jones talks about the ways in which we interview new developers. Are they working or do we need a new way? Should we be considering those people that have actually accomplished something?
2015-07-07 (first published: 2011-06-08)
554 reads
2015-07-07
1,322 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-03 (first published: 2015-06-24)
6,380 reads
We're halfway through the 2015 year and Steve Jones has a few thoughts for you this holiday weekend.
2015-07-03
81 reads
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...
If you’ve been watching AI roll through the data community and thinking, “this seems...
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