SSRS Export part 2 (Export Data Source)
Pro-tip on how to quickly and easily migrate data sources for reporting services.
Related Posts:
File Maintenance - Cleaning Up Old Files December 21, 2018
Get a List of Files with...
2011-11-29
16 reads
Pro-tip on how to quickly and easily migrate data sources for reporting services.
Related Posts:
File Maintenance - Cleaning Up Old Files December 21, 2018
Get a List of Files with...
2011-11-29
16 reads
Back in August, I published a post on exporting SSRS report files en masse. That article (which can be read...
2011-11-29
1,685 reads
It's amazing to me how the herd mentality works in Technology (and many other things) sometimes. I get the idea...
2011-11-29
1,167 reads
This post was published to Vinay Thakur – Sql Server DBA at 5:05:51 PM 11/25/2011 Day 28: Linked server errors Linked...
2011-11-28
629 reads
If you are a DBA in Space fan, and in case you missed them, there have been two items published...
2011-11-28
669 reads
This is a continuation of my DBA in Space journal.
Episode six is filmed at the “Visions of the Future Exhibit”...
2011-11-28
748 reads
Ed Wilson (Blog|Twitter) aka Scripting Guy is kicking off another guest blogger week (Nov 28th 2011) with my guest blog...
2011-11-28
3,565 reads
Do you have $5 you could re-direct from a cup of coffee to a donation on men’s health issues?
If you...
2011-11-28
484 reads
2011-11-28
763 reads
Are you 100% satisfied with your current job? Of course not!
When given serious consideration most people will agree that there...
2011-11-28
929 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
WA:08218154393 Istana Regency Sudirman, Jl. Raya Cijerah Raya No.2 Ruko No 19 & 20,...
WA:08218154393 Jl. Asia Afrika No.122-124, Paledang, Kec. Lengkong, Kota Bandung, Jawa Barat 40261
Comments posted to this topic are about the item BIT_COUNT II
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