eReaders – A New Crop
The CES show this week had a few new e-reader concepts coming. I think this technology is due to explode,...
2010-01-08
385 reads
The CES show this week had a few new e-reader concepts coming. I think this technology is due to explode,...
2010-01-08
385 reads
Like a lemming in the DBA community, I too am going to post my 2010 goals. I am looking to...
2010-01-08
466 reads
Is that really what people want? At least in the US? This note talks about how KPMG surveyed executives and...
2010-01-08
406 reads
Hi Friends.Thanx for your support. for this year onwords I will be bloging on my own website....Hope to see you...
2010-01-08
527 reads
One of our goals for oPASS in 2010 is to host 12 meetings instead of our usual 6. That doubles...
2010-01-08
372 reads
Brian Knight and the JSSUG team will be doing their third SQLSaturday this year on May 8, 2010, at the...
2010-01-08
318 reads
The problem of the day: I stumbled on this problem on the Microsoft Reporting Services Forum website and thought it...
2010-01-08
3,179 reads
I finally got my laptop today. I had to drive to the local Shell gas station to get it, but...
2010-01-08
506 reads
Microsoft’s Bob Ward posted to remind everyone that SQL Server 2005 SP2 support ends on January 12, 2010, and SQL...
2010-01-08
705 reads
How is it possible to aggregate 12,000,000 records of sales data in a short time window? In this presentation you...
2010-01-08
1,165 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
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...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
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