The Social Contract
How much of a contract for servicing SQL Server should we expect? Has Microsoft broken an implied contract with us?
2008-03-11
98 reads
How much of a contract for servicing SQL Server should we expect? Has Microsoft broken an implied contract with us?
2008-03-11
98 reads
A joint editorial this week from the Red Gate team looking back at the news of the week.
2008-03-10
60 reads
Steve Jones looks ahead to an interesting trip for the future of a couple of technical geeks.
2008-03-06
104 reads
A new technology could be a boon for database servers, dramatically increasing the amount of memory available for SQL Server.
2008-03-05
115 reads
SQL Server 2008 sets a TPC record. And it hasn't even been released. This editorial was originally published on Mar 4, 2008. It is being rerun as Steve is on vacation.
2008-03-04
169 reads
Anyone who inherits a database application dreads poorly laid-out SQL code. Development teams loathe it. Putting it right would be easier, if there was a common, agreed, standard in place, so why the difficulty?
2008-03-03
237 reads
How important is disk encryption to you? Do you think about all those replicated or copied databases on laptops? Let us know. This editorial was originally published on Feb 28, 2008. It is being re-run as Steve is on holiday.
2008-02-29
127 reads
Steve Jones takes a look at the world of energy news and a few projects out at the ranch.
2008-02-28
71 reads
SQL Server 2008 launches today and there's are additional events all across the country coming up.
2008-02-27
76 reads
2008-02-25
29 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