Join me for the 2013 Biml Workshop
Of the many emerging technologies I’m currently using, there’s nothing that excites me more than Biml. If you’re not familiar...
2013-08-21 (first published: 2013-08-14)
1,257 reads
Of the many emerging technologies I’m currently using, there’s nothing that excites me more than Biml. If you’re not familiar...
2013-08-21 (first published: 2013-08-14)
1,257 reads
As I was browsing my calendar of upcoming events for the remainder of the summer and the fall, I realized...
2013-08-16
813 reads
When it comes to ETL, I’m a pessimist. Until proven otherwise, I assume that all data is bad, all connections...
2013-08-05
2,046 reads
Through the course of my career, I’ve spent time on both sides of the job interview table, which has given...
2013-08-02
782 reads
I love music. In fact, I like to think that I’m a student of music – although anyone who has heard...
2013-06-21
1,007 reads
I’m happy to announce that I’ll be delivering three, one-day preconference seminars this summer prior to three different SQL Saturday...
2013-06-07
918 reads
In the first post in this series, I covered the basics of object typed variables in SQL Server Integration Services,...
2013-05-28
1,883 reads
This is a temporary post that was not deleted. Please delete this manually. (e621c360-788f-48aa-bd56-670930569ab5 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2013-05-25
780 reads
I’m happy to announce that I have been selected to present
at the SQL PASS Summit in Charlotte, North Carolina this...
2013-05-22
681 reads
Tomorrow at 10am (11am EDT), I’ll be joining together with my good friend and SSIS Design Patterns coauthor Andy Leonard...
2013-05-07
866 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
WA:08218154393 Jl. Gatot Subroto No.080A, RT.001, Cigobang, Gunungsimping, Kec. Cilacap Tengah, Kabupaten Cilacap, Jawa...
WA:08218154393 Jl. Jend. Ahmad Yani No.118, Sidakaya Dua, Sidakaya, Kec. Cilacap Sel., Kabupaten Cilacap,...
Comments posted to this topic are about the item SSRS Reminded Me of the...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers