The Easy Phone Restore
This is hardware week for me, with a new phone coming in the mail. This was a warranty replacement for...
2016-02-18
767 reads
This is hardware week for me, with a new phone coming in the mail. This was a warranty replacement for...
2016-02-18
767 reads
2016-02-18
1,559 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-02-17
7,884 reads
Passwords are always a challenge, but are bad passwords the users' fault? Steve Jones has a few thoughts.
2016-02-17
110 reads
Steve Jones talks version control, but from the production perspective.
2016-02-16
106 reads
This month’s host is Jorge Seggara, the @sqlchicken, who works for Microsoft. A busy schedule caused a slight delay, so...
2016-02-16
913 reads
I ran across a neat piece of code recently from Gail Shaw. She answered a question on returning the base...
2016-02-15
1,452 reads
Someone made a call to architect zero downtime for databases. Steve Jones isn't sure this is the best thing you could do.
2016-02-15
170 reads
2016-02-15
1,462 reads
There's a push to upgrade those SQL Server 2005 instances with support ending this April.
2016-02-12
128 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