Ada Lovelace Day – Celebrating Women In Technology
Today is Ada Lovelace Day, an international day of blogging to draw attention to women excelling in technology. I don't...
2009-03-24
740 reads
Today is Ada Lovelace Day, an international day of blogging to draw attention to women excelling in technology. I don't...
2009-03-24
740 reads
When I worked at JD Edwards years ago, we were looking for monthly teambuilding exercises that would help our group...
2009-03-24
1,557 reads
Yesterday I was commenting on how a big part of stress for me is getting that sudden burst of work...
2009-03-24
827 reads
Registration has been open since the last Summit, but this year Bill Graziano and team have released the Summit 2009...
2009-03-24
587 reads
As most of you know now, the Call for Speakers for the 2009 PASS Community Summit is open from March...
2009-03-24
967 reads
I recently read a NYT article that highlighted how Google search data is being used to predict flu outbreaks at...
2009-03-23
853 reads
As I gain more experience I've found that stress comes in three forms; stress that is there that you don't...
2009-03-23
582 reads
SQL Server 2008 introduces "Policy Based Management" (PBM) as a way to better manage your servers. This was a feature...
2009-03-23
2,515 reads
Imagine going to a casino with $100 dollars to gamble. As you enter, you notice a vending machine that sells...
2009-03-22
630 reads
The call for speakers is open through midnight on April 10, 2009, so get busy submitting those abstracts! Work hard...
2009-03-22
746 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