Follow Up to Maintaining Security and Performance Using Stored Procedures Part I – Using Execute As
This is a follow up to Maintaining Security and Performance using Stored Procedures Part I – Using EXECUTE AS because of...
2009-11-02
473 reads
This is a follow up to Maintaining Security and Performance using Stored Procedures Part I – Using EXECUTE AS because of...
2009-11-02
473 reads
I'm heading to Seattle in a couple hours. Bags packed, I've completed my run for the day, and getting ready...
2009-11-02
365 reads
Red Gate Software will be handing out a limited number of free paperback books at their booth at the 2009...
2009-11-02
592 reads
Registration for the 2009 PASS Community Summit started out strong with many attendees registering early the Sunday evening before the...
2009-11-02
485 reads
The DTS support in SQL Server 2005 and 2008 is excellent (almost). Typically the packages and jobs do not need...
2009-11-02
1,336 reads
For me, today was the start of a six-day SQL Server adventure at the PASS Summit in Seattle. The day...
2009-11-01
714 reads
I was reading a post by Linchi Shea in which he demonstrates a Perl script to Find the complete call...
2009-11-01
1,802 reads
Two settings that I always enable when I install SQL Server 2005 or 2008 on an x64 production database server...
2009-11-01
5,911 reads
Take the DB Audit Challenge - Intermediate - DB Audit Challenge #1
For those of you who have been following my recent blogs,...
2009-11-01
1,195 reads
I'm on a Delta non-stop flight from Atlanta to Seattle for the PASS Summit. This is the first time I've...
2009-11-01
1,278 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. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
WA:08218154393 JL. JENDRAL SUDIRMAN NO. 18A RT.007 RW.000, BANTUL WARUNG, DESA. KEL. BANTUL, KEC....
WhatsApp:0821-4447-7715 JL. JENDRAL SUDIRMAN NO. 18A RT.007 RW.000, BANTUL WARUNG, DESA. KEL. BANTUL, KEC....
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