The ORM Dilemma
Steve Jones talks about ORM frameworks and the dilemma of using them. They save time, but might not solve all your problems.
2010-05-12
452 reads
Steve Jones talks about ORM frameworks and the dilemma of using them. They save time, but might not solve all your problems.
2010-05-12
452 reads
Steve Jones doesn't like annual performance reviews, and has some evidence that they might be worth getting rid of.
2010-05-11
207 reads
2010-05-10
1,539 reads
The Exceptional DBA contest is underway and today Steve Jones comments on the contest. Get your entry in today.
2010-05-10
159 reads
This Friday we have a fun poll. What interesting descriptions do you use when trying to talk about code with your peers?
2010-05-07
134 reads
Here's one that you might want to pass along to those managers that approve training. Steve Jones gives you the reasons why you ought to consider paying for training.
2010-05-06
253 reads
When is it worth making an investment to learn a new technology? Steve Jones comments on Powershell as one of those technologies that he has been slow to begin using.
2010-05-05
230 reads
A bug reported on Connect has Steve Jones worried. This one could be a big deal in some situations that are concerned about comprehensive auditing.
2010-05-04
149 reads
Steve Jones talks about the need for leadership and what managers should be looking to achieve in their efforts.
2010-05-03
168 reads
The cost of data loss is higher in the US than other countries. That's good and bad for DBAs.
2010-05-03
179 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers