Corporate Staffers = Second Class Citizens?
Earlier today I read a blog post that compares consultants with corporate staff members. The author unashamedly compares consultants to...
2011-04-12
775 reads
Earlier today I read a blog post that compares consultants with corporate staff members. The author unashamedly compares consultants to...
2011-04-12
775 reads
During my visit to Denver last September for SQL Saturday 52, I spent a while talking with Marc Beacom, who...
2011-02-21
963 reads
Next week, I’ll be making a swing through central Colorado on a working vacation of sorts. I met up with...
2011-02-11
533 reads
I received notification earlier this week that my session “ETL Head-To-Head: T-SQL vs. SSIS” was selected by community vote for...
2011-02-10
569 reads
I just received notification from the Microsoft MVP Award Program that I’ve received the MVP award for SQL Server for...
2011-01-01
749 reads
Like clockwork, another year has come and (almost) gone. It’s been a wild year on many fronts: major happenings included...
2010-12-31
1,593 reads
Today we have a guest editorial from Tim Mitchell that asks how we should handle bad advice given on the Internet.
2010-12-22
548 reads
Join me next Tuesday, December 14th at 11:00am CST as I present a webcast on behalf of the PASS AppDev...
2010-12-10
645 reads
The sessions are over, and the post-cons are done; the vendor parties are but a memory, and the #sqlkaraoke music...
2010-11-22
1,152 reads
My friend Jen McCown of MidnightDBA fame issued a challenge last week called “Un-SQL Friday”. The inaugural topic is on...
2010-11-21
705 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