2020-12-21
92 reads
2020-12-21
92 reads
2020-12-19
99 reads
Redgate has done something this month to try and create culture for its employees during the pandemic.
2020-12-18
124 reads
There are plenty of opportunities to grow your career by sharing knowledge. Steve points out a few today.
2020-12-17
138 reads
Today Steve asks what you might want out of your local organization devoted to the data platform.
2020-12-16
82 reads
2020-12-15
128 reads
2020-12-14
139 reads
2020-12-12
326 reads
Today is a day for reflections in Steve's life, looking back at the incredible year of 2020.
2020-12-11
107 reads
As legal requirements grow and change, cloud computing might require a new consideration: where we physically store data.
2020-12-10
160 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:0817-866-887 Area Street Festival, Ruko No 1 & 1A, CBD, Jl. Galuh Mas Raya,...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
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