Annoyances
Working with others can be a challenge. This Friday's poll asks for those little annoyances in the workplace and how to deal with them.
2009-03-26
259 reads
Working with others can be a challenge. This Friday's poll asks for those little annoyances in the workplace and how to deal with them.
2009-03-26
259 reads
One of the pieces of advice that I give in my talk "The Modern Resume" is that you should review,...
2009-03-25
1,600 reads
I joined in late to a conference call this morning from Quest where a number of their experts were talking about various disaster stories that they'd experienced over the years. It's great to hear real DBAs talking about the problems and challenges...
2009-03-25
4,163 reads
Are tape systems obsolete? A recent incident has Steve Jones thinking perhaps not.
2009-03-25
931 reads
Are tape systems obsolete? A recent incident has Steve Jones thinking perhaps not.
2009-03-25
745 reads
Are tape systems obsolete? A recent incident has Steve Jones thinking perhaps not.
2009-03-25
689 reads
Microsoft recently laid off a number of people and made a mistake that they handled poorly. Steve Jones comments about what could have been done better.
2009-03-24
150 reads
When I worked at JD Edwards years ago, we were looking for monthly teambuilding exercises that would help our group...
2009-03-24
1,557 reads
It depends. The mantra of many DBAs and others in IT. Steve Jones reminds us why it applies.
2009-03-24
75 reads
It depends. The mantra of many DBAs and others in IT. Steve Jones reminds us why it applies.
2009-03-24
71 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