Hack Us
A challenge from United intrigues Steve Jones. How many other companies would make a challenge like this?
2015-05-26
194 reads
A challenge from United intrigues Steve Jones. How many other companies would make a challenge like this?
2015-05-26
194 reads
I wrote recently on how to alter a column in SQL Server from NULL to NOT NULL in a simple...
2015-05-25
663 reads
2015-05-25
83 reads
2015-05-25
2,128 reads
This week Steve Jones asks if you're using the SQL Audit feature built into SQL Server.
2015-05-22
149 reads
I’m continuing on with the Blogger’s challenge in this post.
Turning the Problem Around
In the last post, I wrote about limitations...
2015-05-22 (first published: 2015-05-07)
4,285 reads
I’m helping teach a pre-conference session on Friday, June 5, 2015 at the Microsoft office in Philadelphia. This is an...
2015-05-22
690 reads
2015-05-22
1,583 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-05-21
1,163 reads
The naming of systems and other technological constructs is always a debate within groups. Steve Jones points out a few places where this might actually prevent mistakes.
2015-05-21
140 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:0817819444 Jl. Ahmad Yani No.9, RT.01/RW.05, Marga Jaya, Kec. Bekasi Sel., Kota Bks, Jawa...
Wa:0817819444 Jl. Panglima Sudirman No.35, Baturetno, Kec. Tuban, Kabupaten Tuban, Jawa Timur 62314
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