Introducing Speakers
I saw this post (please do read it) about introducing speakers and it reminded me that I wanted to write...
2010-07-20
551 reads
I saw this post (please do read it) about introducing speakers and it reminded me that I wanted to write...
2010-07-20
551 reads
SQL Saturday #40 is quickly approaching and many are gearing up for the trip down there to hear some awesome...
2010-07-20
481 reads
Last Tuesday, July 13th, we had our monthly OPASS meeting. The meeting was sponsored by RedGate who were kind enough...
2010-07-20
450 reads
The application form mentions that the quite a bit of what you include will be made public. While I won’t...
2010-07-20
711 reads
Don’t forget the July PASSMN meeting is today. We have Itzik Ben-Gan (blog) coming in to talk about some query...
2010-07-20
543 reads
Well this was going to be replication post, but I have read it, re-written it, read it, re-written and it...
2010-07-20
667 reads
For those that may of missed it, voting for SQLBits sessions is now open. Make your voice heard and get...
2010-07-20
399 reads
Event handlers are a great tool for managing errors and other events that occur during the execution of a package...
2010-07-20
1,140 reads
Many years ago, in the dark ages of DTS I created a little app that would take two parameters and...
2010-07-19
660 reads
We’ve had a few people in the SQL community find jobs lately and many of them attributable to their network....
2010-07-19
520 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