Halloween at PASS–Donate for some fun
This year’s PASS Summit will end on Oct 30, which is just before Halloween in the US. I’m sure lots...
2015-08-05 (first published: 2015-07-29)
1,911 reads
This year’s PASS Summit will end on Oct 30, which is just before Halloween in the US. I’m sure lots...
2015-08-05 (first published: 2015-07-29)
1,911 reads
The cloud is always going to be a challenge for security, but is it harder or easier than on premises? Steve Jones has a few comments.
2015-08-04
147 reads
2015-08-03
248 reads
I ran into a question recently about how to clear out a database of all objects. I assume someone was...
2015-08-03
1,248 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
3,923 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
738 reads
2015-08-03
1,595 reads
An invitation to hack United's IT systems has resulted in vulnerabilities being found and hackers rewarded for disclosing the issues.
2015-07-30
112 reads
Steve Jones discusses the decision to hire someone that fits in with your culture at work, and what that means.
2015-07-29
155 reads
I wrote recently about my philosophy for service accounts, and wanted to add a few more thoughts.
Security is important for...
2015-07-28
1,513 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