2014-01-09
2,342 reads
2014-01-09
2,342 reads
When you need to find all the related rows and tables to a parent table, here's one way you might approach the problem.
2014-01-06
8,197 reads
2014-01-03
2,082 reads
2013-12-31
2,307 reads
2013-12-20
2,353 reads
2013-12-16
1,859 reads
This article uses XML to deal with optional parameters along with multiple parameter passed into a stored procedure. (Note: We are re-running this as we had a newsletter issue last week)
2013-12-28 (first published: 2013-12-10)
7,533 reads
2013-12-09
2,368 reads
Follow the guidance of your DBA, but remember, he or she is from another land.
2013-12-09
6,909 reads
2013-12-05
2,591 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...
WhatsApp: 0817839777 Jl. Jend. Sudirman Jl. Diponegoro No.15, Salatiga, Kec. Sidorejo, Kota Salatiga, Jawa...
WhatsApp: 0817839777 Jl. Ahmad Yani No.1, Magelang, Kec. Magelang Tengah, Kota Magelang, Jawa Tengah...
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