2006-02-09
1,339 reads
2006-02-09
1,339 reads
The online world is full of content that is free, as in beer, but not free as in speech. Steve Jones talks about some guidelines for developing your own content.
2006-02-08
4,994 reads
2006-02-08
1,299 reads
2006-02-07
2,089 reads
I haven't had time to research the extent, but someone reported plagiarism and the author admitted the code, while "from...
2006-02-06
1,416 reads
2006-02-06
1,351 reads
I left at lunch to hit the gym and then meet a friend. Afterwards I stopped by Starbucks to do...
2006-02-03
1,408 reads
This is very interesting.
I've often thought that blogs were a great source of information, but it is more unvetted than...
2006-02-03
1,371 reads
2006-02-03
2,606 reads
2006-02-02
1,295 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