2021-10-25
328 reads
2021-10-25
328 reads
It might be DNS is the problem more often in the future. Steve notes the attacks on this system are rising.
2021-10-23
113 reads
More complex searching is likely to be a requirement in the future, but for many of us, this won't require us to learn much.
2021-10-22
218 reads
Lots of organizations are moving to the cloud, but having different levels of success. This change can be powerful and create tremendous opportunity, but it can also be a disappointment.
2021-10-20
251 reads
Trying to keep up with technology is a losing game. Better to continue to grow and learn, balanced with the rest of your life.
2021-10-18
224 reads
In addition to trying to get better at SQL Server, Redgate Software, and all the various aspects of my job, I'm also trying to get better at this whole human interaction thing AND I'm working on trying to learn PostgreSQL much more deeply. Whew! Yeah, may not seem like a whole lot, but I assure […]
2021-10-16
276 reads
Using a list to keep track of what you should work on is only as good as the plan or goal behind it.
2021-10-15 (first published: 2017-08-07)
234 reads
GE is using lots of data, and machine learning to predict when specific systems will fail by nurturing digital twins.
2021-10-13 (first published: 2017-07-19)
193 reads
2021-10-11 (first published: 2017-07-27)
210 reads
This year PASS Data Community Summit is a free virtual event, and I encourage you to register even if you are interested in just a handful of sessions. One of the Learning Pathways might be just what you are looking for, from Query Basics to Power BI to DevOps. What I’m most excited about this […]
2021-10-09
122 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...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
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