Good Ideas Take Time or How to Brainstorm - Part 2
In Good Ideas Take Time or How to Brainstorm - Part 1 I wrote about how I come up with ideas...
2008-10-23
1,603 reads
In Good Ideas Take Time or How to Brainstorm - Part 1 I wrote about how I come up with ideas...
2008-10-23
1,603 reads
Occasionally I'm asked how I come up with ideas for my blog to maintain the just about one a day...
2008-10-22
686 reads
Obviously, right?
I managed to knock my Blackberry Curve off the bar and into a bowl of water in the sink....
2008-10-21
619 reads
Recently I posted about Managing My Todo List and I had a question via email about what notepad I was...
2008-10-20
799 reads
I posted Do You Understand Microsoft Licenses about a week ago, and today happened to run across a note about...
2008-10-20
535 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
500 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
821 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
675 reads
Back in May I wrote about signing up for FlyClear as a way to save time travelling and in doing so,...
2008-10-14
524 reads
Thought I'd post these notes based on feedback from the event organizers, wasn't able to attend myself due to scheduling...
2008-10-13
540 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