Presenting to the West Michigan SQL Server User Group
Presenting to the West Michigan SQL Server User Group / SQL PASS Chapter
I will be presentitng to the West Michigan SQL...
2010-07-26
841 reads
Presenting to the West Michigan SQL Server User Group / SQL PASS Chapter
I will be presentitng to the West Michigan SQL...
2010-07-26
841 reads
I am honored to be a guest lecturer this week for SQL University. There have been some amazing professors helping...
2010-07-26
8,163 reads
Maybe I need a better name for it, but I’m describing the pain that happens when you’re getting ready for...
2010-07-26
590 reads
In cycling each team is made up of nine riders. Each rider on a team can have a different specialization....
2010-07-26
667 reads
This past weekend I had the opportunity to hangout with some of the brightest upcoming SQL Server Professionals and a...
2010-07-25
610 reads
OK, we've seen step-by-step lists and articles on how to INSTALL a SQL Server 2008 Cluster, but have you run...
2010-07-25
23,287 reads
Some exciting times coming up here in the South Florida SQL Server Community. SQL Saturday South Florida is rapidly approaching....
2010-07-24
450 reads
Not much ado about SQL Server here. Good things come with the number 9. For instance SQL Server got substantially...
2010-07-23
520 reads
Not too many moons ago I embarked on porting some servers over from SQL 2000 to SQL 2008. On some...
2010-07-23
1,568 reads
Victorious by Jack Campbell ($8 at Amazon) is the finale in the six part series about Black Jack Geary leading...
2010-07-23
684 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