2008-11-27
94 reads
2008-11-27
94 reads
2008-11-26
97 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-25
129 reads
Phil wonders whether it is time to come up with clear 'best practice' guidelines to cover the use of undocumented routines, and ends up deciding it is a gray area.
2008-11-24
407 reads
While most DBAs might never encounter the legal aspects of their professional, Phil Factor brings to light a few things that you might want to be aware of in these litigious times.
2008-11-20
261 reads
As data professionals we need to be sure that we can present back the data we receive. Perhaps other people should embrace this mantra in other lines of work.
2008-11-19
119 reads
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
2008-11-18
175 reads
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
2008-11-17
117 reads
Employers say they're looking for more ethics and morals in IT for 2009. Steve Jones hopes it's true.
2008-11-17
167 reads
We all deal with inefficiencies at work, but how efficient are we ourselves? Steve Jones takes a poll this Friday.
2008-11-14
325 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