Ask the Expert Panel: NJ Special Event
Ever wanted to know all there is to know about SQL Server, and afraid to ask? Have questions about how...
2013-04-04
1,216 reads
Ever wanted to know all there is to know about SQL Server, and afraid to ask? Have questions about how...
2013-04-04
1,216 reads
Pragmatically
speaking, there’s no way you can learn all there is to know about Microsoft’s
native ETL tool, SQL Server Integration Services...
2013-04-03
2,112 reads
Well, they're baack in the City!Coming this Thursday April 4, 2013 to the Big Apple, hosted by the NYC
Metro SQL...
2013-04-03
941 reads
So much SQL, and so little Saturdays. SQLSaturday is truly a world-class event
happening all over the globe. Just this
past Saturday,...
2013-02-04
1,249 reads
I often get hung up in the whirlwind of life,
and one of the things that seems to slip my schedule,...
2013-01-08
1,840 reads
Season's Greetings and Merry Christmas! In the spirit of the holiday, I am rerunning my original parody on "Twas the...
2012-12-24
1,016 reads
This Saturday, major event that will shake the halls of
power gets under way for an all-day non-stop super event. Bringing...
2012-12-06
1,330 reads
Thursday, November 29, 2012, brings us the November
meeting of the NY SQL
Server User Group, with BI expert, SQL MVP and...
2012-11-28
1,823 reads
Today is Tuesday, and its time for another edition of TSQL Tuesday #36, as we continue the eternal blog party...
2012-11-13
1,504 reads
SQLPass Summit 2012, the
world's largest and most intensive technical training conference for Microsoft SQL
Server and BI professionals is in full...
2012-11-07
1,380 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...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
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