Cray, AMD to build 1.5 exaflops supercomputer for US government
System will mix Epyc CPUs and Radeon Instinct GPUs.
2019-05-07
System will mix Epyc CPUs and Radeon Instinct GPUs.
2019-05-07
According to a new financial presentation from Nidec, a Japanese motor manufacturer who is responsible for around 85% of all HDD spindle motors, the company believes that shipments of...
2019-05-06
Continuing the march of progress in the HDD industry, Seagate has revealed that they have started shipping their 16 TB PMR hard drives. In a quarterly earnings call last...
2019-05-06
Processor-based licensing means selecting hardware carefully for good performance.
2019-05-03
Small form-factor (SFF) machines have emerged as a major growth segment in the desktop PC market. Performance per watt is an important metric for such systems. Intel has pretty...
2019-04-26
Introduction Earlier this week, I bought a new HP Spectre x360 13-AP0023DX convertible laptop at Best Buy. I have often criticized Best Buy as a bad place to buy...
2019-04-25
Intel's latest SSD caching solution using 3D XPoint memory is here. This time, the Optane cache is paired with QLC NAND flash, and all bundled onto one M.2 module...
2019-04-22
You may have heard of Intel Optane Technology, but perhaps you aren’t quite sure what that term actually refers to, and whether it is relevant for SQL Server. Unfortunately,...
2019-04-14
When Intel announced the new Cascade Lake family as officially launched last week, it added a new product segment to its portfolio – the ‘Application Processor’ or AP. These...
2019-04-08
At least two retailers from the US on Friday have started to take pre-orders on Intel’s Optane DC Persistent Memory modules and therefore had to reveal their prices. Today...
2019-04-05
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...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
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