Not Connected
Do you know how to suggest improvements or features for SQL Server? Or report bugs? You use Connect, but it needs some work before it will really help the product.
2008-02-25
74 reads
Do you know how to suggest improvements or features for SQL Server? Or report bugs? You use Connect, but it needs some work before it will really help the product.
2008-02-25
74 reads
This Friday Steve Jones asks about capital at work and does it affect the way you do business.
2008-02-22
42 reads
2008-02-21
180 reads
2008-02-20
95 reads
2008-02-19
59 reads
2008-02-18
79 reads
A perspective from Richard Collins on the creation of a government IT profession in the UK.
2008-02-18
73 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-15
43 reads
Why don't we have updates, patches, and service packs slipstreamed into the base product for new installs?
2008-02-14
139 reads
Windows 2008 RTMs, a change from the SQL Server support team, and a Jump Start for Katmai.
2008-02-11
51 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