2005-11-04
1,681 reads
2005-11-04
1,681 reads
2005-11-03
1,655 reads
If anyone is interested, we are looking for people that are interested
in doing some technical editing for our magazine, the...
2005-11-02
1,404 reads
How many people are getting ready to upgrade to SQL Server 2005? Why are they upgrading? Why not? Edgewood Solutions conducted a survey and the results are in. Read on for the executive overview and learn how to get a complete copy of the results.
2005-11-02
5,276 reads
2005-11-02
1,445 reads
2005-10-31
2,127 reads
I wrote the editorial today about this, but SQL Server 2005 RTM'd yesterday!!!
If you an on MSDN Subscriber, you can...
2005-10-28
1,398 reads
2005-10-28
2,986 reads
2005-10-26
1,994 reads
The fourth part of Steve Jones series looking at employee retention. In this article, he examines a few techniques that can help the employee ensure their own retention.
2005-10-25
12,686 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