2016-01-20
1,500 reads
2016-01-20
1,500 reads
Are you a DBA tax on your company? Or an asset that's worth the cost. Steve Jones talks about trying to be the latter and not the former.
2016-01-19 (first published: 2012-07-09)
476 reads
2016-01-19
1,349 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-01-18
1,077 reads
It was a few years back that my wife and I planned a trip to the Austin City Lights music...
2016-01-15
632 reads
Security is always a hot topic, and Steve Jones notes that we should be specific when we work with security.
2016-01-15
139 reads
I saw someone mention recently that you can run a REBUILD on a heap table. I hadn’t realized that, but...
2016-01-14
1,780 reads
Today Steve Jones looks at the use of tracking sensors to gather spatial data on professional athletes for later analysis.
2016-01-14
96 reads
I continue to work on solving the Advent of Code puzzles in both PowerShell and T-SQL after completing them in...
2016-01-12
733 reads
2016-01-12
153 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...
WA:08218154393 Jl. Palmerah Barat No.38 A, RT.2/RW.3, Grogol Utara, Kec. Kebayoran Lama, Kota Jakarta...
WA:08218154393 Jl. RC. Veteran. 9, dan No.9A, RT.9/RW.3, Bintaro, Kec. Pesanggrahan, Kota Jakarta Selatan,...
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