24 Hours of PASS: Summit Preview
Registration is open for the second 24 Hours of PASS this year. This one is going to be a preview...
2010-08-11
562 reads
Registration is open for the second 24 Hours of PASS this year. This one is going to be a preview...
2010-08-11
562 reads
Passing along this contest from Idera and MSSQLTips. I don’t do many plugs, but it’s a chance for someone to...
2010-08-11
788 reads
This week we will be checking out the fourth chapter of this book by Alex. This is a continuous effort...
2010-08-11
749 reads
Hopefully everyone saw the announcement already, either via the PASS Connector or the Twitter announcement, but we have – finally! – a...
2010-08-11
385 reads
The ‘Summit Preview’ edition, this time around it features speakers from the upcoming PASS Summit with each doing a one...
2010-08-11
341 reads
One of the things that I’ve often seen people do is build temp tables to hold data for each connection...
2010-08-11
2,143 reads
I will be one of the presenters for the 3rd installment of the 24 Hours of PASS: Summit Preview, which...
2010-08-11
780 reads
So, I was recently asked if you could display a vertical bar on a line graph to denote the last...
2010-08-11
3,334 reads
SQL Saturday #48 - Columbia, SC, is a little over 7 weeks away (October 2, 2010), so we're picking up the...
2010-08-11
531 reads
One easy to use and useful tool that you can use to compare relative performance between different machines that are...
2010-08-11
1,521 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
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