Speaking at Events - Logitech Presenter Review
Since I’m doing more speaking this year, I decided to spend a bit of time working on my delivery and...
2009-03-17
928 reads
Since I’m doing more speaking this year, I decided to spend a bit of time working on my delivery and...
2009-03-17
928 reads
I try to go to a spring training game once or twice a year and it serves as a useful...
2009-03-17
714 reads
Most of the time, you want to have a SQL result in a particular order. Occasionally you just don't care....
2009-03-16
3,124 reads
My friend Michael Lato sent me an email asking if I would take a look at his newest venture called...
2009-03-16
510 reads
One of the things that I've struggled with for some time is how to manage my data across multiple machines....
2009-03-16
931 reads
We just had our bi-monthly SQL group meeting (www.opass.org) with Kendal Van Dyke presenting The Truth About Disk Performance & Configuration,...
2009-03-16
567 reads
One of the videos I did for JumpStart TV is up on the front page:
SQL Server Authentication Modes
It is an...
2009-03-16
1,140 reads
Had a note from Ken Starnes in Portland, the date for SQLSaturday #12 has changed to June 6th (same date...
2009-03-16
591 reads
I have to admit, after the news of AIG bonuses over the weekend, this looks bad. In fact, it annoys...
2009-03-16
775 reads
In response to former Quebec Premier Bernard Landry’s comments of this past week regarding the posting of Michael Sabia as...
2009-03-15
4,333 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...
WA:08218154393 Jl. Matraman Raya No.14-16, RT.2/RW.1, Kb. Manggis, Kec. Matraman, Kota Jakarta Timur, Daerah...
WA:08218154393 Jl. HOS Cokro Aminoto No.56-58, Muka, Kec. Cianjur, Kabupaten Cianjur, Jawa Barat 43215
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