Remote Data Challenges
While working remotely, we still need good security practices and strong data protection.
2020-05-06
217 reads
While working remotely, we still need good security practices and strong data protection.
2020-05-06
217 reads
2020-05-04
122 reads
The Covid-19 pandemic has provided examples of how uncertain data can eventually be presented to the public as certainty. How, as data people, should we represent uncertainty in our data?
2020-05-02
172 reads
With many of us working from home, Steve wonders if you want to change anything.
2020-05-01
116 reads
Marriott has had another security breach. Does this mean they aren't taking security seriously? Steve has a few thoughts.
2020-04-30
113 reads
Artificial Intelligence hasn't always worked well, but there is one place that is seems to have lots of potential.
2020-04-29
144 reads
Steve prefers having standards, and today notes that aliases should be included in your standards document.
2020-04-28
145 reads
There are contests to break encryption algorithms taking place all the time. Another one was completed recently.
2020-04-27
201 reads
2020-04-25
135 reads
This week Steve talks a bit about working remotely, which is something more of us are doing these days.
2020-04-24
214 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...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
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