Do No Evil
One of Google's tenets is to "do no evil" as they run their corporation. This article questions their motives as...
2008-12-23
821 reads
One of Google's tenets is to "do no evil" as they run their corporation. This article questions their motives as...
2008-12-23
821 reads
Do computers help us learn quicker? Do we need to in today's wired world? Steve Jones talks a little about learning in today's editorial
2008-12-23
85 reads
2008-12-23
79 reads
2008-12-23
626 reads
2008-12-23
632 reads
2008-12-23
3,799 reads
Visit Business of Software
It’s my boss, or rather the owner of the company I work for (yes I work for...
2008-12-22
668 reads
An interesting post from Linchi Shea inspires Steve Jones to comment on procedural v set-based programming.
2008-12-22
522 reads
Do computers help us learn quicker? Do we need to in today's wired world? Steve Jones talks a little about learning in today's editorial
2008-12-22
741 reads
Do computers help us learn quicker? Do we need to in today's wired world? Steve Jones talks a little about learning in today's editorial
2008-12-22
724 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