It’s 2016 RLS for T-SQL Tuesday #79
It’s T-SQL Tuesday time again. I missed last month, being busy with travel, though I should go ahead and write...
2016-06-14
1,128 reads
It’s T-SQL Tuesday time again. I missed last month, being busy with travel, though I should go ahead and write...
2016-06-14
1,128 reads
2016-06-14
91 reads
One of the issues I’ve seen with Azure is that is changes rapidly. It’s cool in that new things get...
2016-06-13
527 reads
2016-06-13
74 reads
One of the things that will be debated quite a bit in the next few years will be the penalties for data loss.
2016-06-13
125 reads
2016-06-13
1,231 reads
2016-06-10
104 reads
2016-06-10
1,367 reads
2016-06-09
84 reads
2016-06-09
1,459 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