Merry Xmas 2009
Hope you’re enjoying a break from the routine and spending quality time with family. Xmas for me is a time...
2009-12-24
681 reads
Hope you’re enjoying a break from the routine and spending quality time with family. Xmas for me is a time...
2009-12-24
681 reads
Happened to channel surf across this on TV, found the list - http://blog.vh1.com/2009-04-01/100-greatest-one-hit-wonders-of-the-80s-read-the-list-2/. Many of the links seem to point to...
2009-12-24
832 reads
Merry Christmas to everyone. As many of you know, at least I hope you do, I am a born-again Christian...
2009-12-24
355 reads
Actually we’re not quite like the Denver Zoo, which is open every day of the year. The zoo in Virginia...
2009-12-24
783 reads
I usually use all the problems, crashes, and issues that I run into at work as grist for my mill,...
2009-12-23
656 reads
If you have been putting off ordering your copy of "SQL Server MVP Deep Dives", now is your chance to...
2009-12-23
480 reads
On Monday, Intel officially announced the next generation Atom processors (aka Pineview) that are part of the new Pine Trail...
2009-12-23
570 reads
I just found out that I’ve been accepted to speak at SQLSaturday #32 – Tampa on January 23, 2010. My session...
2009-12-23
374 reads
You learn a lot when teaching someone else, whether that be writing articles or books or actually teaching a class....
2009-12-23
663 reads
Windows 7 just dropped off the network, acting like a cable had been unplugged. I rebooted the machine after trying...
2009-12-23
668 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. Paus No.81, RT.1/RW.8, Wil, Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
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