2010-03-04
3,301 reads
2010-03-04
3,301 reads
Spend an evening with Itzik Ben-Gan, Greg Low, Davide Mauri and Bill Vaughn in London on March 16th. Come attend if you can.
2010-03-03
1,204 reads
A one day training event in the Charlotte, NC area. Come join MVPs from around the area at another great SQL Saturday.
2010-03-03 (first published: 2010-02-03)
4,143 reads
Another sample chapter from Wiley, this time for one of the hot topics in business intelligence: data mining.
2010-03-02
2,615 reads
There are a number of events coming up in 2010 that need speakers to share their knowledge of SQL Server with others. Check out this list and consider submitting something.
2010-02-24
447 reads
Come to this great one day training event in Philadelphia, PA. SQL Saturday is a great way to get free training on all aspects of SQL Server.
2010-02-24 (first published: 2010-02-04)
2,952 reads
Learn about SQL Server 2008 Reporting Services with this new title from Wiley. We have a sample chapter you can read to see if you like this book.
2010-02-23
2,833 reads
A sample chapter from a new book on Analysis Services. Check it out and see if this is the book for you.
2010-02-16
2,072 reads
A partnership with Pragmatic Works brings you some basic SQL Server training through a series of webinars.
2010-02-15
2,061 reads
We have recently made a few changes in our newsletter sending process and been working with Yahoo to ensure delivery. If you are just receiving this newsletter to a Yahoo account, welcome.
2010-02-10
515 reads
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
Comments posted to this topic are about the item BIT_COUNT I
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers