Outlook or LinkedIN
Funny the things you don’t think about until you hear someone doing it a different way. In this case it...
2009-12-28
566 reads
Funny the things you don’t think about until you hear someone doing it a different way. In this case it...
2009-12-28
566 reads
I recently had the opportunity to present, Nuggets Found by Mining the Default Trace, for SQLLunch. This was my first...
2009-12-28
345 reads
Midlands PASS is a small user group. We average about 15 people coming to meetings, which is good for Columbia,...
2009-12-28
1,192 reads
I ran across Scratch in a PC World article a while back. It’s a free download from MIT, and is...
2009-12-28
619 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
773 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
735 reads
Someone submitted an article recently that walked through how to find the rules in your database, which columns they were...
2009-12-28
763 reads
We usually stuff stockings with little things for each other in the family. Sometimes it’s junk, or candy, but this...
2009-12-26
674 reads
Following steps happened when sql server starts… we can see that in error log::
1. Build of sql server and...
2009-12-25
672 reads
Just a short Happy Holiday, Merry Christmas wish to everyone out there. Enjoying our White Christmas here in Denver.
2009-12-25
745 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