Grinding
I've been amazed at the amount of content that I am getting at SQLServerCentral. So far, in 2009, I've received...
2009-03-20
635 reads
I've been amazed at the amount of content that I am getting at SQLServerCentral. So far, in 2009, I've received...
2009-03-20
635 reads
I’m not sure how I feel about Amazon invoking the DCMA clause to prevent other e-books from being read on...
2009-03-20
990 reads
I found a cool video on the 37 Signals blog that showed the Audi A4 production process. It’s relatively low...
2009-03-19
778 reads
I was browsing the March 2009 issue of Visual Studio Magazine today and found that it's changing again. It's been...
2009-03-19
778 reads
Starting the summer 2002, for about a year or so, the team and I embarked on a project to develop business...
2009-03-19
982 reads
I've been slowly looking at and experimenting with LinkedIn to see if it has value and if so, how to...
2009-03-19
912 reads
I committed today to attend SQL Saturday #14 in Pensacola on June 6, 2009. I'll be giving The Modern Resume...
2009-03-19
579 reads
I joined in late to a conference call this morning from Quest where a number of their experts were talking...
2009-03-19
1,071 reads
I tend to work with a fair number of documents in my job. Between articles that are sent to me,...
2009-03-18
1,127 reads
Yesterday I presented to the Charlotte SQL Server User's Group. Since I live in Denver, it didn't make a lot...
2009-03-18
1,309 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