SQLSaturday#59 NYC Kickoff....
Well, as many of you in this space may already know that SQLSaturday#59 in @MS HQ in NYC, on November...
2010-09-10
519 reads
Well, as many of you in this space may already know that SQLSaturday#59 in @MS HQ in NYC, on November...
2010-09-10
519 reads
Not sure if anyone else posted about this, but just sharing the news of the R2 Management Pack from MSDN:
"Following...
2010-08-09
1,386 reads
Nominate your favorite products for the SQL Server Magazine 2010 Community Choice Awards. August 24th Deadline for Nominations...
SQL Server...
2010-08-08
1,525 reads
OK, we've seen step-by-step lists and articles on how to INSTALL a SQL Server 2008 Cluster, but have you run...
2010-07-25
23,287 reads
Whatever edition of SQL Server 2008, regardless of it being 32-bit or 64-bit, chances are, if you’re installing SQL Server...
2010-07-19
57,928 reads
SQLSaturday #39 NYC Presentations available online....
If you were at SQLSaturday in NYC and want to see it again, or, you...
2010-05-02
958 reads
Well, it’s Monday morning and back to the DBA salt mines!
Now that SQLSaturday #39 is all but a joyful...
2010-04-26
579 reads
Happy Monday, everyone! The internet is a buzz! I have never seen so much energy and enthusiasm as SQLSaturdays, and...
2010-04-19
1,042 reads
There's an exciting new product on the market, and Pearl Knows is in on the ground floor, and wanted to share.
If...
2010-03-21
679 reads
Many companies face the decisions to 1) consolidate their SQL Servers, due to sql sprawl; and 2) whether to virtualize their SQL...
2010-03-15
1,092 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