2015-10-28
1,910 reads
2015-10-28
1,910 reads
Yesterday was the Seattle edition of the 2015 Redgate Software SQL in the City tour. I was in London a...
2015-10-27
509 reads
Yesterday was the Seattle edition of the 2015 Redgate Software SQL in the City tour. I was in London a...
2015-10-27
686 reads
IT is too slow. That was a quote that inspired this piece from Steve Jones that talks about the need for IT to be more flexible and agile in their efforts. That includes the data professional in their modeling.
2015-10-27 (first published: 2011-05-24)
265 reads
I’m heading over to the Yardhouse (4th and Pike) as soon as SQL in the City is finished and should...
2015-10-26
405 reads
I’m heading over to the Yardhouse (4th and Pike) as soon as SQL in the City is finished and should...
2015-10-26
552 reads
This week Steve looks at the hot jobs that are going to have pay increases in the coming year.
2015-10-26
265 reads
Today Steve Jones wonders if the way you choose to design a database says something about you.
2015-10-23
191 reads
Last week I spoke at SQL in the City 2015 in London, and it was a great event. We had...
2015-10-23
412 reads
Last week I spoke at SQL in the City 2015 in London, and it was a great event. We had...
2015-10-23
623 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...
WhatsApp: 0817839777 Jl. Jend. Ahmad Yani No.91, Magersari, Panjunan, Kec. Kota Kudus, Kabupaten Kudus,...
WhatsApp: 0817839777 Jl. Pemuda No.90-92, Kembangsari, Kec. Semarang Tengah, Kota Semarang, Jawa Tengah 50133
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