2016-03-19 (first published: 2015-01-08)
18,971 reads
2016-03-19 (first published: 2015-01-08)
18,971 reads
In the future we may be required to bring our own devices to work. Does that make sense? Would you want to get an allowance and purchase your own laptop?
2016-03-18 (first published: 2012-01-18)
255 reads
2016-03-18
1,459 reads
2016-03-17
126 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-03-17
572 reads
2016-03-17
1,060 reads
I joined the beta program for SQL Source Control recently. I know, I work for Redgate, I should be in...
2016-03-16
925 reads
Is it worth automating things? Many people say yes, but Steve Jones says it isn't just about time saved.
2016-03-16
148 reads
2016-03-16
1,051 reads
There was an announcement last week that SQL Server can run on Linux. And it's coming next year.
2016-03-15
348 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