Presenting to the PASS Database Administration Virtual Chapter
I will be giving a presentation and demo to the PASS Database Administration Virtual Chapter on Wednesday, December 8 2010...
2010-12-02
853 reads
I will be giving a presentation and demo to the PASS Database Administration Virtual Chapter on Wednesday, December 8 2010...
2010-12-02
853 reads
As I had mentioned in a previous blog (Creating and processing an Analysis Services partition), instead of processing an entire...
2010-12-02
1,265 reads
I saw this posted on Twitter, yet another reason to have a variety of people you follow. Some very interesting...
2010-12-02
559 reads
Have you ever been “dragged” to a long weekend afternoon at a craft fair? Did it look something like this?
This...
2010-12-02
476 reads
I previously mentioned how SQL Server Central was listing ideas for articles, primarily for short, quick, pointed articles that they...
2010-12-02
1,208 reads
Calling for Presenters!PASS has announced the next 24 Hours of PASS and it will be on March 15 and 16. ...
2010-12-02
291 reads
Ever feel worn out and/or burned out? Don’t worry you aren’t alone. As a matter of fact most people have...
2010-12-02
583 reads
It is amazing how the months just seem to fly by these days. I probably say that every month. It seems appropriate though. This month we will be broadcasting...
2010-12-01
2 reads
It is amazing how the months just seem to fly by these days. I probably say that every month. It...
2010-12-01
546 reads
I updated the iPad tonight to iOS 4.2. I had no particular reason to upgrade, but I saw a few...
2010-12-01
536 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