Alone Time
Working in a distributed team can be challenging, but working in an office can be just as difficult. Steve Jones talks a bit about time management today.
2008-12-09
607 reads
Working in a distributed team can be challenging, but working in an office can be just as difficult. Steve Jones talks a bit about time management today.
2008-12-09
607 reads
2008-12-09
4,056 reads
I have to admit that when I had a performance problem with some code, I would often fire up Profiler...
2008-12-08
698 reads
The performance of virtual machines is getting closer and closer to that of physical machines with better software like Hyper-V.
2008-12-08
246 reads
2008-12-08
518 reads
2008-12-08
736 reads
2008-12-08
488 reads
The performance of virtual machines is getting closer and closer to that of physical machines with better software like Hyper-V.
2008-12-06
754 reads
The performance of virtual machines is getting closer and closer to that of physical machines with better software like Hyper-V.
2008-12-06
732 reads
The performance of virtual machines is getting closer and closer to that of physical machines with better software like Hyper-V.
2008-12-06
495 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